Minor update to cni-plugins and kube-router

This commit is contained in:
Florian Ruynat 2021-04-18 04:00:46 +02:00 committed by Kubernetes Prow Robot
parent fce705a92b
commit b32d25942d
5 changed files with 19 additions and 20 deletions

View file

@ -140,7 +140,7 @@ Note: Upstart/SysV init based OS types are not supported.
- [cilium](https://github.com/cilium/cilium) v1.8.8 - [cilium](https://github.com/cilium/cilium) v1.8.8
- [flanneld](https://github.com/coreos/flannel) v0.13.0 - [flanneld](https://github.com/coreos/flannel) v0.13.0
- [kube-ovn](https://github.com/alauda/kube-ovn) v1.6.2 - [kube-ovn](https://github.com/alauda/kube-ovn) v1.6.2
- [kube-router](https://github.com/cloudnativelabs/kube-router) v1.2.0 - [kube-router](https://github.com/cloudnativelabs/kube-router) v1.2.2
- [multus](https://github.com/intel/multus-cni) v3.7.0 - [multus](https://github.com/intel/multus-cni) v3.7.0
- [ovn4nfv](https://github.com/opnfv/ovn4nfv-k8s-plugin) v1.1.0 - [ovn4nfv](https://github.com/opnfv/ovn4nfv-k8s-plugin) v1.1.0
- [weave](https://github.com/weaveworks/weave) v2.8.1 - [weave](https://github.com/weaveworks/weave) v2.8.1

View file

@ -74,12 +74,12 @@ calico_typha_version: "{{ calico_version }}"
typha_enabled: false typha_enabled: false
flannel_version: "v0.13.0" flannel_version: "v0.13.0"
cni_version: "v0.9.0" cni_version: "v0.9.1"
weave_version: 2.8.1 weave_version: 2.8.1
pod_infra_version: "3.3" pod_infra_version: "3.3"
cilium_version: "v1.8.8" cilium_version: "v1.8.8"
kube_ovn_version: "v1.6.2" kube_ovn_version: "v1.6.2"
kube_router_version: "v1.2.0" kube_router_version: "v1.2.2"
multus_version: "v3.7" multus_version: "v3.7"
ovn4nfv_ovn_image_version: "v1.0.0" ovn4nfv_ovn_image_version: "v1.0.0"
ovn4nfv_k8s_plugin_image_version: "v1.1.0" ovn4nfv_k8s_plugin_image_version: "v1.1.0"
@ -313,9 +313,9 @@ etcd_binary_checksums:
arm64: 1934ebb9f9f6501f706111b78e5e321a7ff8d7792d3d96a76e2d01874e42a300 arm64: 1934ebb9f9f6501f706111b78e5e321a7ff8d7792d3d96a76e2d01874e42a300
amd64: 2ac029e47bab752dacdb7b30032f230f49e2f457cbc32e8f555c2210bb5ff107 amd64: 2ac029e47bab752dacdb7b30032f230f49e2f457cbc32e8f555c2210bb5ff107
cni_binary_checksums: cni_binary_checksums:
arm: 11e6f62c6e67cb17b98f91e30718a057c6caf88d02e8f6ab3f3e0e8f642e0e26 arm: 909e800d01cc61ffa26f2629e4a202a58d727e6ccaabd0310ef18d2b1e00943c
arm64: 49bdf1d3c852a831964aea8c9d12340b36107ee756d8328403905ff599abc6f5 arm64: ef17764ffd6cdcb16d76401bac1db6acc050c9b088f1be5efa0e094ea3b01df0
amd64: 58a58d389895ba9f9bbd3ef330f186c0bb7484136d0bfb9b50152eed55d9ec24 amd64: 962100bbc4baeaaa5748cdbfce941f756b1531c2eadb290129401498bfac21e7
calicoctl_binary_checksums: calicoctl_binary_checksums:
arm: arm:
v3.18.1: 0 v3.18.1: 0

View file

@ -9,9 +9,6 @@ spec:
served: true served: true
storage: true storage: true
additionalPrinterColumns: additionalPrinterColumns:
- name: Provider
type: string
jsonPath: .spec.provider
- name: IP - name: IP
type: string type: string
jsonPath: .spec.ipAddress jsonPath: .spec.ipAddress

View file

@ -26,7 +26,6 @@ spec:
spec: spec:
tolerations: tolerations:
- operator: Exists - operator: Exists
effect: NoSchedule
affinity: affinity:
podAntiAffinity: podAntiAffinity:
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
@ -47,7 +46,7 @@ spec:
- --default-cidr={{ kube_pods_subnet }} - --default-cidr={{ kube_pods_subnet }}
env: env:
- name: ENABLE_SSL - name: ENABLE_SSL
value: "{{ enable_ssl }}" value: "{{ enable_ssl | lower }}"
- name: POD_NAME - name: POD_NAME
valueFrom: valueFrom:
fieldRef: fieldRef:
@ -138,15 +137,15 @@ spec:
- bash - bash
- /kube-ovn/start-cniserver.sh - /kube-ovn/start-cniserver.sh
args: args:
- --enable-mirror={{ traffic_mirror }} - --enable-mirror={{ traffic_mirror | lower }}
- --encap-checksum={{ encap_checksum }} - --encap-checksum={{ encap_checksum | lower }}
- --service-cluster-ip-range={{ kube_service_addresses }} - --service-cluster-ip-range={{ kube_service_addresses }}
securityContext: securityContext:
runAsUser: 0 runAsUser: 0
privileged: true privileged: true
env: env:
- name: ENABLE_SSL - name: ENABLE_SSL
value: "{{ enable_ssl }}" value: "{{ enable_ssl | lower }}"
- name: POD_IP - name: POD_IP
valueFrom: valueFrom:
fieldRef: fieldRef:
@ -156,6 +155,8 @@ spec:
fieldRef: fieldRef:
fieldPath: spec.nodeName fieldPath: spec.nodeName
volumeMounts: volumeMounts:
- mountPath: /etc/openvswitch
name: systemid
- mountPath: /etc/cni/net.d - mountPath: /etc/cni/net.d
name: cni-conf name: cni-conf
- mountPath: /run/openvswitch - mountPath: /run/openvswitch
@ -188,6 +189,9 @@ spec:
nodeSelector: nodeSelector:
kubernetes.io/os: "linux" kubernetes.io/os: "linux"
volumes: volumes:
- name: systemid
hostPath:
path: /etc/origin/openvswitch
- name: host-run-ovs - name: host-run-ovs
hostPath: hostPath:
path: /run/openvswitch path: /run/openvswitch
@ -240,7 +244,7 @@ spec:
privileged: false privileged: false
env: env:
- name: ENABLE_SSL - name: ENABLE_SSL
value: "{{ enable_ssl }}" value: "{{ enable_ssl | lower }}"
- name: POD_IP - name: POD_IP
valueFrom: valueFrom:
fieldRef: fieldRef:

View file

@ -215,7 +215,6 @@ spec:
spec: spec:
tolerations: tolerations:
- operator: Exists - operator: Exists
effect: NoSchedule
affinity: affinity:
podAntiAffinity: podAntiAffinity:
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
@ -237,7 +236,7 @@ spec:
add: ["SYS_NICE"] add: ["SYS_NICE"]
env: env:
- name: ENABLE_SSL - name: ENABLE_SSL
value: "{{ enable_ssl }}" value: "{{ enable_ssl | lower }}"
- name: POD_IP - name: POD_IP
valueFrom: valueFrom:
fieldRef: fieldRef:
@ -297,7 +296,7 @@ spec:
command: ["/kube-ovn/start-ovn-monitor.sh"] command: ["/kube-ovn/start-ovn-monitor.sh"]
env: env:
- name: ENABLE_SSL - name: ENABLE_SSL
value: "{{ enable_ssl }}" value: "{{ enable_ssl | lower }}"
- name: POD_IP - name: POD_IP
valueFrom: valueFrom:
fieldRef: fieldRef:
@ -401,7 +400,6 @@ spec:
spec: spec:
tolerations: tolerations:
- operator: Exists - operator: Exists
effect: NoSchedule
priorityClassName: system-cluster-critical priorityClassName: system-cluster-critical
serviceAccountName: ovn serviceAccountName: ovn
hostNetwork: true hostNetwork: true
@ -416,7 +414,7 @@ spec:
privileged: true privileged: true
env: env:
- name: ENABLE_SSL - name: ENABLE_SSL
value: "{{ enable_ssl }}" value: "{{ enable_ssl | lower }}"
- name: POD_IP - name: POD_IP
valueFrom: valueFrom:
fieldRef: fieldRef: