update weave-net to 2.0.5 version (#1877)
This commit is contained in:
parent
5f39efcdfd
commit
5e558c361b
2 changed files with 9 additions and 3 deletions
|
@ -34,9 +34,9 @@ calico_ctl_version: "v1.5.0"
|
||||||
calico_cni_version: "v1.10.0"
|
calico_cni_version: "v1.10.0"
|
||||||
calico_policy_version: "v0.7.0"
|
calico_policy_version: "v0.7.0"
|
||||||
calico_rr_version: "v0.4.0"
|
calico_rr_version: "v0.4.0"
|
||||||
weave_version: 2.0.4
|
|
||||||
flannel_version: "v0.9.0"
|
flannel_version: "v0.9.0"
|
||||||
flannel_cni_version: "v0.3.0"
|
flannel_cni_version: "v0.3.0"
|
||||||
|
weave_version: 2.0.5
|
||||||
pod_infra_version: 3.0
|
pod_infra_version: 3.0
|
||||||
|
|
||||||
# Download URLs
|
# Download URLs
|
||||||
|
|
|
@ -9,7 +9,7 @@ items:
|
||||||
labels:
|
labels:
|
||||||
name: weave-net
|
name: weave-net
|
||||||
namespace: {{ system_namespace }}
|
namespace: {{ system_namespace }}
|
||||||
- apiVersion: rbac.authorization.k8s.io/v1beta1
|
- apiVersion: rbac.authorization.k8s.io/v1
|
||||||
kind: ClusterRole
|
kind: ClusterRole
|
||||||
metadata:
|
metadata:
|
||||||
name: weave-net
|
name: weave-net
|
||||||
|
@ -34,7 +34,7 @@ items:
|
||||||
- get
|
- get
|
||||||
- list
|
- list
|
||||||
- watch
|
- watch
|
||||||
- apiVersion: rbac.authorization.k8s.io/v1beta1
|
- apiVersion: rbac.authorization.k8s.io/v1
|
||||||
kind: ClusterRoleBinding
|
kind: ClusterRoleBinding
|
||||||
metadata:
|
metadata:
|
||||||
name: weave-net
|
name: weave-net
|
||||||
|
@ -114,6 +114,9 @@ items:
|
||||||
mountPath: /host/var/lib/dbus
|
mountPath: /host/var/lib/dbus
|
||||||
- name: lib-modules
|
- name: lib-modules
|
||||||
mountPath: /lib/modules
|
mountPath: /lib/modules
|
||||||
|
- name: xtables-lock
|
||||||
|
mountPath: /run/xtables.lock
|
||||||
|
readOnly: false
|
||||||
- name: weave-npc
|
- name: weave-npc
|
||||||
image: {{ weave_npc_image_repo }}:{{ weave_npc_image_tag }}
|
image: {{ weave_npc_image_repo }}:{{ weave_npc_image_tag }}
|
||||||
imagePullPolicy: Always
|
imagePullPolicy: Always
|
||||||
|
@ -154,6 +157,9 @@ items:
|
||||||
- name: lib-modules
|
- name: lib-modules
|
||||||
hostPath:
|
hostPath:
|
||||||
path: /lib/modules
|
path: /lib/modules
|
||||||
|
- name: xtables-lock
|
||||||
|
hostPath:
|
||||||
|
path: /run/xtables.lock
|
||||||
updateStrategy:
|
updateStrategy:
|
||||||
rollingUpdate:
|
rollingUpdate:
|
||||||
maxUnavailable: {{ serial | default('20%') }}
|
maxUnavailable: {{ serial | default('20%') }}
|
||||||
|
|
Loading…
Reference in a new issue