github.com/migueleliasweb/helm@v2.6.1+incompatible/pkg/chartutil/testdata/dependent-chart-with-mixed-requirements-yaml/charts/alpine/templates/alpine-pod.yaml (about)

     1  apiVersion: v1
     2  kind: Pod
     3  metadata:
     4    name: {{.Release.Name}}-{{.Chart.Name}}
     5    labels:
     6      heritage: {{.Release.Service}}
     7      chartName: {{.Chart.Name}}
     8      chartVersion: {{.Chart.Version | quote}}
     9    annotations:
    10      "helm.sh/created": "{{.Release.Time.Seconds}}"
    11  spec:
    12    restartPolicy: {{default "Never" .restart_policy}}
    13    containers:
    14    - name: waiter
    15      image: "alpine:3.3"
    16      command: ["/bin/sleep","9000"]