Skip to content

Commit 41f2d64

Browse files
authored
chore: branch out 1.33 (#5176)
1 parent b20772b commit 41f2d64

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

.github/workflows/build-snap.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ name: Build and test MicroK8s snap
22

33
on:
44
pull_request:
5-
branches:
6-
- master
5+
branches: [1.33]
76

87
jobs:
98
build:
@@ -54,7 +53,7 @@ jobs:
5453
uses: ./.github/actions/test-prep
5554
- name: Running upgrade path test
5655
run: |
57-
sudo -E UPGRADE_MICROK8S_FROM=latest/edge UPGRADE_MICROK8S_TO=$PWD/build/microk8s.snap pytest -s ./tests/test-upgrade-path.py
56+
sudo -E UPGRADE_MICROK8S_FROM=1.33/edge UPGRADE_MICROK8S_TO=$PWD/build/microk8s.snap pytest -s ./tests/test-upgrade-path.py
5857
5958
test-addons-core:
6059
name: Test core addons
@@ -120,7 +119,7 @@ jobs:
120119
run: |
121120
set -x
122121
export UNDER_TIME_PRESSURE=${UNDER_TIME_PRESSURE@u}
123-
sudo -E bash -c "UPGRADE_MICROK8S_FROM=latest/edge UPGRADE_MICROK8S_TO=$PWD/build/microk8s.snap pytest -s ./tests/test-upgrade.py"
122+
sudo -E bash -c "UPGRADE_MICROK8S_FROM=1.33/edge UPGRADE_MICROK8S_TO=$PWD/build/microk8s.snap pytest -s ./tests/test-upgrade.py"
124123
125124
test-cluster-agent:
126125
name: Cluster agent health check

build-scripts/addons/repositories.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
# List of addon repositories to bundle in the snap
44
# (name),(repository),(reference)
55
ADDONS_REPOS="
6-
core,https://github.com/canonical/microk8s-core-addons,main
7-
community,https://github.com/canonical/microk8s-community-addons,main
6+
core,https://github.com/canonical/microk8s-core-addons,1.33
7+
community,https://github.com/canonical/microk8s-community-addons,1.33
88
"
99

1010
# List of addon repositories to automatically enable
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
22

3-
echo "main"
3+
echo "1.33"

build-scripts/components/kubernetes/version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
KUBE_TRACK="${KUBE_TRACK:-}" # example: "1.24"
3+
KUBE_TRACK="${KUBE_TRACK:-1.33}" # example: "1.24"
44
KUBE_VERSION="${KUBE_VERSION:-}" # example: "v1.24.2"
55

66
if [ -z "${KUBE_VERSION}" ]; then

0 commit comments

Comments
 (0)