mirror of
https://github.com/k8snetworkplumbingwg/multus-cni.git
synced 2025-07-12 15:08:03 +00:00
Change image url to ghcr.io
This commit is contained in:
parent
f6298a3a29
commit
784fecfa02
@ -143,7 +143,7 @@ data:
|
|||||||
apiVersion: apps/v1
|
apiVersion: apps/v1
|
||||||
kind: DaemonSet
|
kind: DaemonSet
|
||||||
metadata:
|
metadata:
|
||||||
name: kube-multus-ds-amd64
|
name: kube-multus-ds
|
||||||
namespace: kube-system
|
namespace: kube-system
|
||||||
labels:
|
labels:
|
||||||
tier: node
|
tier: node
|
||||||
@ -163,8 +163,6 @@ spec:
|
|||||||
name: multus
|
name: multus
|
||||||
spec:
|
spec:
|
||||||
hostNetwork: true
|
hostNetwork: true
|
||||||
nodeSelector:
|
|
||||||
kubernetes.io/arch: amd64
|
|
||||||
tolerations:
|
tolerations:
|
||||||
- operator: Exists
|
- operator: Exists
|
||||||
effect: NoSchedule
|
effect: NoSchedule
|
||||||
@ -172,7 +170,7 @@ spec:
|
|||||||
containers:
|
containers:
|
||||||
- name: kube-multus
|
- name: kube-multus
|
||||||
# crio support requires multus:latest for now. support 3.3 or later.
|
# crio support requires multus:latest for now. support 3.3 or later.
|
||||||
image: docker.io/nfvpe/multus:stable
|
image: ghcr.io/k8snetworkplumbingwg/multus-cni:stable
|
||||||
command: ["/entrypoint.sh"]
|
command: ["/entrypoint.sh"]
|
||||||
args:
|
args:
|
||||||
- "--cni-version=0.3.1"
|
- "--cni-version=0.3.1"
|
||||||
@ -216,213 +214,3 @@ spec:
|
|||||||
items:
|
items:
|
||||||
- key: cni-conf.json
|
- key: cni-conf.json
|
||||||
path: 70-multus.conf
|
path: 70-multus.conf
|
||||||
---
|
|
||||||
apiVersion: apps/v1
|
|
||||||
kind: DaemonSet
|
|
||||||
metadata:
|
|
||||||
name: kube-multus-ds-ppc64le
|
|
||||||
namespace: kube-system
|
|
||||||
labels:
|
|
||||||
tier: node
|
|
||||||
app: multus
|
|
||||||
name: multus
|
|
||||||
spec:
|
|
||||||
selector:
|
|
||||||
matchLabels:
|
|
||||||
name: multus
|
|
||||||
updateStrategy:
|
|
||||||
type: RollingUpdate
|
|
||||||
template:
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
tier: node
|
|
||||||
app: multus
|
|
||||||
name: multus
|
|
||||||
spec:
|
|
||||||
hostNetwork: true
|
|
||||||
nodeSelector:
|
|
||||||
kubernetes.io/arch: ppc64le
|
|
||||||
tolerations:
|
|
||||||
- operator: Exists
|
|
||||||
effect: NoSchedule
|
|
||||||
serviceAccountName: multus
|
|
||||||
containers:
|
|
||||||
- name: kube-multus
|
|
||||||
# crio support requires multus:latest for now. support 3.3 or later.
|
|
||||||
image: docker.io/nfvpe/multus:stable-ppc64le
|
|
||||||
command: ["/entrypoint.sh"]
|
|
||||||
args:
|
|
||||||
- "--cni-version=0.3.1"
|
|
||||||
- "--cni-bin-dir=/host/usr/libexec/cni"
|
|
||||||
- "--multus-conf-file=auto"
|
|
||||||
- "--restart-crio=true"
|
|
||||||
resources:
|
|
||||||
requests:
|
|
||||||
cpu: "100m"
|
|
||||||
memory: "90Mi"
|
|
||||||
limits:
|
|
||||||
cpu: "100m"
|
|
||||||
memory: "90Mi"
|
|
||||||
securityContext:
|
|
||||||
privileged: true
|
|
||||||
volumeMounts:
|
|
||||||
- name: cni
|
|
||||||
mountPath: /host/etc/cni/net.d
|
|
||||||
- name: cnibin
|
|
||||||
mountPath: /host/usr/libexec/cni
|
|
||||||
- name: multus-cfg
|
|
||||||
mountPath: /tmp/multus-conf
|
|
||||||
terminationGracePeriodSeconds: 10
|
|
||||||
volumes:
|
|
||||||
- name: cni
|
|
||||||
hostPath:
|
|
||||||
path: /etc/cni/net.d
|
|
||||||
- name: cnibin
|
|
||||||
hostPath:
|
|
||||||
path: /usr/libexec/cni
|
|
||||||
- name: multus-cfg
|
|
||||||
configMap:
|
|
||||||
name: multus-cni-config
|
|
||||||
items:
|
|
||||||
- key: cni-conf.json
|
|
||||||
path: 70-multus.conf
|
|
||||||
---
|
|
||||||
apiVersion: apps/v1
|
|
||||||
kind: DaemonSet
|
|
||||||
metadata:
|
|
||||||
name: kube-multus-ds-arm64v8
|
|
||||||
namespace: kube-system
|
|
||||||
labels:
|
|
||||||
tier: node
|
|
||||||
app: multus
|
|
||||||
name: multus
|
|
||||||
spec:
|
|
||||||
selector:
|
|
||||||
matchLabels:
|
|
||||||
name: multus
|
|
||||||
updateStrategy:
|
|
||||||
type: RollingUpdate
|
|
||||||
template:
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
tier: node
|
|
||||||
app: multus
|
|
||||||
name: multus
|
|
||||||
spec:
|
|
||||||
hostNetwork: true
|
|
||||||
nodeSelector:
|
|
||||||
kubernetes.io/arch: arm64
|
|
||||||
tolerations:
|
|
||||||
- operator: Exists
|
|
||||||
effect: NoSchedule
|
|
||||||
serviceAccountName: multus
|
|
||||||
containers:
|
|
||||||
- name: kube-multus
|
|
||||||
# crio support requires multus:latest for now. support 3.3 or later.
|
|
||||||
image: docker.io/nfvpe/multus:stable-arm64v8
|
|
||||||
command: ["/entrypoint.sh"]
|
|
||||||
args:
|
|
||||||
- "--cni-version=0.3.1"
|
|
||||||
- "--cni-bin-dir=/host/usr/libexec/cni"
|
|
||||||
- "--multus-conf-file=auto"
|
|
||||||
- "--restart-crio=true"
|
|
||||||
resources:
|
|
||||||
requests:
|
|
||||||
cpu: "100m"
|
|
||||||
memory: "90Mi"
|
|
||||||
limits:
|
|
||||||
cpu: "100m"
|
|
||||||
memory: "90Mi"
|
|
||||||
securityContext:
|
|
||||||
privileged: true
|
|
||||||
volumeMounts:
|
|
||||||
- name: cni
|
|
||||||
mountPath: /host/etc/cni/net.d
|
|
||||||
- name: cnibin
|
|
||||||
mountPath: /host/usr/libexec/cni
|
|
||||||
- name: multus-cfg
|
|
||||||
mountPath: /tmp/multus-conf
|
|
||||||
terminationGracePeriodSeconds: 10
|
|
||||||
volumes:
|
|
||||||
- name: cni
|
|
||||||
hostPath:
|
|
||||||
path: /etc/cni/net.d
|
|
||||||
- name: cnibin
|
|
||||||
hostPath:
|
|
||||||
path: /usr/libexec/cni
|
|
||||||
- name: multus-cfg
|
|
||||||
configMap:
|
|
||||||
name: multus-cni-config
|
|
||||||
items:
|
|
||||||
- key: cni-conf.json
|
|
||||||
path: 70-multus.conf
|
|
||||||
---
|
|
||||||
apiVersion: apps/v1
|
|
||||||
kind: DaemonSet
|
|
||||||
metadata:
|
|
||||||
name: kube-multus-ds-s390x
|
|
||||||
namespace: kube-system
|
|
||||||
labels:
|
|
||||||
tier: node
|
|
||||||
app: multus
|
|
||||||
name: multus
|
|
||||||
spec:
|
|
||||||
selector:
|
|
||||||
matchLabels:
|
|
||||||
name: multus
|
|
||||||
updateStrategy:
|
|
||||||
type: RollingUpdate
|
|
||||||
template:
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
tier: node
|
|
||||||
app: multus
|
|
||||||
name: multus
|
|
||||||
spec:
|
|
||||||
hostNetwork: true
|
|
||||||
nodeSelector:
|
|
||||||
kubernetes.io/arch: s390x
|
|
||||||
tolerations:
|
|
||||||
- operator: Exists
|
|
||||||
effect: NoSchedule
|
|
||||||
serviceAccountName: multus
|
|
||||||
containers:
|
|
||||||
- name: kube-multus
|
|
||||||
# crio support requires multus:latest for now. support 3.3 or later.
|
|
||||||
image: docker.io/nfvpe/multus:stable-s390x
|
|
||||||
command: ["/entrypoint.sh"]
|
|
||||||
args:
|
|
||||||
- "--cni-version=0.3.1"
|
|
||||||
- "--cni-bin-dir=/host/usr/libexec/cni"
|
|
||||||
- "--multus-conf-file=auto"
|
|
||||||
- "--restart-crio=true"
|
|
||||||
resources:
|
|
||||||
requests:
|
|
||||||
cpu: "100m"
|
|
||||||
memory: "90Mi"
|
|
||||||
limits:
|
|
||||||
cpu: "100m"
|
|
||||||
memory: "90Mi"
|
|
||||||
securityContext:
|
|
||||||
privileged: true
|
|
||||||
volumeMounts:
|
|
||||||
- name: cni
|
|
||||||
mountPath: /host/etc/cni/net.d
|
|
||||||
- name: cnibin
|
|
||||||
mountPath: /host/usr/libexec/cni
|
|
||||||
- name: multus-cfg
|
|
||||||
mountPath: /tmp/multus-conf
|
|
||||||
terminationGracePeriodSeconds: 10
|
|
||||||
volumes:
|
|
||||||
- name: cni
|
|
||||||
hostPath:
|
|
||||||
path: /etc/cni/net.d
|
|
||||||
- name: cnibin
|
|
||||||
hostPath:
|
|
||||||
path: /usr/libexec/cni
|
|
||||||
- name: multus-cfg
|
|
||||||
configMap:
|
|
||||||
name: multus-cni-config
|
|
||||||
items:
|
|
||||||
- key: cni-conf.json
|
|
||||||
path: 70-multus.conf
|
|
||||||
|
@ -116,7 +116,7 @@ data:
|
|||||||
apiVersion: apps/v1
|
apiVersion: apps/v1
|
||||||
kind: DaemonSet
|
kind: DaemonSet
|
||||||
metadata:
|
metadata:
|
||||||
name: kube-multus-ds-amd64
|
name: kube-multus-ds
|
||||||
namespace: kube-system
|
namespace: kube-system
|
||||||
labels:
|
labels:
|
||||||
tier: node
|
tier: node
|
||||||
@ -136,15 +136,13 @@ spec:
|
|||||||
name: multus
|
name: multus
|
||||||
spec:
|
spec:
|
||||||
hostNetwork: true
|
hostNetwork: true
|
||||||
nodeSelector:
|
|
||||||
kubernetes.io/arch: amd64
|
|
||||||
tolerations:
|
tolerations:
|
||||||
- operator: Exists
|
- operator: Exists
|
||||||
effect: NoSchedule
|
effect: NoSchedule
|
||||||
serviceAccountName: multus
|
serviceAccountName: multus
|
||||||
containers:
|
containers:
|
||||||
- name: kube-multus
|
- name: kube-multus
|
||||||
image: docker.io/nfvpe/multus:stable
|
image: ghcr.io/k8snetworkplumbingwg/multus-cni:stable
|
||||||
command: ["/entrypoint.sh"]
|
command: ["/entrypoint.sh"]
|
||||||
args:
|
args:
|
||||||
- "--multus-conf-file=auto"
|
- "--multus-conf-file=auto"
|
||||||
@ -179,71 +177,3 @@ spec:
|
|||||||
items:
|
items:
|
||||||
- key: cni-conf.json
|
- key: cni-conf.json
|
||||||
path: 70-multus.conf
|
path: 70-multus.conf
|
||||||
---
|
|
||||||
apiVersion: apps/v1
|
|
||||||
kind: DaemonSet
|
|
||||||
metadata:
|
|
||||||
name: kube-multus-ds-ppc64le
|
|
||||||
namespace: kube-system
|
|
||||||
labels:
|
|
||||||
tier: node
|
|
||||||
app: multus
|
|
||||||
name: multus
|
|
||||||
spec:
|
|
||||||
selector:
|
|
||||||
matchLabels:
|
|
||||||
name: multus
|
|
||||||
updateStrategy:
|
|
||||||
type: RollingUpdate
|
|
||||||
template:
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
tier: node
|
|
||||||
app: multus
|
|
||||||
name: multus
|
|
||||||
spec:
|
|
||||||
hostNetwork: true
|
|
||||||
nodeSelector:
|
|
||||||
kubernetes.io/arch: ppc64le
|
|
||||||
tolerations:
|
|
||||||
- operator: Exists
|
|
||||||
effect: NoSchedule
|
|
||||||
serviceAccountName: multus
|
|
||||||
containers:
|
|
||||||
- name: kube-multus
|
|
||||||
# ppc64le support requires multus:latest for now. support 3.3 or later.
|
|
||||||
image: docker.io/nfvpe/multus:stable-ppc64le
|
|
||||||
command: ["/entrypoint.sh"]
|
|
||||||
args:
|
|
||||||
- "--multus-conf-file=auto"
|
|
||||||
- "--cni-version=0.3.1"
|
|
||||||
- "--cni-bin-dir=/host/home/kubernetes/bin"
|
|
||||||
resources:
|
|
||||||
requests:
|
|
||||||
cpu: "100m"
|
|
||||||
memory: "90Mi"
|
|
||||||
limits:
|
|
||||||
cpu: "100m"
|
|
||||||
memory: "90Mi"
|
|
||||||
securityContext:
|
|
||||||
privileged: true
|
|
||||||
volumeMounts:
|
|
||||||
- name: cni
|
|
||||||
mountPath: /host/etc/cni/net.d
|
|
||||||
- name: cnibin
|
|
||||||
mountPath: /host/home/kubernetes/bin
|
|
||||||
- name: multus-cfg
|
|
||||||
mountPath: /tmp/multus-conf
|
|
||||||
volumes:
|
|
||||||
- name: cni
|
|
||||||
hostPath:
|
|
||||||
path: /etc/cni/net.d
|
|
||||||
- name: cnibin
|
|
||||||
hostPath:
|
|
||||||
path: /home/kubernetes/bin
|
|
||||||
- name: multus-cfg
|
|
||||||
configMap:
|
|
||||||
name: multus-cni-config
|
|
||||||
items:
|
|
||||||
- key: cni-conf.json
|
|
||||||
path: 70-multus.conf
|
|
||||||
|
@ -143,7 +143,7 @@ data:
|
|||||||
apiVersion: apps/v1
|
apiVersion: apps/v1
|
||||||
kind: DaemonSet
|
kind: DaemonSet
|
||||||
metadata:
|
metadata:
|
||||||
name: kube-multus-ds-amd64
|
name: kube-multus-ds
|
||||||
namespace: kube-system
|
namespace: kube-system
|
||||||
labels:
|
labels:
|
||||||
tier: node
|
tier: node
|
||||||
@ -163,15 +163,13 @@ spec:
|
|||||||
name: multus
|
name: multus
|
||||||
spec:
|
spec:
|
||||||
hostNetwork: true
|
hostNetwork: true
|
||||||
nodeSelector:
|
|
||||||
kubernetes.io/arch: amd64
|
|
||||||
tolerations:
|
tolerations:
|
||||||
- operator: Exists
|
- operator: Exists
|
||||||
effect: NoSchedule
|
effect: NoSchedule
|
||||||
serviceAccountName: multus
|
serviceAccountName: multus
|
||||||
containers:
|
containers:
|
||||||
- name: kube-multus
|
- name: kube-multus
|
||||||
image: docker.io/nfvpe/multus:stable
|
image: ghcr.io/k8snetworkplumbingwg/multus-cni:stable
|
||||||
command: ["/entrypoint.sh"]
|
command: ["/entrypoint.sh"]
|
||||||
args:
|
args:
|
||||||
- "--multus-conf-file=auto"
|
- "--multus-conf-file=auto"
|
||||||
@ -206,205 +204,3 @@ spec:
|
|||||||
items:
|
items:
|
||||||
- key: cni-conf.json
|
- key: cni-conf.json
|
||||||
path: 70-multus.conf
|
path: 70-multus.conf
|
||||||
---
|
|
||||||
apiVersion: apps/v1
|
|
||||||
kind: DaemonSet
|
|
||||||
metadata:
|
|
||||||
name: kube-multus-ds-ppc64le
|
|
||||||
namespace: kube-system
|
|
||||||
labels:
|
|
||||||
tier: node
|
|
||||||
app: multus
|
|
||||||
name: multus
|
|
||||||
spec:
|
|
||||||
selector:
|
|
||||||
matchLabels:
|
|
||||||
name: multus
|
|
||||||
updateStrategy:
|
|
||||||
type: RollingUpdate
|
|
||||||
template:
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
tier: node
|
|
||||||
app: multus
|
|
||||||
name: multus
|
|
||||||
spec:
|
|
||||||
hostNetwork: true
|
|
||||||
nodeSelector:
|
|
||||||
kubernetes.io/arch: ppc64le
|
|
||||||
tolerations:
|
|
||||||
- operator: Exists
|
|
||||||
effect: NoSchedule
|
|
||||||
serviceAccountName: multus
|
|
||||||
containers:
|
|
||||||
- name: kube-multus
|
|
||||||
# ppc64le support requires multus:latest for now. support 3.3 or later.
|
|
||||||
image: docker.io/nfvpe/multus:stable-ppc64le
|
|
||||||
command: ["/entrypoint.sh"]
|
|
||||||
args:
|
|
||||||
- "--multus-conf-file=auto"
|
|
||||||
- "--cni-version=0.3.1"
|
|
||||||
resources:
|
|
||||||
requests:
|
|
||||||
cpu: "100m"
|
|
||||||
memory: "90Mi"
|
|
||||||
limits:
|
|
||||||
cpu: "100m"
|
|
||||||
memory: "90Mi"
|
|
||||||
securityContext:
|
|
||||||
privileged: true
|
|
||||||
volumeMounts:
|
|
||||||
- name: cni
|
|
||||||
mountPath: /host/etc/cni/net.d
|
|
||||||
- name: cnibin
|
|
||||||
mountPath: /host/opt/cni/bin
|
|
||||||
- name: multus-cfg
|
|
||||||
mountPath: /tmp/multus-conf
|
|
||||||
terminationGracePeriodSeconds: 10
|
|
||||||
volumes:
|
|
||||||
- name: cni
|
|
||||||
hostPath:
|
|
||||||
path: /etc/cni/net.d
|
|
||||||
- name: cnibin
|
|
||||||
hostPath:
|
|
||||||
path: /opt/cni/bin
|
|
||||||
- name: multus-cfg
|
|
||||||
configMap:
|
|
||||||
name: multus-cni-config
|
|
||||||
items:
|
|
||||||
- key: cni-conf.json
|
|
||||||
path: 70-multus.conf
|
|
||||||
---
|
|
||||||
apiVersion: apps/v1
|
|
||||||
kind: DaemonSet
|
|
||||||
metadata:
|
|
||||||
name: kube-multus-ds-arm64v8
|
|
||||||
namespace: kube-system
|
|
||||||
labels:
|
|
||||||
tier: node
|
|
||||||
app: multus
|
|
||||||
name: multus
|
|
||||||
spec:
|
|
||||||
selector:
|
|
||||||
matchLabels:
|
|
||||||
name: multus
|
|
||||||
updateStrategy:
|
|
||||||
type: RollingUpdate
|
|
||||||
template:
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
tier: node
|
|
||||||
app: multus
|
|
||||||
name: multus
|
|
||||||
spec:
|
|
||||||
hostNetwork: true
|
|
||||||
nodeSelector:
|
|
||||||
kubernetes.io/arch: arm64
|
|
||||||
tolerations:
|
|
||||||
- operator: Exists
|
|
||||||
effect: NoSchedule
|
|
||||||
serviceAccountName: multus
|
|
||||||
containers:
|
|
||||||
- name: kube-multus
|
|
||||||
image: docker.io/nfvpe/multus:stable-arm64v8
|
|
||||||
command: ["/entrypoint.sh"]
|
|
||||||
args:
|
|
||||||
- "--multus-conf-file=auto"
|
|
||||||
- "--cni-version=0.3.1"
|
|
||||||
resources:
|
|
||||||
requests:
|
|
||||||
cpu: "100m"
|
|
||||||
memory: "90Mi"
|
|
||||||
limits:
|
|
||||||
cpu: "100m"
|
|
||||||
memory: "90Mi"
|
|
||||||
securityContext:
|
|
||||||
privileged: true
|
|
||||||
volumeMounts:
|
|
||||||
- name: cni
|
|
||||||
mountPath: /host/etc/cni/net.d
|
|
||||||
- name: cnibin
|
|
||||||
mountPath: /host/opt/cni/bin
|
|
||||||
- name: multus-cfg
|
|
||||||
mountPath: /tmp/multus-conf
|
|
||||||
terminationGracePeriodSeconds: 10
|
|
||||||
volumes:
|
|
||||||
- name: cni
|
|
||||||
hostPath:
|
|
||||||
path: /etc/cni/net.d
|
|
||||||
- name: cnibin
|
|
||||||
hostPath:
|
|
||||||
path: /opt/cni/bin
|
|
||||||
- name: multus-cfg
|
|
||||||
configMap:
|
|
||||||
name: multus-cni-config
|
|
||||||
items:
|
|
||||||
- key: cni-conf.json
|
|
||||||
path: 70-multus.conf
|
|
||||||
---
|
|
||||||
apiVersion: apps/v1
|
|
||||||
kind: DaemonSet
|
|
||||||
metadata:
|
|
||||||
name: kube-multus-ds-s390x
|
|
||||||
namespace: kube-system
|
|
||||||
labels:
|
|
||||||
tier: node
|
|
||||||
app: multus
|
|
||||||
name: multus
|
|
||||||
spec:
|
|
||||||
selector:
|
|
||||||
matchLabels:
|
|
||||||
name: multus
|
|
||||||
updateStrategy:
|
|
||||||
type: RollingUpdate
|
|
||||||
template:
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
tier: node
|
|
||||||
app: multus
|
|
||||||
name: multus
|
|
||||||
spec:
|
|
||||||
hostNetwork: true
|
|
||||||
nodeSelector:
|
|
||||||
kubernetes.io/arch: s390x
|
|
||||||
tolerations:
|
|
||||||
- operator: Exists
|
|
||||||
effect: NoSchedule
|
|
||||||
serviceAccountName: multus
|
|
||||||
containers:
|
|
||||||
- name: kube-multus
|
|
||||||
image: docker.io/nfvpe/multus:stable-s390x
|
|
||||||
command: ["/entrypoint.sh"]
|
|
||||||
args:
|
|
||||||
- "--multus-conf-file=auto"
|
|
||||||
- "--cni-version=0.3.1"
|
|
||||||
resources:
|
|
||||||
requests:
|
|
||||||
cpu: "100m"
|
|
||||||
memory: "90Mi"
|
|
||||||
limits:
|
|
||||||
cpu: "100m"
|
|
||||||
memory: "90Mi"
|
|
||||||
securityContext:
|
|
||||||
privileged: true
|
|
||||||
volumeMounts:
|
|
||||||
- name: cni
|
|
||||||
mountPath: /host/etc/cni/net.d
|
|
||||||
- name: cnibin
|
|
||||||
mountPath: /host/opt/cni/bin
|
|
||||||
- name: multus-cfg
|
|
||||||
mountPath: /tmp/multus-conf
|
|
||||||
terminationGracePeriodSeconds: 10
|
|
||||||
volumes:
|
|
||||||
- name: cni
|
|
||||||
hostPath:
|
|
||||||
path: /etc/cni/net.d
|
|
||||||
- name: cnibin
|
|
||||||
hostPath:
|
|
||||||
path: /opt/cni/bin
|
|
||||||
- name: multus-cfg
|
|
||||||
configMap:
|
|
||||||
name: multus-cni-config
|
|
||||||
items:
|
|
||||||
- key: cni-conf.json
|
|
||||||
path: 70-multus.conf
|
|
||||||
|
Loading…
Reference in New Issue
Block a user