Skip to content
This repository has been archived by the owner on Oct 10, 2023. It is now read-only.

Commit

Permalink
Setup proxy configuration to infrastructure controllers (#1216)
Browse files Browse the repository at this point in the history
  • Loading branch information
saimanoj01 authored Nov 23, 2021
1 parent c180f82 commit 9b284ce
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13726,6 +13726,12 @@ spec:
env:
- name: AWS_SHARED_CREDENTIALS_FILE
value: /home/.aws/credentials
- name: HTTP_PROXY
value: ${TKG_HTTP_PROXY}
- name: HTTPS_PROXY
value: ${TKG_HTTPS_PROXY}
- name: NO_PROXY
value: ${TKG_NO_PROXY}
image: registry.tkg.vmware.run/cluster-api-aws/cluster-api-aws-controller:${CAPA_CONTROLLER_IMAGE_TAG}
imagePullPolicy: IfNotPresent
livenessProbe:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9837,6 +9837,12 @@ spec:
- --feature-gates=MachinePool=${EXP_MACHINE_POOL:=false},AKS=${EXP_AKS:=false}
- --v=0
env:
- name: HTTP_PROXY
value: ${TKG_HTTP_PROXY}
- name: HTTPS_PROXY
value: ${TKG_HTTPS_PROXY}
- name: NO_PROXY
value: ${TKG_NO_PROXY}
- name: AZURE_SUBSCRIPTION_ID
valueFrom:
secretKeyRef:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5904,6 +5904,13 @@ spec:
path: /healthz
port: healthz
name: manager
env:
- name: HTTP_PROXY
value: ${TKG_HTTP_PROXY}
- name: HTTPS_PROXY
value: ${TKG_HTTPS_PROXY}
- name: NO_PROXY
value: ${TKG_NO_PROXY}
ports:
- containerPort: 9443
name: webhook-server
Expand Down

0 comments on commit 9b284ce

Please sign in to comment.