github.com/replicatedcom/ship@v0.50.0/integration/unfork/istio-k8s/expected/base/charts/security/templates/Job-istio-security-post-install.yaml (about)

     1  
     2  apiVersion: batch/v1
     3  kind: Job
     4  metadata:
     5    name: istio-security-post-install
     6    namespace: default
     7    annotations:
     8      "helm.sh/hook": post-install
     9      "helm.sh/hook-delete-policy": hook-succeeded
    10    labels:
    11      app: istio-security
    12      chart: security-1.0.3
    13      release: istio
    14      heritage: Tiller
    15  spec:
    16    template:
    17      metadata:
    18        name: istio-security-post-install
    19        labels:
    20          app: istio-security
    21          release: istio
    22      spec:
    23        serviceAccountName: istio-security-post-install-account
    24        containers:
    25          - name: hyperkube
    26            image: "quay.io/coreos/hyperkube:v1.7.6_coreos.0"
    27            command: [ "/bin/bash", "/tmp/security/run.sh", "/tmp/security/custom-resources.yaml" ]
    28            volumeMounts:
    29              - mountPath: "/tmp/security"
    30                name: tmp-configmap-security
    31        volumes:
    32          - name: tmp-configmap-security
    33            configMap:
    34              name: istio-security-custom-resources
    35        restartPolicy: OnFailure