mirror of
https://github.com/k8snetworkplumbingwg/multus-cni.git
synced 2025-07-18 17:52:37 +00:00
Add ARM64 to images
This PR takes the existing ARM64v8 build and creates Daemonsets in the install images to deploy it for ARM based K8s clusters. Fixes #554 Signed-off-by: Shane Utt <shaneutt@linux.com>
This commit is contained in:
parent
2a01aec396
commit
8cc60f7dd8
2
.github/workflows/go-build-arm64.yml
vendored
2
.github/workflows/go-build-arm64.yml
vendored
@ -1,4 +1,4 @@
|
|||||||
name: Go-build-ppc64le
|
name: Go-build-arm64v8
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
|
@ -284,3 +284,72 @@ 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-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
|
||||||
|
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
|
||||||
|
@ -272,3 +272,69 @@ 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-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
|
||||||
|
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