Container
kind: Build
name: frontend
type: container
---
kind: Deploy
name: frontend
type: container
dependencies: [build.frontend] # <--- Need to specify the build as a dependency
spec:
image: ${actions.build.frontend.outputs.deploymentImageId} # <--- The output from the Build action defined above
ports:
- name: http
containerPort: 8080
healthCheck:
httpGet:
path: /hello-frontend
port: http
ingresses:
- path: /hello-frontend
port: http
- path: /call-backend
port: http
...Environment variables
Secrets
Last updated
Was this helpful?

