You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
helm/docs/examples/alpine/templates/alpine-pod.yaml

13 lines
248 B

apiVersion: v1
kind: Pod
metadata:
name: {{default "alpine" .name}}
labels:
heritage: helm
spec:
restartPolicy: {{default "Never" .restart_policy}}
containers:
- name: waiter
image: "alpine:3.3"
command: ["/bin/sleep","9000"]