Skip to content

Commit

Permalink
fix: multus v4 multus binary install (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
chomatdam authored Oct 25, 2024
1 parent a479045 commit 3f33b96
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
7 changes: 7 additions & 0 deletions gitops/components/multus/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@ patches:
kind: DaemonSet
name: kube-multus-ds
path: ./overlays/multus-daemonset-readiness.yaml
# https://github.com/k8snetworkplumbingwg/multus-cni/issues/1221
- path: ./overlays/temporary-fix-install-multus-binary.yaml
target:
group: apps
version: v1
kind: DaemonSet
name: kube-multus-ds
- patch: |-
apiVersion: v1
kind: ConfigMap
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
apiVersion: apps/v1
kind: DaemonSet
metadata:
name: kube-multus-ds
spec:
template:
spec:
initContainers:
- name: install-multus-binary
image: ghcr.io/k8snetworkplumbingwg/multus-cni:snapshot-thick
command:
- "cp"
- "-f"
- "/usr/src/multus-cni/bin/multus-shim"
- "/host/opt/cni/bin/multus-shim"

0 comments on commit 3f33b96

Please sign in to comment.