- Longhorn: Helm chart v1.7.2 (sync-wave -2, installs first) - cert-manager: Helm chart v1.16.3 with CRDs enabled - CloudNativePG: Helm chart v0.23.0 - Sealed Secrets: Helm chart v2.16.2 - Remove custom StorageClass (Helm chart manages it) Previously only config resources were deployed without the actual operators, causing PVCs to pend and CRDs to be missing.
30 lines
671 B
YAML
30 lines
671 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: longhorn-helm
|
|
namespace: argocd
|
|
annotations:
|
|
argocd.argoproj.io/sync-wave: "-2"
|
|
spec:
|
|
project: default
|
|
source:
|
|
repoURL: https://charts.longhorn.io
|
|
chart: longhorn
|
|
targetRevision: 1.7.2
|
|
helm:
|
|
valuesObject:
|
|
defaultSettings:
|
|
defaultReplicaCount: 2
|
|
defaultDataLocality: best-effort
|
|
persistence:
|
|
defaultClassReplicaCount: 2
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: longhorn-system
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
syncOptions:
|
|
- CreateNamespace=true
|