Skip to content

Commit 12f9f5d

Browse files
Update microk8s version to 1.28 and multipass 1.12.2 (#4235)
* Update microk8s version to 1.28 and multipass 1.12.2 * bump kubectl to 1.28.3 --------- Co-authored-by: Angelos Kolaitis <[email protected]>
1 parent 11f3cbb commit 12f9f5d

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/build-installer.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ jobs:
4040
- name: Download Multipass installer
4141
uses: carlosperate/[email protected]
4242
with:
43-
file-url: https://github.com/canonical/multipass/releases/download/v1.12.0/multipass-1.12.0+win-win64.exe
43+
file-url: https://github.com/canonical/multipass/releases/download/v1.12.2/multipass-1.12.2+win-win64.exe
4444
file-name: multipass.exe
4545
location: ${{ github.workspace }}/installer/windows
4646
- name: Download kubectl
4747
uses: carlosperate/[email protected]
4848
with:
49-
file-url: https://storage.googleapis.com/kubernetes-release/release/v1.27.3/bin/windows/amd64/kubectl.exe
49+
file-url: https://storage.googleapis.com/kubernetes-release/release/v1.28.3/bin/windows/amd64/kubectl.exe
5050
file-name: kubectl.exe
5151
location: ${{ github.workspace }}/installer/windows
5252
- name: Create installer

installer/common/definitions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
DEFAULT_MEMORY_GB: int = 4
2929
DEFAULT_DISK_GB: int = 50
3030
DEFAULT_ASSUME: bool = False
31-
DEFAULT_CHANNEL: str = "1.27/stable"
31+
DEFAULT_CHANNEL: str = "1.28/stable"
3232
DEFAULT_IMAGE: str = "22.04"
3333

3434
MIN_CORES: int = 2

installer/vm_providers/_multipass/_windows.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@
3939

4040

4141
_MULTIPASS_RELEASES_API_URL = "https://api.github.com/repos/canonical/multipass/releases"
42-
_MULTIPASS_DL_VERSION = "1.12.0"
42+
_MULTIPASS_DL_VERSION = "1.12.2"
4343
_MULTIPASS_DL_NAME = "multipass-{version}+win-win64.exe".format(version=_MULTIPASS_DL_VERSION)
4444

4545
# Download multipass installer and calculate hash:
4646
# python3 -c "from installer.common.file_utils import calculate_sha3_384; print(calculate_sha3_384('$HOME/Downloads/multipass-1.11.1+win-win64.exe'))" # noqa: E501
47-
_MULTIPASS_DL_SHA3_384 = "ddba66059052a67fa6a363729b75aca374591bc5a2531c938dd70d63f683c22108d5c2ab77025b818b31f69103228eee" # noqa: E501
47+
_MULTIPASS_DL_SHA3_384 = "9031c8fc98b941df1094a832c356e12f281c70d0eb10bee15b5576c61af4c8a17ef32b833f0043c8df0e04897e69c8bc" # noqa: E501
4848

4949

5050
def windows_reload_multipass_path_env():

installer/windows/microk8s.nsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ Function "ConfigureVm"
162162
${NSD_CreateLabel} 42% 50 50u 10u "Snap Track"
163163
Pop $VmConfigureDialogTrackLabel
164164

165-
${NSD_CreateText} 42% 67.5 50u 10u "1.27/stable"
165+
${NSD_CreateText} 42% 67.5 50u 10u "1.28/stable"
166166
Pop $VmConfigureDialogTrack
167167

168168
${NSD_CreateLabel} 8% 102.5 100% 10u "These are the minimum recommended parameters for the VM running ${PRODUCT_NAME}"

0 commit comments

Comments
 (0)