Tweaks for 1.18.0 support

This commit is contained in:
thespad 2025-10-22 20:44:06 +01:00
parent 796ddd11b5
commit 0fe56f2c62
No known key found for this signature in database
6 changed files with 8 additions and 6 deletions

View file

@ -83,7 +83,7 @@ RUN \
ALVERSION=$(cat /kasm_release/conf/database/seed_data/default_properties.yaml |awk '/alembic_version/ {print $2}') && \
curl -o \
/tmp/images.tar.gz -L \
"https://kasm-ci.s3.amazonaws.com/1.17.0-images-combined.tar.gz" && \
"https://kasm-ci.s3.amazonaws.com/1.18.0-images-combined.tar.gz" && \
tar xf \
/tmp/images.tar.gz -C \
/ && \

View file

@ -83,7 +83,7 @@ RUN \
ALVERSION=$(cat /kasm_release/conf/database/seed_data/default_properties.yaml |awk '/alembic_version/ {print $2}') && \
curl -o \
/tmp/images.tar.gz -L \
"https://kasm-ci.s3.amazonaws.com/1.17.0-images-combined.tar.gz" && \
"https://kasm-ci.s3.amazonaws.com/1.18.0-images-combined.tar.gz" && \
tar xf \
/tmp/images.tar.gz -C \
/ && \

View file

@ -313,6 +313,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
## Versions
* **22.10.25:** - Update for 1.18.0 release.
* **08.06.25:** - Deprecate develop branch.
* **03.06.25:** - Rebase to Ubuntu Noble. Update for 1.17.0 release.
* **09.11.24:** - Update base image for 1.16.1 release.

View file

@ -126,6 +126,7 @@ init_diagram: |
"kasm:latest" <- Base Images
# changelog
changelogs:
- {date: "22.10.25:", desc: "Update for 1.18.0 release."}
- {date: "08.06.25:", desc: "Deprecate develop branch."}
- {date: "03.06.25:", desc: "Rebase to Ubuntu Noble. Update for 1.17.0 release."}
- {date: "09.11.24:", desc: "Update base image for 1.16.1 release."}

View file

@ -7,7 +7,7 @@ fi
# Login to Dockerhub
if [[ -n "${DOCKER_HUB_USERNAME}" ]]; then
docker login --username $DOCKER_HUB_USERNAME --password $DOCKER_HUB_PASSWORD
docker login --username "${DOCKER_HUB_USERNAME}" --password "${DOCKER_HUB_PASSWORD}"
fi
# Generate self cert for wizard

View file

@ -2,16 +2,16 @@
# Wait for docker to be up
while true; do
if [ -S "/var/run/docker.sock" ]; then
if [[ -S "/var/run/docker.sock" ]]; then
break
fi
sleep 1
done
# Don't do anything if wizard is disabled
if [ -f "/opt/NO_WIZARD" ]; then
if [[ -f "/opt/NO_WIZARD" ]]; then
sleep infinity
fi
cd /wizard
cd /wizard || exit 1
/usr/bin/node index.js