diff --git a/.github/workflows/build_push_concheck.yaml b/.github/workflows/build_push_concheck.yaml index 8ccef03e..699e9f81 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.2.8" + IMAGE_VERSION: "1.2.9" 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 7ebb62fd..c78f773d 100644 --- a/.github/workflows/build_push_controller.yaml +++ b/.github/workflows/build_push_controller.yaml @@ -15,7 +15,7 @@ on: - ./Makefile env: - VERSION: "1.2.8" + VERSION: "1.2.9" 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 ce420557..53f773a6 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.2.8" + IMAGE_VERSION: "1.2.9" 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 0c7d10a1..115f06e5 100644 --- a/.github/workflows/build_push_kbuilder.yaml +++ b/.github/workflows/build_push_kbuilder.yaml @@ -8,7 +8,7 @@ on: required: true env: - IMAGE_VERSION: ${{ github.event.inputs.version }} + IMAGE_VERSION: "1.2.9" jobs: build-push: diff --git a/.github/workflows/build_push_pr.yaml b/.github/workflows/build_push_pr.yaml index af55a5e1..ec1bd9db 100644 --- a/.github/workflows/build_push_pr.yaml +++ b/.github/workflows/build_push_pr.yaml @@ -22,7 +22,7 @@ on: - cni/** env: - VERSION: 1.2.8-pr-${{ github.event.pull_request.number }} + VERSION: 1.2.9-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 54dc8354..4a37c658 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.2.8 +VERSION ?= 1.2.9 export CHANNELS = "alpha" export DEFAULT_CHANNEL = "alpha" diff --git a/config/manager/kustomization.yaml b/config/manager/kustomization.yaml index 944e5db7..9ed81ad1 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.2.8 + newTag: v1.2.9 diff --git a/config/samples/config.yaml b/config/samples/config.yaml index d8a4023d..d568c96f 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.2.8 + image: ghcr.io/foundation-model-stack/multi-nic-cni-daemon:v1.2.9 imagePullPolicy: Always mounts: - hostpath: /var/lib/cni/bin diff --git a/config/samples/kustomization.yaml b/config/samples/kustomization.yaml index 6d65732a..8e90439b 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.2.8 + newTag: v1.2.9 diff --git a/connection-check/concheck.yaml b/connection-check/concheck.yaml index ef627960..0e97f9ea 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.2.8 + image: ghcr.io/foundation-model-stack/multi-nic-cni-concheck:v1.2.9 imagePullPolicy: Always securityContext: privileged: true diff --git a/daemon/Makefile b/daemon/Makefile index bc6544bb..01ee1f42 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.2.8 +DAEMON_IMG ?= $(IMAGE_TAG_BASE)-daemon:v1.2.9 test-verbose: diff --git a/daemon/dockerfiles/Dockerfile.multi-nicd-test b/daemon/dockerfiles/Dockerfile.multi-nicd-test index 9a262d19..b5916293 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.2.8 +FROM ghcr.io/foundation-model-stack/multi-nic-cni-kbuilder:v1.2.9 RUN mkdir -p /usr/local/app RUN mkdir -p /host/opt/cni/bin diff --git a/internal/vars/vars.go b/internal/vars/vars.go index b2ccc55f..cca159a5 100644 --- a/internal/vars/vars.go +++ b/internal/vars/vars.go @@ -36,7 +36,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.2.8" + DefaultDaemonImage = "ghcr.io/foundation-model-stack/multi-nic-cni-daemon:v1.2.9" DefaultJoinPath = "/join" DefaultInterfacePath = "/interface" DefaultAddRoutePath = "/addl3"