Skip to content

Commit

Permalink
feat: add env variables for proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
stephbat authored Sep 24, 2024
1 parent fad1a90 commit 9638871
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions deploy/cert-manager-webhook-pdns/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,18 +37,18 @@ spec:
env:
- name: GROUP_NAME
value: {{ .Values.groupName | quote }}
{{- with .Values.http_proxy }}
- name: HTTP_PROXY
value: {{ . }}
{{- end }}
{{- with .Values.https_proxy }}
- name: HTTPS_PROXY
value: {{ . }}
{{- end }}
{{- with .Values.no_proxy }}
- name: NO_PROXY
value: {{ . }}
{{- end }}
{{- with .Values.http_proxy }}
- name: HTTP_PROXY
value: {{ . }}
{{- end }}
{{- with .Values.https_proxy }}
- name: HTTPS_PROXY
value: {{ . }}
{{- end }}
{{- with .Values.no_proxy }}
- name: NO_PROXY
value: {{ . }}
{{- end }}
ports:
- name: https
containerPort: 8443
Expand Down

0 comments on commit 9638871

Please sign in to comment.