From c05420b18736c25a34e4ad6bacc6e27f5a8b27f2 Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Thu, 11 Dec 2025 20:48:15 -0600 Subject: [PATCH] add sentinel --- .../helm/harbor/templates/redis-sentinel.yaml | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 clusters/cl01tl/helm/harbor/templates/redis-sentinel.yaml diff --git a/clusters/cl01tl/helm/harbor/templates/redis-sentinel.yaml b/clusters/cl01tl/helm/harbor/templates/redis-sentinel.yaml new file mode 100644 index 000000000..c174a5294 --- /dev/null +++ b/clusters/cl01tl/helm/harbor/templates/redis-sentinel.yaml @@ -0,0 +1,23 @@ +apiVersion: redis.redis.opstreelabs.in/v1beta2 +kind: RedisSentinel +metadata: + name: redis-sentinel-harbor + namespace: {{ .Release.Namespace }} + labels: + app.kubernetes.io/name: redis-sentinel-harbor + app.kubernetes.io/instance: {{ .Release.Name }} + app.kubernetes.io/part-of: {{ .Release.Name }} +spec: + clusterSize: 3 + podSecurityContext: + runAsUser: 1000 + fsGroup: 1000 + redisSentinelConfig: + redisReplicationName: redis-replication-harbor + kubernetesConfig: + image: quay.io/opstree/redis-sentinel:v8.4.0 + imagePullPolicy: IfNotPresent + resources: + requests: + cpu: 10m + memory: 128Mi