1
0
Fork 0
mirror of https://github.com/imjasonh/krust synced 2026-07-06 22:12:32 +00:00
krust/example/deployment.yaml
Jason Hall 1ed99cbe07 implement resolve and apply
Signed-off-by: Jason Hall <jason@chainguard.dev>
2025-10-15 14:46:18 -04:00

19 lines
342 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: hello-krust
spec:
replicas: 3
selector:
matchLabels:
app: hello-krust
template:
metadata:
labels:
app: hello-krust
spec:
containers:
- name: hello
image: krust://./example/hello-krust
ports:
- containerPort: 8080