feat(cert-manager): Add for SSL configuration
This commit is contained in:
parent
fb8a8364bc
commit
7f5953dda9
13263
cert-manager/cert-manager.yaml
Normal file
13263
cert-manager/cert-manager.yaml
Normal file
File diff suppressed because it is too large
Load Diff
15
cert-manager/clusterissuer-production.yaml
Normal file
15
cert-manager/clusterissuer-production.yaml
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
apiVersion: cert-manager.io/v1
|
||||||
|
kind: ClusterIssuer
|
||||||
|
metadata:
|
||||||
|
name: letsencrypt-production
|
||||||
|
spec:
|
||||||
|
acme:
|
||||||
|
server: https://acme-v02.api.letsencrypt.org/directory
|
||||||
|
email: tanguy.herbron@outlook.com
|
||||||
|
privateKeySecretRef:
|
||||||
|
name: letsencrypt-production
|
||||||
|
solvers:
|
||||||
|
- selector: {}
|
||||||
|
http01:
|
||||||
|
ingress:
|
||||||
|
class: nginx-external
|
15
cert-manager/clusterissuer-staging.yaml
Normal file
15
cert-manager/clusterissuer-staging.yaml
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
apiVersion: cert-manager.io/v1
|
||||||
|
kind: ClusterIssuer
|
||||||
|
metadata:
|
||||||
|
name: letsencrypt-staging
|
||||||
|
spec:
|
||||||
|
acme:
|
||||||
|
server: https://acme-staging-v02.api.letsencrypt.org/directory
|
||||||
|
email: tanguy.herbron@outlook.com
|
||||||
|
privateKeySecretRef:
|
||||||
|
name: letsencrypt-staging
|
||||||
|
solvers:
|
||||||
|
- selector: {}
|
||||||
|
http01:
|
||||||
|
ingress:
|
||||||
|
class: nginx-external
|
7
cert-manager/kustomization.yaml
Normal file
7
cert-manager/kustomization.yaml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
|
||||||
|
resources:
|
||||||
|
- https://github.com/cert-manager/cert-manager/releases/download/v1.16.2/cert-manager.yaml
|
||||||
|
- clusterissuer-staging.yaml
|
||||||
|
- clusterissuer-production.yaml
|
Loading…
Reference in New Issue
Block a user