File tree Expand file tree Collapse file tree 5 files changed +24
-3
lines changed
Expand file tree Collapse file tree 5 files changed +24
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
22appVersion : v1.8.3
33description : A Helm chart for Argo Rollouts
44name : argo-rollouts
5- version : 2.40.2
5+ version : 2.40.3
66home : https://github.com/argoproj/argo-helm
77icon : https://argoproj.github.io/argo-rollouts/assets/logo.png
88keywords :
@@ -18,5 +18,5 @@ annotations:
1818 fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
1919 url: https://argoproj.github.io/argo-helm/pgp_keys.asc
2020 artifacthub.io/changes : |
21- - kind: fixed
22- description: Fix to render ingress's port properly
21+ - kind: added
22+ description: support dnsConfig for controller and dashboard pods
Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ For full list of changes please check ArtifactHub [changelog].
5151| fullnameOverride | string | ` nil ` | String to fully override "argo-rollouts.fullname" template |
5252| global.deploymentAnnotations | object | ` {} ` | Annotations for all deployed Deployments |
5353| global.deploymentLabels | object | ` {} ` | Labels for all deployed Deployments |
54+ | global.dnsConfig | object | ` {} ` | Specifies the deployment DNS configuration for controller and dashboard. |
5455| global.revisionHistoryLimit | int | ` 10 ` | Number of old deployment ReplicaSets to retain. The rest will be garbage collected. |
5556| imagePullSecrets | list | ` [] ` | Secrets with credentials to pull images from a private registry. Registry secret names as an array. |
5657| installCRDs | bool | ` true ` | Install and upgrade CRDs |
Original file line number Diff line number Diff line change @@ -112,6 +112,10 @@ spec:
112112 tolerations :
113113 {{- toYaml .Values.controller.tolerations | nindent 8 }}
114114 {{- end }}
115+ {{- with .Values.global.dnsConfig }}
116+ dnsConfig :
117+ {{- toYaml . | nindent 8 }}
118+ {{- end }}
115119 {{- if .Values.controller.affinity }}
116120 affinity :
117121 {{- toYaml .Values.controller.affinity | nindent 8 }}
Original file line number Diff line number Diff line change 8181 tolerations :
8282 {{- toYaml .Values.dashboard.tolerations | nindent 8 }}
8383 {{- end }}
84+ {{- with .Values.global.dnsConfig }}
85+ dnsConfig :
86+ {{- toYaml . | nindent 8 }}
87+ {{- end }}
8488 {{- if .Values.dashboard.affinity }}
8589 affinity :
8690 {{- toYaml .Values.dashboard.affinity | nindent 8 }}
Original file line number Diff line number Diff line change @@ -49,6 +49,18 @@ global:
4949 deploymentLabels : {}
5050 # -- Number of old deployment ReplicaSets to retain. The rest will be garbage collected.
5151 revisionHistoryLimit : 10
52+ # -- Specifies the deployment DNS configuration for controller and dashboard.
53+ dnsConfig : {}
54+ # nameservers:
55+ # - 1.2.3.4
56+ # searches:
57+ # - ns1.svc.cluster-domain.example
58+ # - my.dns.search.suffix
59+ # options:
60+ # - name: ndots
61+ # value: "1"
62+ # - name: attempts
63+ # value: "3"
5264
5365controller :
5466 # -- Value of label `app.kubernetes.io/component`
You can’t perform that action at this time.
0 commit comments