github.com/zoumo/helm@v2.5.0+incompatible/docs/examples/nginx/templates/service-test.yaml (about)

     1  apiVersion: v1
     2  kind: Pod
     3  metadata:
     4    name: "{{.Release.Name}}-service-test"
     5    annotations:
     6      "helm.sh/hook": test-success
     7  spec:
     8    containers:
     9      - name: curl
    10        image: radial/busyboxplus:curl
    11        command: ['curl']
    12        args:  [ '{{ template "fullname" .}}:{{default 80 .Values.httpPort}}' ]
    13    restartPolicy: Never