diff --git a/clusters/cl01tl/helm/immich/templates/redis-replication.yaml b/clusters/cl01tl/helm/immich/templates/redis-replication.yaml index c72a1a2c9..9c7661e67 100644 --- a/clusters/cl01tl/helm/immich/templates/redis-replication.yaml +++ b/clusters/cl01tl/helm/immich/templates/redis-replication.yaml @@ -13,7 +13,7 @@ spec: runAsUser: 1000 fsGroup: 1000 kubernetesConfig: - image: quay.io/opstree/redis:v8.0.3 + image: quay.io/opstree/redis:v8.4.0 imagePullPolicy: IfNotPresent resources: requests: @@ -29,4 +29,4 @@ spec: storage: 1Gi redisExporter: enabled: true - image: quay.io/opstree/redis-exporter:v1.48.0 + image: quay.io/opstree/redis-exporter:v1.80.1 diff --git a/clusters/cl01tl/helm/immich/templates/redis-sentinel.yaml b/clusters/cl01tl/helm/immich/templates/redis-sentinel.yaml new file mode 100644 index 000000000..edfb87d8c --- /dev/null +++ b/clusters/cl01tl/helm/immich/templates/redis-sentinel.yaml @@ -0,0 +1,23 @@ +apiVersion: redis.redis.opstreelabs.in/v1beta2 +kind: RedisSentinel +metadata: + name: redis-sentinel-immich + namespace: {{ .Release.Namespace }} + labels: + app.kubernetes.io/name: redis-sentinel-immich + 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-immich + kubernetesConfig: + image: quay.io/opstree/redis-sentinel:v8.4.0 + imagePullPolicy: IfNotPresent + resources: + requests: + cpu: 10m + memory: 128Mi