nginx-ingress + cert-manager

This commit is contained in:
Leon Liu 2024-11-10 00:03:02 +09:00
parent 769a5fbfa8
commit 1a3111d6ab
2 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,20 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: cert-manager
namespace: argocd
spec:
destination:
namespace: cert-manager
server: {{ .Values.spec.destination.server }}
project: default
source:
chart: cert-manager
repoURL: https://charts.jetstack.io
targetRevision: 1.*.*
helm:
valuesObject:
crds:
enabled: true
syncPolicy:
automated: {}

View File

@ -0,0 +1,25 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: ingress-nginx
namespace: argocd
spec:
destination:
namespace: ingress-nginx
server: {{ .Values.spec.destination.server }}
project: default
source:
chart: ingress-nginx
repoURL: https://kubernetes.github.io/ingress-nginx
targetRevision: 4.*.*
helm:
valuesObject:
controller:
hostNetwork: true
service:
enabled: false
kind: DaemonSet
tcp:
22: "gitea/gitea-ssh:22"
syncPolicy:
automated: {}