Skip to content
Open
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
10 changes: 5 additions & 5 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ jobs:
shell: bash
run: ./prepare.sh capms-ubuntu
env:
SEMVER_MAJOR_MINOR: 1.32.9
SEMVER_MAJOR_MINOR: 1.34.5
if: ${{ matrix.os.name == 'ubuntu' }}

- name: Build docker image for capms
Expand All @@ -185,10 +185,10 @@ jobs:
no-cache: true
set: _common.output+=type=registry
env:
KUBE_VERSION: 1.32.9
KUBE_APT_BRANCH: v1.32
KUBE_VERSION: 1.34.5
KUBE_APT_BRANCH: v1.34
OS_NAME: capms-ubuntu
SEMVER_MAJOR_MINOR: 1.32.9
SEMVER_MAJOR_MINOR: 1.34.5
SEMVER_PATCH: ${{ env.SEMVER_PATCH }}
if: ${{ matrix.os.name == 'ubuntu' }}

Expand All @@ -199,7 +199,7 @@ jobs:
env:
IMG_PKG_COMMAND: dpkg -l
OS_NAME: capms-ubuntu
SEMVER_MAJOR_MINOR: 1.32.9
SEMVER_MAJOR_MINOR: 1.34.5
SEMVER_PATCH: ${{ env.SEMVER_PATCH }}
if: ${{ matrix.os.name == 'ubuntu' }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
DISTRO_VERSIONS: |
[
"ubuntu/24.04",
"capms-ubuntu/1.32.9",
"capms-ubuntu/1.34.5",
"firewall/3.0-ubuntu",
"debian/12",
"debian-nvidia/12",
Expand Down
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ ubuntu: test binary

.PHONY: capms
capms: test ubuntu
KUBE_VERSION=1.32.9 \
KUBE_APT_BRANCH=v1.32 \
SEMVER_MAJOR_MINOR=1.32.9 \
KUBE_VERSION=1.34.5 \
KUBE_APT_BRANCH=v1.34 \
SEMVER_MAJOR_MINOR=1.34.5 \
docker buildx bake --no-cache ubuntu-capms
OS_NAME=capms-ubuntu OUTPUT_FOLDER="" SEMVER_MAJOR_MINOR=1.32.9 ./test.sh
OS_NAME=capms-ubuntu OUTPUT_FOLDER="" SEMVER_MAJOR_MINOR=1.34.5 ./test.sh

.PHONY: firewall
firewall: test binary
Expand Down
2 changes: 1 addition & 1 deletion cmd/tools/handle-release/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
```bash
FILENAME=downloads.md \
REF_NAME=$(git rev-parse --abbrev-ref HEAD) \
DISTRO_VERSIONS=$'["capms-ubuntu/1.32.9", "ubuntu/24.04", "almalinux/9"]' \
DISTRO_VERSIONS=$'["capms-ubuntu/1.34.5", "ubuntu/24.04", "almalinux/9"]' \
go run . --dry-run
```
Loading