You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
424 B

5 years ago
  1. apiVersion: cert-manager.io/v1alpha2
  2. kind: Issuer
  3. metadata:
  4. name: {{ .Values.issuerName }}
  5. namespace: default
  6. environment: {{ .Values.environment }}
  7. app: {{ .Values.applicationName }}
  8. spec:
  9. acme:
  10. server: {{ .Values.server }}
  11. email: not@used.com
  12. privateKeySecretRef:
  13. name: {{ .Values.issuerSecretName }}
  14. solvers:
  15. - http01:
  16. ingress:
  17. class: {{ .Values.ingressClass }}