Skip to content

Commit

Permalink
feat(demo): Pin kube version
Browse files Browse the repository at this point in the history
  • Loading branch information
erebe committed May 2, 2024
1 parent 59124e6 commit 148df45
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion cmd/demo_scripts/create_qovery_demo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ get_or_create_cluster() {
if [ "$clusterExist" = "" ]
then
k3d cluster create "$clusterName" \
--image 'docker.io/rancher/k3s:v1.28.9-k3s1' \
--subnet '172.42.0.0/16' \
--k3s-arg "--node-ip=172.42.0.3@server:0" \
--k3s-arg "--disable=traefik@server:*" \
Expand Down Expand Up @@ -174,7 +175,7 @@ echo '""""""""""""""""""""""""""""""""""""""""""""'
echo 'Installing Qovery helm repositories'
echo '""""""""""""""""""""""""""""""""""""""""""""'
helm repo add qovery https://helm.qovery.com
helm repo update
helm repo update qovery

echo ''
echo '""""""""""""""""""""""""""""""""""""""""""""'
Expand Down
1 change: 1 addition & 0 deletions cmd/demo_scripts/destroy_qovery_demo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ delete_k3d_cluster() {
k3d cluster delete "$clusterName" || true
fi
docker network rm "k3d-${clusterName}" || true
k3d registry delete qovery-registry.lan || true
}

teardown_network() {
Expand Down
2 changes: 1 addition & 1 deletion pkg/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
)

func GetCurrentVersion() string {
return "0.91.1" // ci-version-check
return "0.91.2" // ci-version-check
}

func GetLatestOnlineVersionUrl() (string, error) {
Expand Down

0 comments on commit 148df45

Please sign in to comment.