github.com/replicatedcom/ship@v0.50.0/integration/init/istio-1.0.3/expected/.ship/upstream/charts/certmanager/templates/issuer.yaml (about)

     1  ---
     2  apiVersion: certmanager.k8s.io/v1alpha1
     3  kind: ClusterIssuer
     4  metadata:
     5    name: letsencrypt-staging
     6    namespace: {{ .Release.Namespace }}
     7  spec:
     8    acme:
     9      server: https://acme-staging-v02.api.letsencrypt.org/directory
    10      email: {{ .Values.email }}
    11      # Name of a secret used to store the ACME account private key
    12      privateKeySecretRef:
    13        name: letsencrypt-staging
    14      http01: {}
    15  ---
    16  apiVersion: certmanager.k8s.io/v1alpha1
    17  kind: ClusterIssuer
    18  metadata:
    19    name: letsencrypt
    20    namespace: {{ .Release.Namespace }}
    21  spec:
    22    acme:
    23      server: https://acme-v02.api.letsencrypt.org/directory
    24      email: {{ .Values.email }}
    25      privateKeySecretRef:
    26        name: letsencrypt
    27      http01: {}