From 2f2770fe7f74ccd4f0b7aaec1662941768a6323d Mon Sep 17 00:00:00 2001 From: Alexander Rogov Date: Tue, 5 May 2026 14:23:02 +0300 Subject: [PATCH] Remove cert-manager from ArgoCD apps (managed as bootstrap) --- argocd/apps/cert-manager.yaml | 26 -------------------------- bootstrap/argocd/values.yaml | 15 +++++++++++++++ 2 files changed, 15 insertions(+), 26 deletions(-) delete mode 100644 argocd/apps/cert-manager.yaml create mode 100644 bootstrap/argocd/values.yaml diff --git a/argocd/apps/cert-manager.yaml b/argocd/apps/cert-manager.yaml deleted file mode 100644 index 01aa524..0000000 --- a/argocd/apps/cert-manager.yaml +++ /dev/null @@ -1,26 +0,0 @@ -apiVersion: argoproj.io/v1alpha1 -kind: Application -metadata: - name: cert-manager - namespace: argocd - finalizers: - - resources-finalizer.argocd.argoproj.io -spec: - project: default - source: - repoURL: https://charts.jetstack.io - chart: cert-manager - targetRevision: v1.20.1 - helm: - values: | - crds: - enabled: true - destination: - server: https://kubernetes.default.svc - namespace: cert-manager - syncPolicy: - automated: - prune: true - selfHeal: true - syncOptions: - - CreateNamespace=true diff --git a/bootstrap/argocd/values.yaml b/bootstrap/argocd/values.yaml new file mode 100644 index 0000000..194e10b --- /dev/null +++ b/bootstrap/argocd/values.yaml @@ -0,0 +1,15 @@ +server: + extraArgs: + - --insecure + +configs: + params: + server.insecure: true + cm: + timeout.reconciliation: 180s + helm.timeoutSeconds: "300" + +redis: + image: + repository: docker.io/library/redis + tag: 7.4-alpine