Skip to content

Commit 21e9987

Browse files
Feat/argocd v2.11.9 (#76)
Signed-off-by: Justin Marquis <[email protected]>
1 parent 940670e commit 21e9987

File tree

5 files changed

+14
-4
lines changed

5 files changed

+14
-4
lines changed

charts/argo-cd/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
2-
version: 2.11.8-ak.0.0
3-
appVersion: 2.11.8
2+
version: 2.11.9-ak.0.0
3+
appVersion: 2.11.9
44
description: A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes.
55
name: argo-cd
66
home: https://charts.akuity.io

charts/argo-cd/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# argo-cd
22

3-
![Version: 2.11.8-ak.0.0](https://img.shields.io/badge/Version-2.11.7--ak.0.0-informational?style=flat-square) ![AppVersion: 2.11.8](https://img.shields.io/badge/AppVersion-2.11.8-informational?style=flat-square)
3+
![Version: 2.11.9-ak.0.0](https://img.shields.io/badge/Version-2.11.7--ak.0.0-informational?style=flat-square) ![AppVersion: 2.11.9](https://img.shields.io/badge/AppVersion-2.11.9-informational?style=flat-square)
44

55
A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes.
66

charts/argo-cd/templates/redis-ha/haproxy-config.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,11 @@ data:
1717
maxmemory 0
1818
maxmemory-policy volatile-lru
1919
min-replicas-max-lag 5
20+
{{- range .Values.redis.config }}
21+
{{ . }}
22+
{{- else }}
2023
min-replicas-to-write 1
24+
{{- end }}
2125
rdbchecksum yes
2226
rdbcompression yes
2327
repl-diskless-sync yes

charts/argo-cd/values.yaml

+6-1
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,12 @@ dex:
345345
# -- Redis configurations
346346
redis:
347347
enabled: true
348-
348+
config:
349+
## Additional redis conf options can be added below
350+
## For all available options see http://download.redis.io/redis-stable/redis.conf
351+
- min-replicas-to-write 0
352+
- client-output-buffer-limit replica 512mb 128mb 60
353+
- repl-backlog-size 512mb
349354
image:
350355
repository: quay.io/akuity/redis
351356
# https://hub.docker.com/_/redis/

hack/compare-cd.sh

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ helm template \
1414
--set global.image.repository=quay.io/argoproj/argocd \
1515
--set global.image.tag="v$upstream_version" \
1616
--set global.image.pullPolicy=Always \
17+
--set redis.config=null \
1718
--namespace foo "$chart_root" | grep -v imagePullPolicy > "$helm_tmpdir/helm.yaml"
1819

1920
echo """

0 commit comments

Comments
 (0)