Skip to content

Commit

Permalink
Bump installer versions: (#3864)
Browse files Browse the repository at this point in the history
- installer to 2.3.2
- multipass to 1.11.1
- kubectl to 1.26.3
  • Loading branch information
neoaggelos authored Mar 21, 2023
1 parent 20ec6d5 commit 67207fd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ jobs:
- name: Download Multipass installer
uses: carlosperate/[email protected]
with:
file-url: https://github.com/canonical/multipass/releases/download/v1.10.1/multipass-1.10.1+win-win64.exe
file-url: https://github.com/canonical/multipass/releases/download/v1.11.1/multipass-1.11.1+win-win64.exe
file-name: multipass.exe
location: ${{ github.workspace }}/installer/windows
- name: Download kubectl
uses: carlosperate/[email protected]
with:
file-url: https://storage.googleapis.com/kubernetes-release/release/v1.26.0/bin/windows/amd64/kubectl.exe
file-url: https://storage.googleapis.com/kubernetes-release/release/v1.26.3/bin/windows/amd64/kubectl.exe
file-name: kubectl.exe
location: ${{ github.workspace }}/installer/windows
- name: Create installer
Expand Down
7 changes: 5 additions & 2 deletions installer/vm_providers/_multipass/_windows.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,12 @@


_MULTIPASS_RELEASES_API_URL = "https://api.github.com/repos/canonical/multipass/releases"
_MULTIPASS_DL_VERSION = "1.10.1"
_MULTIPASS_DL_VERSION = "1.11.1"
_MULTIPASS_DL_NAME = "multipass-{version}+win-win64.exe".format(version=_MULTIPASS_DL_VERSION)
_MULTIPASS_DL_SHA3_384 = "57f183873e089450a4200cbfc3dd524b076b1745449320af82712f9cb0ef245f27bc1a1823a44d4ae27abcb893ca1844" # noqa: E501

# Download multipass installer and calculate hash:
# 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
_MULTIPASS_DL_SHA3_384 = "7691383eb0f4def0f9e2b5c77f04424756a63f222b3500bdc8fb25bf4725f1c0ce3bd0cb0b7cff7f79d8f489e199225b" # noqa: E501


def windows_reload_multipass_path_env():
Expand Down
2 changes: 1 addition & 1 deletion installer/windows/microk8s.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
!include "Sections.nsh"

!define PRODUCT_NAME "MicroK8s"
!define PRODUCT_VERSION "2.3.0"
!define PRODUCT_VERSION "2.3.2"
!define PRODUCT_PUBLISHER "Canonical"
!define MUI_ICON ".\microk8s.ico"
!define MUI_HEADERIMAGE
Expand Down

0 comments on commit 67207fd

Please sign in to comment.