Search
⌃K

Review a Resolved Blueprint

If you want to check what are the generated Kubernetes resources, you can do so by using the --template flag:
veloctl env create -f https://raw.githubusercontent.com/techvelocity/velocity-blueprints/main/examples/service-a-references-service-b.yaml --template
The result should be:
---
apiVersion: apps/v1
kind: Deployment
metadata:
annotations:
checksum/velocity-hash: 3666300f7875132429779740e205f169a989e60d554846ba26086145bf0837e9
velocity.tech.v1/dependsOn: service-b
velocity.tech.v1/id: service-a
...
spec:
containers:
- env:
- name: SERVICE_B_URL
value: http://service-b:80
image: yeasy/simple-web:latest
imagePullPolicy: IfNotPresent
name: service-a
ports:
- containerPort: 8080