Automated Manifest Update (#4990)
This PR contains newly rendered Kubernetes manifests automatically generated by the CI workflow. ### Details - **Trigger**: `pull_request` by `@alexlebens` - **Commit**: `3599b7a` (on `3599b7a8a6f746eea6c161535c1975bec9e607a6`) - **Charts Updated**: `argocd` ### Update Details (2026-03-23 01:20 UTC) - **Trigger**: `pull_request` by `@alexlebens` - **Commit**: `48a3afd` (on `48a3afd121657733b8d1438b5b04491b1a54dd99`) - **Charts Updated**: `argocd` ### Update Details (2026-03-23 01:22 UTC) - **Trigger**: `pull_request` by `@alexlebens` - **Commit**: `ad89a09` (on `ad89a094826de9b3e68f3ffa598b46e99cb7a67b`) - **Charts Updated**: `argocd` Reviewed-on: #4990 Co-authored-by: gitea-bot <gitea-bot@alexlebens.net> Co-committed-by: gitea-bot <gitea-bot@alexlebens.net>
This commit was merged in pull request #4990.
This commit is contained in:
@@ -47,7 +47,7 @@ spec:
|
||||
automountServiceAccountToken: false
|
||||
initContainers:
|
||||
- name: config-init
|
||||
image: ecr-public.aws.com/docker/library/redis:8.2.3-alpine
|
||||
image: redis:8.6.1-alpine@sha256:315270d166080f537bbdf1b489b603aaaa213cb55a544acfa51feb7481abb1c0
|
||||
imagePullPolicy: IfNotPresent
|
||||
resources: {}
|
||||
command:
|
||||
@@ -79,7 +79,7 @@ spec:
|
||||
mountPath: /data
|
||||
containers:
|
||||
- name: redis
|
||||
image: ecr-public.aws.com/docker/library/redis:8.2.3-alpine
|
||||
image: redis:8.6.1-alpine@sha256:315270d166080f537bbdf1b489b603aaaa213cb55a544acfa51feb7481abb1c0
|
||||
imagePullPolicy: IfNotPresent
|
||||
command:
|
||||
- redis-server
|
||||
@@ -128,7 +128,10 @@ spec:
|
||||
- sh
|
||||
- -c
|
||||
- /health/redis_readiness.sh
|
||||
resources: {}
|
||||
resources:
|
||||
requests:
|
||||
cpu: 1000m
|
||||
memory: 64Mi
|
||||
ports:
|
||||
- name: redis
|
||||
containerPort: 6379
|
||||
@@ -147,7 +150,7 @@ spec:
|
||||
- /bin/sh
|
||||
- /readonly-config/trigger-failover-if-master.sh
|
||||
- name: sentinel
|
||||
image: ecr-public.aws.com/docker/library/redis:8.2.3-alpine
|
||||
image: redis:8.6.1-alpine@sha256:315270d166080f537bbdf1b489b603aaaa213cb55a544acfa51feb7481abb1c0
|
||||
imagePullPolicy: IfNotPresent
|
||||
command:
|
||||
- redis-sentinel
|
||||
@@ -207,7 +210,7 @@ spec:
|
||||
name: health
|
||||
lifecycle: {}
|
||||
- name: split-brain-fix
|
||||
image: ecr-public.aws.com/docker/library/redis:8.2.3-alpine
|
||||
image: redis:8.6.1-alpine@sha256:315270d166080f537bbdf1b489b603aaaa213cb55a544acfa51feb7481abb1c0
|
||||
imagePullPolicy: IfNotPresent
|
||||
command:
|
||||
- sh
|
||||
@@ -237,6 +240,43 @@ spec:
|
||||
readOnly: true
|
||||
- mountPath: /data
|
||||
name: data
|
||||
- name: redis-exporter
|
||||
image: "ghcr.io/oliver006/redis_exporter:v1.82.0@sha256:6a97d4dd743b533e1f950c677b87d880e44df363c61af3f406fc9e53ed65ee03"
|
||||
imagePullPolicy: IfNotPresent
|
||||
args:
|
||||
securityContext:
|
||||
allowPrivilegeEscalation: false
|
||||
capabilities:
|
||||
drop:
|
||||
- ALL
|
||||
readOnlyRootFilesystem: true
|
||||
runAsNonRoot: true
|
||||
runAsUser: 1000
|
||||
seccompProfile:
|
||||
type: RuntimeDefault
|
||||
env:
|
||||
- name: REDIS_ADDR
|
||||
value: redis://localhost:6379
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
path: /metrics
|
||||
port: 9121
|
||||
initialDelaySeconds: 15
|
||||
periodSeconds: 15
|
||||
timeoutSeconds: 3
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: /metrics
|
||||
port: 9121
|
||||
initialDelaySeconds: 15
|
||||
periodSeconds: 15
|
||||
successThreshold: 2
|
||||
timeoutSeconds: 3
|
||||
resources: {}
|
||||
ports:
|
||||
- name: exporter-port
|
||||
containerPort: 9121
|
||||
volumeMounts:
|
||||
volumes:
|
||||
- name: config
|
||||
configMap:
|
||||
@@ -245,5 +285,16 @@ spec:
|
||||
configMap:
|
||||
name: argocd-redis-ha-health-configmap
|
||||
defaultMode: 0755
|
||||
- name: data
|
||||
emptyDir: {}
|
||||
volumeClaimTemplates:
|
||||
- apiVersion: v1
|
||||
kind: PersistentVolumeClaim
|
||||
metadata:
|
||||
name: data
|
||||
annotations:
|
||||
labels: {}
|
||||
spec:
|
||||
accessModes:
|
||||
- "ReadWriteOnce"
|
||||
resources:
|
||||
requests:
|
||||
storage: "10Gi"
|
||||
|
||||
Reference in New Issue
Block a user