Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build_push_concheck.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_push_controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_push_daemon.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_push_kbuilder.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
required: true

env:
KBUILDER_IMAGE_VERSION: ${{ github.event.inputs.version }}
KBUILDER_VERSION: ${{ github.event.inputs.version }}

jobs:
build-push:
Expand All @@ -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
2 changes: 1 addition & 1 deletion .github/workflows/build_push_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion config/samples/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion config/samples/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion connection-check/concheck.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion daemon/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion daemon/dockerfiles/Dockerfile.multi-nicd-test
Original file line number Diff line number Diff line change
@@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion internal/vars/vars.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading