Skip to content

Commit 35c4625

Browse files
authored
add proxy settings to app-orch-catalog (#386)
1 parent f3392f9 commit 35c4625

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

argocd/applications/custom/app-orch-catalog.tpl

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,14 @@ openidc:
2929
{{- if .Values.argo.catalog.storageClass }}
3030
storageClassName: {{ .Values.argo.catalog.storageClass }}
3131
{{- end }}
32+
catalogServer:
33+
# http proxy settings
34+
{{- if .Values.argo.proxy.httpProxy}}
35+
httpProxy: "{{ .Values.argo.proxy.httpProxy }}"
36+
{{- end}}
37+
{{- if .Values.argo.proxy.httpsProxy}}
38+
httpsProxy: "{{ .Values.argo.proxy.httpsProxy }}"
39+
{{- end}}
40+
{{- if .Values.argo.proxy.noProxy}}
41+
noProxy: "{{ .Values.argo.proxy.noProxy }}"
42+
{{- end}}

argocd/applications/templates/app-deployment-manager.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
sources:
2222
- repoURL: {{ required "A valid chartRepoURL entry required!" .Values.argo.chartRepoURL }}
2323
chart: app/charts/{{$appName}}
24-
targetRevision: 2.4.11
24+
targetRevision: 2.4.12
2525
helm:
2626
releaseName: {{$appName}}
2727
valuesObject:

argocd/applications/templates/app-orch-catalog.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
sources:
2222
- repoURL: {{ required "A valid chartRepoURL entry required!" .Values.argo.chartRepoURL }}
2323
chart: app/charts/{{$appName}}
24-
targetRevision: 0.14.1
24+
targetRevision: 0.14.3
2525
helm:
2626
releaseName: {{ $appName }}
2727
valuesObject:

0 commit comments

Comments
 (0)