mirror of https://github.com/kubernetes/kops.git
Add proxy envs to calico to make possible usage of AWS source destination check
Signed-off-by: Dmytro Oboznyi <dmytro.oboznyi@syncier.com>
This commit is contained in:
parent
fdafcfc297
commit
feed3b26ae
|
@ -3924,6 +3924,11 @@ spec:
|
||||||
# Enable WireGuard encryption for all on-the-wire pod-to-pod traffic
|
# Enable WireGuard encryption for all on-the-wire pod-to-pod traffic
|
||||||
- name: FELIX_WIREGUARDENABLED
|
- name: FELIX_WIREGUARDENABLED
|
||||||
value: "{{ .Networking.Calico.WireguardEnabled }}"
|
value: "{{ .Networking.Calico.WireguardEnabled }}"
|
||||||
|
# Enable support for HTTP forward proxy
|
||||||
|
{{ range $name, $value := ProxyEnv }}
|
||||||
|
- name: {{ $name }}
|
||||||
|
value: {{ $value }}
|
||||||
|
{{ end }}
|
||||||
securityContext:
|
securityContext:
|
||||||
privileged: true
|
privileged: true
|
||||||
resources:
|
resources:
|
||||||
|
@ -4130,4 +4135,3 @@ spec:
|
||||||
---
|
---
|
||||||
# Source: calico/templates/configure-canal.yaml
|
# Source: calico/templates/configure-canal.yaml
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue