diff --git a/k8s/core/argocd/values.yaml b/k8s/core/argocd/values.yaml index 13a108c..78b9992 100644 --- a/k8s/core/argocd/values.yaml +++ b/k8s/core/argocd/values.yaml @@ -1,8 +1,6 @@ # Argo CD Helm Chart Values -# Includes Redis HA, Ingress for Traefik/cert-manager, and global Kustomize Helm support. global: - # Default domain (can be overridden in ingress) domain: ag.hexor.cy logging: format: text @@ -13,20 +11,14 @@ crds: keep: true # Recommended to keep true so CRDs are not deleted on uninstall configs: - # Settings for argocd-cm ConfigMap + params: + server.insecure: "true" cm: create: true - # --- GLOBAL KUSTOMIZE OPTION --- - # Enables --enable-helm flag for all Kustomize builds managed by this Argo CD instance kustomize.buildOptions: --enable-helm - # ---------------------------------- - # Standard/recommended values: application.instanceLabelKey: argocd.argoproj.io/instance admin.enabled: true timeout.reconciliation: 180s - # Add other necessary keys for argocd-cm here - - # Settings for argocd-rbac-cm ConfigMap rbac: create: true policy.default: "" @@ -34,17 +26,10 @@ configs: # p, role:org-admin, applications, *, */*, allow # g, your-github-group, role:org-admin - # Settings for argocd-secret Secret secret: createSecret: true - # IMPORTANT: Set admin password hash below or manage the secret externally. - # How to generate hash: htpasswd -nbBC 10 "" PASSWORD | tr -d ':\n' | sed 's/$2y/$2a/' argocdServerAdminPassword: "" # <--- SET BCRYPT HASH HERE OR MANAGE EXTERNALLY - # Add other secrets like webhook secrets, OIDC client secrets etc. if needed - # githubSecret: "" - # gitlabSecret: "" -# Application Controller controller: replicas: 1 # Add resources (requests/limits), PDB etc. if needed