This commit is contained in:
mstypinski 2024-12-09 17:45:58 +01:00 committed by GitHub
commit 58f6bd7f61
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 7 additions and 5 deletions

View file

@ -3,7 +3,7 @@ appVersion: v2.13.1
kubeVersion: ">=1.25.0-0" kubeVersion: ">=1.25.0-0"
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
name: argo-cd name: argo-cd
version: 7.7.8 version: 7.7.9
home: https://github.com/argoproj/argo-helm home: https://github.com/argoproj/argo-helm
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
sources: sources:
@ -28,3 +28,5 @@ annotations:
artifacthub.io/changes: | artifacthub.io/changes: |
- kind: changed - kind: changed
description: Bump argocd-extension-installer to v0.0.8 description: Bump argocd-extension-installer to v0.0.8
- kind: fixed
description: Fixed swapped readiness and liveness probes in server and repo server

View file

@ -342,7 +342,7 @@ spec:
protocol: TCP protocol: TCP
livenessProbe: livenessProbe:
httpGet: httpGet:
path: /healthz?full=true path: /healthz
port: metrics port: metrics
initialDelaySeconds: {{ .Values.repoServer.livenessProbe.initialDelaySeconds }} initialDelaySeconds: {{ .Values.repoServer.livenessProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.repoServer.livenessProbe.periodSeconds }} periodSeconds: {{ .Values.repoServer.livenessProbe.periodSeconds }}
@ -351,7 +351,7 @@ spec:
failureThreshold: {{ .Values.repoServer.livenessProbe.failureThreshold }} failureThreshold: {{ .Values.repoServer.livenessProbe.failureThreshold }}
readinessProbe: readinessProbe:
httpGet: httpGet:
path: /healthz path: /healthz?full=true
port: metrics port: metrics
initialDelaySeconds: {{ .Values.repoServer.readinessProbe.initialDelaySeconds }} initialDelaySeconds: {{ .Values.repoServer.readinessProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.repoServer.readinessProbe.periodSeconds }} periodSeconds: {{ .Values.repoServer.readinessProbe.periodSeconds }}

View file

@ -410,7 +410,7 @@ spec:
protocol: TCP protocol: TCP
livenessProbe: livenessProbe:
httpGet: httpGet:
path: /healthz?full=true path: /healthz
port: server port: server
initialDelaySeconds: {{ .Values.server.livenessProbe.initialDelaySeconds }} initialDelaySeconds: {{ .Values.server.livenessProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.server.livenessProbe.periodSeconds }} periodSeconds: {{ .Values.server.livenessProbe.periodSeconds }}
@ -419,7 +419,7 @@ spec:
failureThreshold: {{ .Values.server.livenessProbe.failureThreshold }} failureThreshold: {{ .Values.server.livenessProbe.failureThreshold }}
readinessProbe: readinessProbe:
httpGet: httpGet:
path: /healthz path: /healthz?full=true
port: server port: server
initialDelaySeconds: {{ .Values.server.readinessProbe.initialDelaySeconds }} initialDelaySeconds: {{ .Values.server.readinessProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.server.readinessProbe.periodSeconds }} periodSeconds: {{ .Values.server.readinessProbe.periodSeconds }}