From 386a0ec54e4fe51fab95b17688e68638d90699f6 Mon Sep 17 00:00:00 2001 From: Aaron Roydhouse Date: Tue, 6 Mar 2018 00:19:05 -0500 Subject: [PATCH] Document common use case options in values.yaml Lots of new users don't realize: (a) They need to create a Issuer/ClusterIssuer themselves (b) They need to tell `ingress-shim` the name via `extra-args` (Ideally the `helm` would create an ClusterIssuer for you by default, and set these options, if you specify and email address to use with LE.) --- contrib/charts/cert-manager/values.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/contrib/charts/cert-manager/values.yaml b/contrib/charts/cert-manager/values.yaml index 300f77cac..6bdd1da10 100644 --- a/contrib/charts/cert-manager/values.yaml +++ b/contrib/charts/cert-manager/values.yaml @@ -41,6 +41,10 @@ ingressShim: # Optional additional arguments for ingress-shim extraArgs: [] + # Use these flags to specify the default Issuer/ClusterIssuer + # (IMPORTANT: You need to create this Issuer/ClusterIssuer resource yourself) + # - --default-issuer-name=letsencrypt-prod + # - --default-issuer-kind=ClusterIssuer resources: {} # requests: @@ -59,4 +63,4 @@ ingressShim: # This is used by the static manifest generator in order to create a static # namespace manifest for the namespace that cert-manager is being installed # within. It should **not** be used if you are using Helm for deployment. -createNamespaceResource: false \ No newline at end of file +createNamespaceResource: false