Skip to content

Feat/argocd v2.11.9 #76

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/argo-cd/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
version: 2.11.8-ak.0.0
appVersion: 2.11.8
version: 2.11.9-ak.0.0
appVersion: 2.11.9
description: A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes.
name: argo-cd
home: https://charts.akuity.io
Expand Down
2 changes: 1 addition & 1 deletion charts/argo-cd/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# argo-cd

![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)
![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)

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

Expand Down
4 changes: 4 additions & 0 deletions charts/argo-cd/templates/redis-ha/haproxy-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ data:
maxmemory 0
maxmemory-policy volatile-lru
min-replicas-max-lag 5
{{- range .Values.redis.config }}
{{ . }}
{{- else }}
min-replicas-to-write 1
{{- end }}
rdbchecksum yes
rdbcompression yes
repl-diskless-sync yes
Expand Down
7 changes: 6 additions & 1 deletion charts/argo-cd/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,12 @@ dex:
# -- Redis configurations
redis:
enabled: true

config:
## Additional redis conf options can be added below
## For all available options see http://download.redis.io/redis-stable/redis.conf
- min-replicas-to-write 0
- client-output-buffer-limit replica 512mb 128mb 60
- repl-backlog-size 512mb
image:
repository: quay.io/akuity/redis
# https://hub.docker.com/_/redis/
Expand Down
1 change: 1 addition & 0 deletions hack/compare-cd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ helm template \
--set global.image.repository=quay.io/argoproj/argocd \
--set global.image.tag="v$upstream_version" \
--set global.image.pullPolicy=Always \
--set redis.config=null \
--namespace foo "$chart_root" | grep -v imagePullPolicy > "$helm_tmpdir/helm.yaml"

echo """
Expand Down
Loading