From c1f0b74a7d31bb2f1b89194cd135033e721c7a3c Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Tue, 29 Jul 2025 19:06:56 -0500 Subject: [PATCH] add redis replciation --- .../searxng/templates/redis-replication.yaml | 32 +++++++++++++++++++ .../searxng/templates/service-monitor.yaml | 19 +++++++++++ 2 files changed, 51 insertions(+) create mode 100644 clusters/cl01tl/applications/searxng/templates/redis-replication.yaml create mode 100644 clusters/cl01tl/applications/searxng/templates/service-monitor.yaml diff --git a/clusters/cl01tl/applications/searxng/templates/redis-replication.yaml b/clusters/cl01tl/applications/searxng/templates/redis-replication.yaml new file mode 100644 index 000000000..21959b519 --- /dev/null +++ b/clusters/cl01tl/applications/searxng/templates/redis-replication.yaml @@ -0,0 +1,32 @@ +apiVersion: redis.redis.opstreelabs.in/v1beta2 +kind: RedisReplication +metadata: + name: redis-replication-searxng + namespace: {{ .Release.Namespace }} + labels: + app.kubernetes.io/name: redis-replication-searxng + app.kubernetes.io/instance: {{ .Release.Name }} + app.kubernetes.io/part-of: {{ .Release.Name }} +spec: + clusterSize: 3 + podSecurityContext: + runAsUser: 1000 + fsGroup: 1000 + kubernetesConfig: + image: quay.io/opstree/redis:v8.0.3 + imagePullPolicy: IfNotPresent + resources: + requests: + cpu: 50m + memory: 128Mi + storage: + volumeClaimTemplate: + spec: + storageClassName: ceph-block + accessModes: ["ReadWriteOnce"] + resources: + requests: + storage: 1Gi + redisExporter: + enabled: true + image: quay.io/opstree/redis-exporter:v1.48.0 diff --git a/clusters/cl01tl/applications/searxng/templates/service-monitor.yaml b/clusters/cl01tl/applications/searxng/templates/service-monitor.yaml new file mode 100644 index 000000000..ebb5165f1 --- /dev/null +++ b/clusters/cl01tl/applications/searxng/templates/service-monitor.yaml @@ -0,0 +1,19 @@ +apiVersion: monitoring.coreos.com/v1 +kind: ServiceMonitor +metadata: + name: redis-replication-searxng + namespace: {{ .Release.Namespace }} + labels: + app.kubernetes.io/name: redis-replication-searxng + app.kubernetes.io/instance: {{ .Release.Name }} + app.kubernetes.io/part-of: {{ .Release.Name }} + redis-operator: "true" + env: production +spec: + selector: + matchLabels: + redis_setup_type: replication + endpoints: + - port: redis-exporter + interval: 30s + scrapeTimeout: 10s