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_dpdk_version: "19.11-{{ kube_ovn_version }}"
|
||||
kube_router_version: "v1.5.0"
|
||||
multus_version: "v3.8"
|
||||
multus_version: "v3.8-{{ image_arch }}"
|
||||
helm_version: "v3.8.2"
|
||||
nerdctl_version: "0.20.0"
|
||||
krew_version: "v0.4.2"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
kind: DaemonSet
|
||||
apiVersion: apps/v1
|
||||
metadata:
|
||||
name: kube-multus-ds-amd64
|
||||
name: kube-multus-ds-{{ image_arch }}
|
||||
namespace: kube-system
|
||||
labels:
|
||||
tier: node
|
||||
|
@ -21,7 +21,7 @@ spec:
|
|||
hostNetwork: true
|
||||
dnsPolicy: ClusterFirstWithHostNet
|
||||
nodeSelector:
|
||||
kubernetes.io/arch: amd64
|
||||
kubernetes.io/arch: {{ image_arch }}
|
||||
tolerations:
|
||||
- operator: Exists
|
||||
serviceAccountName: multus
|
||||
|
|
Loading…
Reference in a new issue