support multus multi-architecture installation (#9012)
Signed-off-by: cyclinder qifeng.guo@daocloud.io
This commit is contained in:
parent
4a92b7221a
commit
c3c9a42502
2 changed files with 3 additions and 3 deletions
|
@ -114,7 +114,7 @@ cilium_version: "v1.11.3"
|
||||||
kube_ovn_version: "v1.9.2"
|
kube_ovn_version: "v1.9.2"
|
||||||
kube_ovn_dpdk_version: "19.11-{{ kube_ovn_version }}"
|
kube_ovn_dpdk_version: "19.11-{{ kube_ovn_version }}"
|
||||||
kube_router_version: "v1.5.0"
|
kube_router_version: "v1.5.0"
|
||||||
multus_version: "v3.8"
|
multus_version: "v3.8-{{ image_arch }}"
|
||||||
helm_version: "v3.8.2"
|
helm_version: "v3.8.2"
|
||||||
nerdctl_version: "0.20.0"
|
nerdctl_version: "0.20.0"
|
||||||
krew_version: "v0.4.2"
|
krew_version: "v0.4.2"
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
kind: DaemonSet
|
kind: DaemonSet
|
||||||
apiVersion: apps/v1
|
apiVersion: apps/v1
|
||||||
metadata:
|
metadata:
|
||||||
name: kube-multus-ds-amd64
|
name: kube-multus-ds-{{ image_arch }}
|
||||||
namespace: kube-system
|
namespace: kube-system
|
||||||
labels:
|
labels:
|
||||||
tier: node
|
tier: node
|
||||||
|
@ -21,7 +21,7 @@ spec:
|
||||||
hostNetwork: true
|
hostNetwork: true
|
||||||
dnsPolicy: ClusterFirstWithHostNet
|
dnsPolicy: ClusterFirstWithHostNet
|
||||||
nodeSelector:
|
nodeSelector:
|
||||||
kubernetes.io/arch: amd64
|
kubernetes.io/arch: {{ image_arch }}
|
||||||
tolerations:
|
tolerations:
|
||||||
- operator: Exists
|
- operator: Exists
|
||||||
serviceAccountName: multus
|
serviceAccountName: multus
|
||||||
|
|
Loading…
Reference in a new issue