diff --git a/.github/workflows/build_push_concheck.yaml b/.github/workflows/build_push_concheck.yaml index 1b7c7de..44a2b0f 100644 --- a/.github/workflows/build_push_concheck.yaml +++ b/.github/workflows/build_push_concheck.yaml @@ -8,7 +8,7 @@ on: - connection-check/** env: - IMAGE_VERSION: "1.3.1" + IMAGE_VERSION: "1.3.2" IMAGE_REGISTRY: ghcr.io/${{ github.repository_owner }} jobs: diff --git a/.github/workflows/build_push_controller.yaml b/.github/workflows/build_push_controller.yaml index d955575..02bbb6a 100644 --- a/.github/workflows/build_push_controller.yaml +++ b/.github/workflows/build_push_controller.yaml @@ -15,7 +15,7 @@ on: - ./Makefile env: - VERSION: "1.3.1" + VERSION: "1.3.2" IMAGE_REGISTRY: ghcr.io/${{ github.repository_owner }} DAEMON_REGISTRY: ghcr.io/${{ github.repository_owner }} diff --git a/.github/workflows/build_push_daemon.yaml b/.github/workflows/build_push_daemon.yaml index c89d58e..8b4b80e 100644 --- a/.github/workflows/build_push_daemon.yaml +++ b/.github/workflows/build_push_daemon.yaml @@ -10,7 +10,7 @@ on: - Makefile env: - IMAGE_VERSION: "1.3.1" + IMAGE_VERSION: "1.3.2" DAEMON_REGISTRY: ghcr.io/${{ github.repository_owner }} jobs: diff --git a/.github/workflows/build_push_kbuilder.yaml b/.github/workflows/build_push_kbuilder.yaml index 0160a2b..c6b5165 100644 --- a/.github/workflows/build_push_kbuilder.yaml +++ b/.github/workflows/build_push_kbuilder.yaml @@ -8,7 +8,7 @@ on: required: true env: - KBUILDER_IMAGE_VERSION: ${{ github.event.inputs.version }} + KBUILDER_VERSION: ${{ github.event.inputs.version }} jobs: build-push: @@ -33,5 +33,5 @@ jobs: with: push: true tags: | - ${{ env.IMAGE_NAME }}:v${{ env.KBUILDER_IMAGE_VERSION }} + ${{ env.IMAGE_NAME }}:v${{ env.KBUILDER_VERSION }} file: ./daemon/dockerfiles/Dockerfile.kbuilder diff --git a/.github/workflows/build_push_pr.yaml b/.github/workflows/build_push_pr.yaml index 81f7a00..3e82408 100644 --- a/.github/workflows/build_push_pr.yaml +++ b/.github/workflows/build_push_pr.yaml @@ -22,7 +22,7 @@ on: - cni/** env: - VERSION: 1.3.1-pr-${{ github.event.pull_request.number }} + VERSION: 1.3.2-pr-${{ github.event.pull_request.number }} IMAGE_REGISTRY: ghcr.io/${{ github.repository_owner }} DAEMON_REGISTRY: ghcr.io/${{ github.repository_owner }} diff --git a/Makefile b/Makefile index c40a52f..bf663c0 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ export IMAGE_REGISTRY ?= ghcr.io/foundation-model-stack # - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2) # - use environment variables to overwrite this value (e.g export VERSION=0.0.2) # VERSION ?= 0.0.1 -VERSION ?= 1.3.1 +VERSION ?= 1.3.2 export CHANNELS = "alpha" export DEFAULT_CHANNEL = "alpha" diff --git a/config/manager/kustomization.yaml b/config/manager/kustomization.yaml index 816177c..856182d 100644 --- a/config/manager/kustomization.yaml +++ b/config/manager/kustomization.yaml @@ -13,4 +13,4 @@ kind: Kustomization images: - name: controller newName: ghcr.io/foundation-model-stack/multi-nic-cni-controller - newTag: v1.3.1 + newTag: v1.3.2 diff --git a/config/samples/config.yaml b/config/samples/config.yaml index b07e2e6..b32ca51 100644 --- a/config/samples/config.yaml +++ b/config/samples/config.yaml @@ -11,7 +11,7 @@ spec: value: "11000" - name: RT_TABLE_PATH value: /opt/rt_tables - image: ghcr.io/foundation-model-stack/multi-nic-cni-daemon:v1.3.1 + image: ghcr.io/foundation-model-stack/multi-nic-cni-daemon:v1.3.2 imagePullPolicy: Always mounts: - hostpath: /var/lib/cni/bin diff --git a/config/samples/kustomization.yaml b/config/samples/kustomization.yaml index 0bf3c40..0e7d70a 100644 --- a/config/samples/kustomization.yaml +++ b/config/samples/kustomization.yaml @@ -15,4 +15,4 @@ kind: Kustomization images: - name: multi-nic-cni-daemon newName: ghcr.io/foundation-model-stack/multi-nic-cni-daemon - newTag: v1.3.1 + newTag: v1.3.2 diff --git a/connection-check/concheck.yaml b/connection-check/concheck.yaml index f097f3e..3191f3a 100644 --- a/connection-check/concheck.yaml +++ b/connection-check/concheck.yaml @@ -71,7 +71,7 @@ spec: serviceAccountName: multi-nic-concheck-account containers: - name: concheck - image: ghcr.io/foundation-model-stack/multi-nic-cni-concheck:v1.3.1 + image: ghcr.io/foundation-model-stack/multi-nic-cni-concheck:v1.3.2 imagePullPolicy: Always securityContext: privileged: true diff --git a/daemon/Makefile b/daemon/Makefile index 0f90627..ba9c86c 100644 --- a/daemon/Makefile +++ b/daemon/Makefile @@ -6,7 +6,7 @@ export DAEMON_REGISTRY ?= ghcr.io/foundation-model-stack # DAEMON_IMG defines the image:tag used for daemon IMAGE_TAG_BASE = $(DAEMON_REGISTRY)/multi-nic-cni -DAEMON_IMG ?= $(IMAGE_TAG_BASE)-daemon:v1.3.1 +DAEMON_IMG ?= $(IMAGE_TAG_BASE)-daemon:v1.3.2 test-verbose: diff --git a/daemon/dockerfiles/Dockerfile.multi-nicd-test b/daemon/dockerfiles/Dockerfile.multi-nicd-test index 300dbda..3f6494a 100644 --- a/daemon/dockerfiles/Dockerfile.multi-nicd-test +++ b/daemon/dockerfiles/Dockerfile.multi-nicd-test @@ -1,4 +1,4 @@ -FROM ghcr.io/foundation-model-stack/multi-nic-cni-kbuilder:v1.3.1 +FROM ghcr.io/foundation-model-stack/multi-nic-cni-kbuilder:v1.3.2 RUN apt-get update \ && apt-get install -y jq \ diff --git a/internal/vars/vars.go b/internal/vars/vars.go index 35c5c80..54e584c 100644 --- a/internal/vars/vars.go +++ b/internal/vars/vars.go @@ -39,7 +39,7 @@ const ( DefaultOperatorNamespace = "multi-nic-cni-operator" DefaultCNIType = "multi-nic" DefaultIPAMType = "multi-nic-ipam" - DefaultDaemonImage = "ghcr.io/foundation-model-stack/multi-nic-cni-daemon:v1.3.1" + DefaultDaemonImage = "ghcr.io/foundation-model-stack/multi-nic-cni-daemon:v1.3.2" DefaultJoinPath = "/join" DefaultInterfacePath = "/interface" DefaultAddRoutePath = "/addl3"