github.com/replicatedhq/ship@v0.55.0/integration/init/cert-manager/expected/base/deploy/manifests/Deployment-cert-manager-webhook-cert-manager.yaml (about)

     1  # Source: cert-manager/charts/webhook/templates/deployment.yaml
     2  apiVersion: apps/v1beta1
     3  kind: Deployment
     4  metadata:
     5    name: cert-manager-webhook
     6    namespace: "cert-manager"
     7    labels:
     8      app: webhook
     9      chart: webhook-v0.7.0
    10      release: cert-manager
    11      heritage: Tiller
    12  spec:
    13    replicas: 1
    14    selector:
    15      matchLabels:
    16        app: webhook
    17        release: cert-manager
    18    template:
    19      metadata:
    20        labels:
    21          app: webhook
    22          release: cert-manager
    23        annotations:
    24      spec:
    25        serviceAccountName: cert-manager-webhook
    26        containers:
    27          - name: webhook
    28            image: "quay.io/jetstack/cert-manager-webhook:v0.7.0"
    29            imagePullPolicy: IfNotPresent
    30            args:
    31            - --v=12
    32            - --secure-port=6443
    33            - --tls-cert-file=/certs/tls.crt
    34            - --tls-private-key-file=/certs/tls.key
    35            env:
    36            - name: POD_NAMESPACE
    37              valueFrom:
    38                fieldRef:
    39                  fieldPath: metadata.namespace
    40            resources:
    41              {}
    42              
    43            volumeMounts:
    44            - name: certs
    45              mountPath: /certs
    46        volumes:
    47        - name: certs
    48          secret:
    49            secretName: cert-manager-webhook-webhook-tls