You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
---
apiVersion: certmanager.k8s.io/v1alpha1kind: ClusterIssuermetadata:
name: letsencrypt-stagingspec:
acme:
# The ACME server URLserver: https://acme-staging-v02.api.letsencrypt.org/directory# Email address used for ACME registrationemail: "[email protected]"# Name of a secret used to store the ACME account private keyprivateKeySecretRef:
name: letsencrypt-staging# Enable the HTTP-01 challenge providerhttp01: {}
---
apiVersion: certmanager.k8s.io/v1alpha1kind: ClusterIssuermetadata:
name: letsencrypt-productionspec:
acme:
# The ACME production api URLserver: https://acme-v02.api.letsencrypt.org/directory# Email address used for ACME registrationemail: [email protected]# Name of a secret used to store the ACME account private keyprivateKeySecretRef:
name: letsencrypt-production# Enable the HTTP-01 challenge providerhttp01: {}
---
apiVersion: certmanager.k8s.io/v1alpha1kind: Certificatemetadata:
name: example-comnamespace: cattle-systemspec:
secretName: example-comissuerRef:
kind: ClusterIssuername: letsencrypt-stagingcommonName: example.comdnsNames:
- example.comacme:
config:
- http01:
ingressClass: nginxdomains:
- example.com
---
apiVersion: extensions/v1beta1kind: Ingressmetadata:
namespace: cattle-systemname: cattle-ingress-httpannotations:
kubernetes.io/tls-acme: "true"certmanager.k8s.io/cluster-issuer: letsencrypt-productionnginx.ingress.kubernetes.io/proxy-connect-timeout: "30"nginx.ingress.kubernetes.io/proxy-read-timeout: "1800"# Max time in seconds for ws to remain shell window opennginx.ingress.kubernetes.io/proxy-send-timeout: "1800"# Max time in seconds for ws to remain shell window open# nginx.ingress.kubernetes.io/ssl-passthrough: "true" # Enable ssl-passthrough to backend.spec:
rules:
- host: example.comhttp:
paths:
- backend:
serviceName: cattle-serviceservicePort: 80tls:
- secretName: example-comhosts:
- example.com
The text was updated successfully, but these errors were encountered:
insekticid
changed the title
Feature Request: New resources for ClusterIssuer, Certificate
Feature Request: New resources for ClusterIssuer, Issuer, Certificate
Aug 16, 2018
New resources for ClusterIssuer, Issuer, Certificate
https://cert-manager.readthedocs.io/en/latest/reference/clusterissuers.html
Edit:
solution via raw kubernetes_manifest resource https://github.com/ericchiang/terraform-provider-k8s
The text was updated successfully, but these errors were encountered: