Skip to content

Commit 940670e

Browse files
feat: argo-cd v2.11.8 (#75)
Signed-off-by: Justin Marquis <[email protected]>
1 parent 0898e99 commit 940670e

File tree

4 files changed

+24
-20
lines changed

4 files changed

+24
-20
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.7-ak.0.0
3-
appVersion: 2.11.7
2+
version: 2.11.8-ak.0.0
3+
appVersion: 2.11.8
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

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

3-
![Version: 2.11.7-ak.0.0](https://img.shields.io/badge/Version-2.11.7--ak.0.0-informational?style=flat-square) ![AppVersion: 2.11.7](https://img.shields.io/badge/AppVersion-2.11.7-informational?style=flat-square)
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)
44

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

@@ -60,7 +60,7 @@ A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kube
6060
| imageUpdater.enabled | bool | `false` | Whether to enable image updater |
6161
| notificationsController | object | `{"enabled":true}` | Notifications Controller |
6262
| notificationsController.enabled | bool | `true` | Whether to enable Notifications Controller |
63-
| redis | object | `{"enabled":true,"haProxyImage":{"repository":"haproxy","tag":"2.6.14-alpine"},"image":{"pullPolicy":null,"repository":"quay.io/akuity/redis","tag":"7.0.15-alpine"},"resources":null}` | Redis configurations |
63+
| redis | object | `{"enabled":true,"haProxyImage":{"repository":"haproxy","tag":"2.6.14-alpine"},"networkPolicy":{"egress":{"enabled":true}},"image":{"pullPolicy":null,"repository":"quay.io/akuity/redis","tag":"7.0.15-alpine"},"resources":null}` | Redis configurations |
6464
| repoServer | object | `{"extraArgs":null,"image":{"pullPolicy":null,"repository":null,"tag":null},"replicas":2,"resources":null}` | Repo Server |
6565
| repoServer.extraArgs | string | `nil` | Additional command line arguments to pass to argocd-repo-server |
6666
| server | object | `{"enabled":true,"extraArgs":null,"image":{"pullPolicy":null,"repository":null,"tag":null},"ingress":{"annotations":{},"className":"","enabled":false,"host":"argocd.example.com","tls":{"enabled":false,"secretName":null}},"insecure":false,"replicas":2,"resources":null,"service":{"type":null}}` | Argo Server configuration |

charts/argo-cd/templates/redis-ha/redis-ha-networkpolicy.yaml

+17-15
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,6 @@ metadata:
44
name: argocd-redis-ha-server-network-policy
55
namespace: {{ .Release.Namespace }}
66
spec:
7-
egress:
8-
- ports:
9-
- port: 6379
10-
protocol: TCP
11-
- port: 26379
12-
protocol: TCP
13-
to:
14-
- podSelector:
15-
matchLabels:
16-
app.kubernetes.io/name: argocd-redis-ha
17-
- ports:
18-
- port: 53
19-
protocol: UDP
20-
- port: 53
21-
protocol: TCP
227
ingress:
238
- from:
249
- podSelector:
@@ -37,4 +22,21 @@ spec:
3722
app.kubernetes.io/name: argocd-redis-ha
3823
policyTypes:
3924
- Ingress
25+
{{- if .Values.redis.networkPolicy.egress.enabled }}
4026
- Egress
27+
egress:
28+
- ports:
29+
- port: 6379
30+
protocol: TCP
31+
- port: 26379
32+
protocol: TCP
33+
to:
34+
- podSelector:
35+
matchLabels:
36+
app.kubernetes.io/name: argocd-redis-ha
37+
- ports:
38+
- port: 53
39+
protocol: UDP
40+
- port: 53
41+
protocol: TCP
42+
{{- end }}

charts/argo-cd/values.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,9 @@ redis:
355355
# https://hub.docker.com/_/haproxy
356356
repository: haproxy
357357
tag: 2.6.14-alpine
358-
358+
networkPolicy:
359+
egress:
360+
enabled: true
359361
resources:
360362
# limits:
361363
# cpu: 200m

0 commit comments

Comments
 (0)