Merge pull request #9547 from johngmyers/kuberouter-toleration

Widen the tolerations of kuberouter
This commit is contained in:
Kubernetes Prow Robot 2020-07-11 14:09:21 -07:00 committed by GitHub
commit 1a903f6fe8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 26 deletions

View File

@ -7295,14 +7295,7 @@ spec:
name: kube-router-cfg name: kube-router-cfg
hostNetwork: true hostNetwork: true
tolerations: tolerations:
- key: CriticalAddonsOnly - operator: Exists
operator: Exists
- effect: NoSchedule
key: node-role.kubernetes.io/master
operator: Exists
- effect: NoSchedule
key: node.kubernetes.io/not-ready
operator: Exists
volumes: volumes:
- name: lib-modules - name: lib-modules
hostPath: hostPath:
@ -7485,10 +7478,7 @@ spec:
hostNetwork: true hostNetwork: true
serviceAccountName: kube-router serviceAccountName: kube-router
tolerations: tolerations:
- key: CriticalAddonsOnly - operator: Exists
operator: Exists
- effect: NoSchedule
operator: Exists
volumes: volumes:
- hostPath: - hostPath:
path: /lib/modules path: /lib/modules

View File

@ -109,14 +109,7 @@ spec:
name: kube-router-cfg name: kube-router-cfg
hostNetwork: true hostNetwork: true
tolerations: tolerations:
- key: CriticalAddonsOnly - operator: Exists
operator: Exists
- effect: NoSchedule
key: node-role.kubernetes.io/master
operator: Exists
- effect: NoSchedule
key: node.kubernetes.io/not-ready
operator: Exists
volumes: volumes:
- name: lib-modules - name: lib-modules
hostPath: hostPath:

View File

@ -90,10 +90,7 @@ spec:
hostNetwork: true hostNetwork: true
serviceAccountName: kube-router serviceAccountName: kube-router
tolerations: tolerations:
- key: CriticalAddonsOnly - operator: Exists
operator: Exists
- effect: NoSchedule
operator: Exists
volumes: volumes:
- hostPath: - hostPath:
path: /lib/modules path: /lib/modules

View File

@ -841,8 +841,8 @@ func (b *BootstrapChannelBuilder) buildAddons() *channelsapi.Addons {
if b.Cluster.Spec.Networking.Kuberouter != nil { if b.Cluster.Spec.Networking.Kuberouter != nil {
key := "networking.kuberouter" key := "networking.kuberouter"
versions := map[string]string{ versions := map[string]string{
"k8s-1.6": "0.3.1-kops.3", "k8s-1.6": "0.3.1-kops.4",
"k8s-1.12": "1.0.0-kops.1", "k8s-1.12": "1.0.0-kops.2",
} }
{ {