mirror of
https://github.com/rubenhensen/k8scd.git
synced 2026-09-17 02:12:55 +02:00
Move cert-manager, add clusterissuer
This commit is contained in:
@@ -3,23 +3,18 @@ kind: Application
|
|||||||
metadata:
|
metadata:
|
||||||
name: cert-manager
|
name: cert-manager
|
||||||
namespace: argocd
|
namespace: argocd
|
||||||
finalizers:
|
|
||||||
- resources-finalizer.argocd.argoproj.io
|
|
||||||
spec:
|
spec:
|
||||||
destination:
|
|
||||||
namespace: cert-manager
|
|
||||||
server: {{ .Values.spec.destination.server }}
|
|
||||||
project: default
|
project: default
|
||||||
source:
|
source:
|
||||||
path: ''
|
repoURL: https://github.com/rubenhensen/k8scd.git
|
||||||
repoURL: https://charts.jetstack.io
|
targetRevision: HEAD
|
||||||
targetRevision: v1.15.3
|
path: cert-manager
|
||||||
chart: cert-manager
|
destination:
|
||||||
helm:
|
server: https://kubernetes.default.svc
|
||||||
parameters:
|
namespace: cert-manager
|
||||||
- name: crds.enabled
|
|
||||||
value: 'true'
|
|
||||||
syncPolicy:
|
syncPolicy:
|
||||||
syncOptions:
|
syncOptions:
|
||||||
- CreateNamespace=true
|
- CreateNamespace=true
|
||||||
automated: {}
|
automated:
|
||||||
|
prune: true
|
||||||
|
selfHeal: true
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
apiVersion: argoproj.io/v1alpha1
|
||||||
|
kind: Application
|
||||||
|
metadata:
|
||||||
|
name: cert-manager
|
||||||
|
namespace: argocd
|
||||||
|
finalizers:
|
||||||
|
- resources-finalizer.argocd.argoproj.io
|
||||||
|
spec:
|
||||||
|
destination:
|
||||||
|
namespace: cert-manager
|
||||||
|
server: {{ .Values.spec.destination.server }}
|
||||||
|
project: default
|
||||||
|
source:
|
||||||
|
path: ''
|
||||||
|
repoURL: https://charts.jetstack.io
|
||||||
|
targetRevision: v1.15.3
|
||||||
|
chart: cert-manager
|
||||||
|
helm:
|
||||||
|
parameters:
|
||||||
|
- name: crds.enabled
|
||||||
|
value: 'true'
|
||||||
|
syncPolicy:
|
||||||
|
syncOptions:
|
||||||
|
- CreateNamespace=true
|
||||||
|
automated: {}
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
apiVersion: cert-manager.io/v1
|
||||||
|
kind: ClusterIssuer
|
||||||
|
metadata:
|
||||||
|
name: prod-clusterIssuer
|
||||||
|
spec:
|
||||||
|
acme:
|
||||||
|
# The ACME server URL
|
||||||
|
server: https://acme-v02.api.letsencrypt.org/directory
|
||||||
|
# Email address used for ACME registration
|
||||||
|
email: ruben.hensen@proton.me
|
||||||
|
# Name of a secret used to store the ACME account private key
|
||||||
|
privateKeySecretRef:
|
||||||
|
name: letsencrypt-prod
|
||||||
|
# Enable the HTTP-01 challenge provider
|
||||||
|
solvers:
|
||||||
|
- http01:
|
||||||
|
ingress:
|
||||||
|
ingressClassName: nginx
|
||||||
Reference in New Issue
Block a user