mirror of https://github.com/kubernetes/kops.git
Merge pull request #10445 from hakman/automated-cherry-pick-of-#10442-upstream-release-1.19
Automated cherry pick of #10442: Allow Calico to run on systems with loose reverse path
This commit is contained in:
commit
69ee44ada3
|
|
@ -8985,6 +8985,9 @@ spec:
|
|||
# Set Felix endpoint to host default action to ACCEPT.
|
||||
- name: FELIX_DEFAULTENDPOINTTOHOSTACTION
|
||||
value: "ACCEPT"
|
||||
# Allow Felix to run on systems with loose reverse path forwarding (RPF)
|
||||
- name: FELIX_IGNORELOOSERPF
|
||||
value: "true"
|
||||
# Disable IPv6 on Kubernetes.
|
||||
- name: FELIX_IPV6SUPPORT
|
||||
value: "false"
|
||||
|
|
|
|||
|
|
@ -813,6 +813,9 @@ spec:
|
|||
# Set Felix endpoint to host default action to ACCEPT.
|
||||
- name: FELIX_DEFAULTENDPOINTTOHOSTACTION
|
||||
value: "ACCEPT"
|
||||
# Allow Felix to run on systems with loose reverse path forwarding (RPF)
|
||||
- name: FELIX_IGNORELOOSERPF
|
||||
value: "true"
|
||||
# Disable IPv6 on Kubernetes.
|
||||
- name: FELIX_IPV6SUPPORT
|
||||
value: "false"
|
||||
|
|
|
|||
|
|
@ -857,7 +857,7 @@ func (b *BootstrapChannelBuilder) buildAddons(c *fi.ModelBuilderContext) (*chann
|
|||
versions := map[string]string{
|
||||
"k8s-1.7": "2.6.12-kops.1",
|
||||
"k8s-1.7-v3": "3.8.0-kops.2",
|
||||
"k8s-1.12": "3.9.6-kops.1",
|
||||
"k8s-1.12": "3.9.6-kops.2",
|
||||
"k8s-1.16": "3.17.1-kops.1",
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue