From 07d5dab9f11a5b450dd305820985912a1451eee1 Mon Sep 17 00:00:00 2001 From: Alexander Rogov Date: Sun, 12 Jul 2026 15:53:34 +0300 Subject: [PATCH] add redis app --- argocd/apps/redis.yaml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 argocd/apps/redis.yaml diff --git a/argocd/apps/redis.yaml b/argocd/apps/redis.yaml new file mode 100644 index 0000000..144ffd3 --- /dev/null +++ b/argocd/apps/redis.yaml @@ -0,0 +1,36 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: redis + namespace: argocd + finalizers: + - resources-finalizer.argocd.argoproj.io +spec: + project: default + source: + repoURL: registry-1.docker.io/bitnamicharts + chart: redis + targetRevision: "27.0.15" + helm: + values: | + architecture: standalone + auth: + password: change-me + master: + persistence: + enabled: true + size: 4Gi + storageClass: yc-network-hdd + resources: + requests: + cpu: 100m + memory: 256Mi + limits: + cpu: 500m + memory: 512Mi + destination: + server: https://kubernetes.default.svc + namespace: redis + syncPolicy: + syncOptions: + - CreateNamespace=true