diff --git a/kubernetes/README.md b/kubernetes/README.md index 610aa8d..62efab1 100644 --- a/kubernetes/README.md +++ b/kubernetes/README.md @@ -61,11 +61,14 @@ Here are some troubleshoot commands to test: ```bash kubectl get clusterissuer kubectl describe clusterissuer -kubectl get certificate -n nginx-test -kubectl get certificateRequest -n nginx-test +kubectl get certificate -n cert-manager +kubectl get certificateRequest -n cert-manager kubectl describe challenges -n cert-manager kubectl describe orders -n cert-manager ``` +Alternatively, it is possible to generate service specific certs +in desired namespaces by deploying the Certificate resource in the namespace. + # Deploy Private Docker Registry diff --git a/kubernetes/cert-manager-helm-chart/templates/clusterIssuers.yaml b/kubernetes/cert-manager-helm-chart/templates/clusterIssuers.yaml index 5da383b..83263f4 100644 --- a/kubernetes/cert-manager-helm-chart/templates/clusterIssuers.yaml +++ b/kubernetes/cert-manager-helm-chart/templates/clusterIssuers.yaml @@ -11,7 +11,7 @@ spec: name: {{ .Values.clusterIssuer.privateKeySecretRef }} solvers: - dns01: - cloudflare: + cloudflare: # Use the DNS-01 challenge mechanism for Cloudflare email: {{ .Values.clusterIssuer.email }} apiTokenSecretRef: name: {{ .Values.clusterIssuer.apiTokenSecretRef.name }}