Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(vagrant): update go to 1.21.0 and microk8s to 1.27 #631

Merged
merged 1 commit into from
Dec 14, 2023
Merged
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
5 changes: 3 additions & 2 deletions vagrant/provision.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
set -x

export DEBIAN_FRONTEND=noninteractive
GO_VERSION="1.20"
GO_VERSION="1.21.5"
HELM_VERSION=v3.5.2
KUTTL_VERSION=0.15.0
MICROK8S_VERSION=1.27

apt-get update
apt-get --yes upgrade
Expand All @@ -23,7 +24,7 @@ apt-get install --yes docker-ce docker-ce-cli containerd.io
usermod -aG docker vagrant

# Install k8s
snap install microk8s --classic --channel=1.20/stable
snap install microk8s --classic --channel=${MICROK8S_VERSION}/stable
microk8s.status --wait-ready
ufw allow in on cbr0
ufw allow out on cbr0
Expand Down
Loading