diff --git a/deploy/cert-manager-webhook-gandi/templates/deployment.yaml b/deploy/cert-manager-webhook-gandi/templates/deployment.yaml index 073a61b45..d83c139c8 100644 --- a/deploy/cert-manager-webhook-gandi/templates/deployment.yaml +++ b/deploy/cert-manager-webhook-gandi/templates/deployment.yaml @@ -34,6 +34,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 }} ports: - name: https containerPort: 443 diff --git a/deploy/cert-manager-webhook-gandi/values.yaml b/deploy/cert-manager-webhook-gandi/values.yaml index ab255ccb8..a090f33e6 100644 --- a/deploy/cert-manager-webhook-gandi/values.yaml +++ b/deploy/cert-manager-webhook-gandi/values.yaml @@ -9,6 +9,9 @@ image: pullPolicy: IfNotPresent nameOverride: '' fullnameOverride: '' +http_proxy: '' +https_proxy: '' +no_proxy: '' service: type: ClusterIP port: 443