Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jan 18, 2026

This PR contains the following updates:

Package Update Change
multus (source) major 6.0.47.0.0

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

angelnu/helm-charts (multus)

v7.0.0

Compare Source

Changelog:

Changed
  • BREAKING: Updated multus container and controller names from main.main to multus.multus so in the values file controllers.main.containers.main.image needs to change to controllers.multus.containers.multus.image and controllers.main.initContainers.cni-installer.image needs to change to controllers.multus.initContainers.cni-installer.image.

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@mglants-bot
Copy link

mglants-bot bot commented Jan 18, 2026

--- kubernetes/berries/apps/kube-system/multus/app Kustomization: flux-system/cluster-apps-multus HelmRelease: kube-system/multus

+++ kubernetes/berries/apps/kube-system/multus/app Kustomization: flux-system/cluster-apps-multus HelmRelease: kube-system/multus

@@ -13,13 +13,13 @@

       chart: multus
       interval: 30m
       sourceRef:
         kind: HelmRepository
         name: angelnu-charts
         namespace: flux-system
-      version: 6.0.4
+      version: 7.0.0
   interval: 30m
   values:
     cni:
       image:
         repository: ghcr.io/mglants/cni-plugins
         tag: 1.5.1

@mglants-bot
Copy link

mglants-bot bot commented Jan 18, 2026

--- HelmRelease: kube-system/multus DaemonSet: kube-system/multus-main

+++ HelmRelease: kube-system/multus DaemonSet: kube-system/multus-main

@@ -1,129 +0,0 @@

----
-apiVersion: apps/v1
-kind: DaemonSet
-metadata:
-  name: multus-main
-  labels:
-    app.kubernetes.io/controller: main
-    app.kubernetes.io/instance: multus
-    app.kubernetes.io/managed-by: Helm
-    app.kubernetes.io/name: multus
-  namespace: kube-system
-spec:
-  revisionHistoryLimit: 3
-  selector:
-    matchLabels:
-      app.kubernetes.io/controller: main
-      app.kubernetes.io/name: multus
-      app.kubernetes.io/instance: multus
-  template:
-    metadata:
-      annotations:
-        checksum/configMaps: a8f91b9c0002d0f14fd3af7a58b42ab21fb014d847191fafe295412e727828a4
-      labels:
-        app.kubernetes.io/controller: main
-        app.kubernetes.io/instance: multus
-        app.kubernetes.io/name: multus
-    spec:
-      enableServiceLinks: false
-      serviceAccountName: multus
-      automountServiceAccountToken: true
-      priorityClassName: system-node-critical
-      hostIPC: false
-      hostNetwork: true
-      hostPID: true
-      dnsPolicy: ClusterFirstWithHostNet
-      tolerations:
-      - key: CriticalAddonsOnly
-        operator: Exists
-      initContainers:
-      - image: ghcr.io/angelnu/cni-plugins:1.9.0
-        imagePullPolicy: IfNotPresent
-        name: cni-installer
-        volumeMounts:
-        - mountPath: /host/opt/cni/bin
-          name: cnibin
-      - command:
-        - cp
-        - -f
-        - /usr/src/multus-cni/bin/multus-shim
-        - /host/opt/cni/bin/multus-shim
-        image: ghcr.io/k8snetworkplumbingwg/multus-cni:v4.2.3-thick
-        imagePullPolicy: IfNotPresent
-        name: multus-installer
-        resources:
-          requests:
-            cpu: 10m
-            memory: 15Mi
-        securityContext:
-          privileged: true
-        volumeMounts:
-        - mountPath: /host/opt/cni/bin
-          name: cnibin
-      containers:
-      - command:
-        - /usr/src/multus-cni/bin/multus-daemon
-        image: ghcr.io/k8snetworkplumbingwg/multus-cni:v4.2.3-thick
-        imagePullPolicy: IfNotPresent
-        name: main
-        securityContext:
-          capabilities:
-            add:
-            - NET_ADMIN
-            drop:
-            - ALL
-          privileged: true
-          readOnlyRootFilesystem: true
-        volumeMounts:
-        - mountPath: /etc/cni/net.d
-          name: cni
-        - mountPath: /opt/cni/bin
-          name: cnibin
-        - mountPath: /etc/cni/net.d/multus.d
-          name: config
-        - mountPath: /host/run
-          name: host-run
-        - mountPath: /run/k8s.cni.cncf.io
-          name: host-run-k8s-cni-cncf-io
-        - mountPath: /run/netns/
-          mountPropagation: HostToContainer
-          name: host-run-netns
-        - mountPath: /var/lib/cni/multus
-          name: host-var-lib-cni-multus
-        - mountPath: /var/lib/kubelet
-          name: host-var-lib-kubelet
-        - mountPath: /hostroot
-          mountPropagation: HostToContainer
-          name: hostroot
-      volumes:
-      - hostPath:
-          path: /etc/cni/net.d
-          type: Directory
-        name: cni
-      - hostPath:
-          path: /opt/cni/bin
-          type: Directory
-        name: cnibin
-      - configMap:
-          name: multus
-        name: config
-      - hostPath:
-          path: /run
-        name: host-run
-      - hostPath:
-          path: /run/k8s.cni.cncf.io
-        name: host-run-k8s-cni-cncf-io
-      - hostPath:
-          path: /var/run/netns
-        name: host-run-netns
-      - hostPath:
-          path: /var/lib/cni/multus
-        name: host-var-lib-cni-multus
-      - hostPath:
-          path: /var/lib/kubelet
-        name: host-var-lib-kubelet
-      - hostPath:
-          path: /
-          type: Directory
-        name: hostroot
-
--- HelmRelease: kube-system/multus DaemonSet: kube-system/multus

