File tree Expand file tree Collapse file tree 4 files changed +7
-8
lines changed
Expand file tree Collapse file tree 4 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,7 @@ name: Build and test MicroK8s snap
22
33on :
44 pull_request :
5- branches :
6- - master
5+ branches : [1.33]
76
87jobs :
98 build :
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
Original file line number Diff line number Diff line change 33# List of addon repositories to bundle in the snap
44# (name),(repository),(reference)
55ADDONS_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
Original file line number Diff line number Diff line change 11#! /bin/bash
22
3- echo " main "
3+ echo " 1.33 "
Original file line number Diff line number Diff line change 11#! /bin/bash
22
3- KUBE_TRACK=" ${KUBE_TRACK:- } " # example: "1.24"
3+ KUBE_TRACK=" ${KUBE_TRACK:- 1.33 } " # example: "1.24"
44KUBE_VERSION=" ${KUBE_VERSION:- } " # example: "v1.24.2"
55
66if [ -z " ${KUBE_VERSION} " ]; then
You can’t perform that action at this time.
0 commit comments