Update weave to 2.7.0 + minor update to Cilium (#6501)

This commit is contained in:
Florian Ruynat 2020-08-20 13:33:36 +02:00 committed by GitHub
parent a42d811420
commit 98f7485303
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 6 deletions

View file

@ -124,14 +124,14 @@ Note: Upstart/SysV init based OS types are not supported.
- [cni-plugins](https://github.com/containernetworking/plugins) v0.8.6 - [cni-plugins](https://github.com/containernetworking/plugins) v0.8.6
- [calico](https://github.com/projectcalico/calico) v3.15.1 - [calico](https://github.com/projectcalico/calico) v3.15.1
- [canal](https://github.com/projectcalico/canal) (given calico/flannel versions) - [canal](https://github.com/projectcalico/canal) (given calico/flannel versions)
- [cilium](https://github.com/cilium/cilium) v1.8.1 - [cilium](https://github.com/cilium/cilium) v1.8.2
- [contiv](https://github.com/contiv/install) v1.2.1 - [contiv](https://github.com/contiv/install) v1.2.1
- [flanneld](https://github.com/coreos/flannel) v0.12.0 - [flanneld](https://github.com/coreos/flannel) v0.12.0
- [kube-ovn](https://github.com/alauda/kube-ovn) v1.3.0 - [kube-ovn](https://github.com/alauda/kube-ovn) v1.3.0
- [kube-router](https://github.com/cloudnativelabs/kube-router) v1.0.1 - [kube-router](https://github.com/cloudnativelabs/kube-router) v1.0.1
- [multus](https://github.com/intel/multus-cni) v3.6.0 - [multus](https://github.com/intel/multus-cni) v3.6.0
- [ovn4nfv](https://github.com/opnfv/ovn4nfv-k8s-plugin) v1.0.0 - [ovn4nfv](https://github.com/opnfv/ovn4nfv-k8s-plugin) v1.0.0
- [weave](https://github.com/weaveworks/weave) v2.6.5 - [weave](https://github.com/weaveworks/weave) v2.7.0
- Application - Application
- [ambassador](https://github.com/datawire/ambassador): v1.5 - [ambassador](https://github.com/datawire/ambassador): v1.5
- [cephfs-provisioner](https://github.com/kubernetes-incubator/external-storage) v2.1.0-k8s1.11 - [cephfs-provisioner](https://github.com/kubernetes-incubator/external-storage) v2.1.0-k8s1.11

View file

@ -76,10 +76,10 @@ flannel_version: "v0.12.0"
cni_version: "v0.8.6" cni_version: "v0.8.6"
weave_version: 2.6.5 weave_version: 2.7.0
pod_infra_version: "3.2" pod_infra_version: "3.2"
contiv_version: 1.2.1 contiv_version: 1.2.1
cilium_version: "v1.8.1" cilium_version: "v1.8.2"
kube_ovn_version: "v1.3.0" kube_ovn_version: "v1.3.0"
kube_router_version: "v1.0.1" kube_router_version: "v1.0.1"
multus_version: "v3.6" multus_version: "v3.6"

View file

@ -181,7 +181,7 @@ items:
port: 6784 port: 6784
resources: resources:
requests: requests:
cpu: 10m cpu: 50m
securityContext: securityContext:
privileged: true privileged: true
volumeMounts: volumeMounts:
@ -199,6 +199,7 @@ items:
mountPath: /lib/modules mountPath: /lib/modules
- name: xtables-lock - name: xtables-lock
mountPath: /run/xtables.lock mountPath: /run/xtables.lock
readOnly: false
- name: weave-npc - name: weave-npc
env: env:
- name: HOSTNAME - name: HOSTNAME
@ -210,12 +211,13 @@ items:
imagePullPolicy: {{ k8s_image_pull_policy }} imagePullPolicy: {{ k8s_image_pull_policy }}
resources: resources:
requests: requests:
cpu: 10m cpu: 50m
securityContext: securityContext:
privileged: true privileged: true
volumeMounts: volumeMounts:
- name: xtables-lock - name: xtables-lock
mountPath: /run/xtables.lock mountPath: /run/xtables.lock
readOnly: false
hostNetwork: true hostNetwork: true
dnsPolicy: ClusterFirstWithHostNet dnsPolicy: ClusterFirstWithHostNet
hostPID: true hostPID: true