+++ HelmRelease: kube-system/multus DaemonSet: kube-system/multus

@@ -0,0 +1,129 @@

+---
+apiVersion: apps/v1
+kind: DaemonSet
+metadata:
+  name: multus
+  labels:
+    app.kubernetes.io/controller: multus
+    app.kubernetes.io/instance: multus
+    app.kubernetes.io/managed-by: Helm
+    app.kubernetes.io/name: multus
+  namespace: kube-system
+spec:
+  revisionHistoryLimit: 3
+  selector:
+    matchLabels:
+      app.kubernetes.io/controller: multus
+      app.kubernetes.io/name: multus
+      app.kubernetes.io/instance: multus
+  template:
+    metadata:
+      annotations:
+        checksum/configMaps: a8f91b9c0002d0f14fd3af7a58b42ab21fb014d847191fafe295412e727828a4
+      labels:
+        app.kubernetes.io/controller: multus
+        app.kubernetes.io/instance: multus
+        app.kubernetes.io/name: multus
+    spec:
+      enableServiceLinks: false
+      serviceAccountName: multus
+      automountServiceAccountToken: true
+      priorityClassName: system-node-critical
+      hostIPC: false
+      hostNetwork: true
+      hostPID: true
+      dnsPolicy: ClusterFirstWithHostNet
+      tolerations:
+      - key: CriticalAddonsOnly
+        operator: Exists
+      initContainers:
+      - image: ghcr.io/angelnu/cni-plugins:1.9.0
+        imagePullPolicy: IfNotPresent
+        name: cni-installer
+        volumeMounts:
+        - mountPath: /host/opt/cni/bin
+          name: cnibin
+      - command:
+        - cp
+        - -f
+        - /usr/src/multus-cni/bin/multus-shim
+        - /host/opt/cni/bin/multus-shim
+        image: ghcr.io/k8snetworkplumbingwg/multus-cni:v4.2.3-thick
+        imagePullPolicy: IfNotPresent
+        name: multus-installer
+        resources:
+          requests:
+            cpu: 10m
+            memory: 15Mi
+        securityContext:
+          privileged: true
+        volumeMounts:
+        - mountPath: /host/opt/cni/bin
+          name: cnibin
+      containers:
+      - command:
+        - /usr/src/multus-cni/bin/multus-daemon
+        image: ghcr.io/k8snetworkplumbingwg/multus-cni:v4.2.3-thick
+        imagePullPolicy: IfNotPresent
+        name: multus
+        securityContext:
+          capabilities:
+            add:
+            - NET_ADMIN
+            drop:
+            - ALL
+          privileged: true
+          readOnlyRootFilesystem: true
+        volumeMounts:
+        - mountPath: /etc/cni/net.d
+          name: cni
+        - mountPath: /opt/cni/bin
+          name: cnibin
+        - mountPath: /etc/cni/net.d/multus.d
+          name: config
+        - mountPath: /host/run
+          name: host-run
+        - mountPath: /run/k8s.cni.cncf.io
+          name: host-run-k8s-cni-cncf-io
+        - mountPath: /run/netns/
+          mountPropagation: HostToContainer
+          name: host-run-netns
+        - mountPath: /var/lib/cni/multus
+          name: host-var-lib-cni-multus
+        - mountPath: /var/lib/kubelet
+          name: host-var-lib-kubelet
+        - mountPath: /hostroot
+          mountPropagation: HostToContainer
+          name: hostroot
+      volumes:
+      - hostPath:
+          path: /etc/cni/net.d
+          type: Directory
+        name: cni
+      - hostPath:
+          path: /opt/cni/bin
+          type: Directory
+        name: cnibin
+      - configMap:
+          name: multus
+        name: config
+      - hostPath:
+          path: /run
+        name: host-run
+      - hostPath:
+          path: /run/k8s.cni.cncf.io
+        name: host-run-k8s-cni-cncf-io
+      - hostPath:
+          path: /var/run/netns
+        name: host-run-netns
+      - hostPath:
+          path: /var/lib/cni/multus
+        name: host-var-lib-cni-multus
+      - hostPath:
+          path: /var/lib/kubelet
+        name: host-var-lib-kubelet
+      - hostPath:
+          path: /
+          type: Directory
+        name: hostroot
+

| datasource | package | from  | to    |
| ---------- | ------- | ----- | ----- |
| helm       | multus  | 6.0.4 | 7.0.0 |
@renovate renovate bot force-pushed the renovate/multus-7.x branch from 760aee3 to 42f2b00 Compare January 19, 2026 17:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant