From cd1c18dd76336844747a8eaa5a63b2670e211405 Mon Sep 17 00:00:00 2001 From: Vaughn Dice Date: Wed, 11 Jun 2025 12:15:16 +0200 Subject: [PATCH] chore(*): a few more spinframework updates Signed-off-by: Vaughn Dice --- .github/workflows/helm-chart-smoketest.yml | 2 +- Makefile | 2 +- deploy/helm/README.md | 2 +- deploy/update-chart-versions.sh | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/helm-chart-smoketest.yml b/.github/workflows/helm-chart-smoketest.yml index 1021898..0b69767 100644 --- a/.github/workflows/helm-chart-smoketest.yml +++ b/.github/workflows/helm-chart-smoketest.yml @@ -194,7 +194,7 @@ jobs: kubectl describe runtimeclass wasmtime-spin-v2 # Get install pod logs - # Note: there may be multiple pods pending k3d fix for issue https://github.com/spinkube/runtime-class-manager/issues/140 + # Note: there may be multiple pods pending k3d fix for issue https://github.com/spinframework/runtime-class-manager/issues/393 install_pod=$(kubectl get pods -n rcm --no-headers -o name | awk '{if ($1 ~ "-spin-v2-install") print $0}' | tail -n 1) kubectl describe -n rcm $install_pod || true kubectl logs -n rcm -c downloader $install_pod || true diff --git a/Makefile b/Makefile index c44ebbc..b8ed308 100644 --- a/Makefile +++ b/Makefile @@ -237,7 +237,7 @@ kind: create-kind-cluster install HELM ?= helm CHART_NAME := runtime-class-manager -CHART_REGISTRY ?= ghcr.io/spinkube/charts +CHART_REGISTRY ?= ghcr.io/spinframework/charts # We can update 0.0.0 to the most recent tag once we have a first git tag. # Note that the leading 'v' must be dropped per Helm's versioning requirements # e.g. $(shell git describe --tags --abbrev=0 | sed -rn 's/(v)?(.*)/\2/p') diff --git a/deploy/helm/README.md b/deploy/helm/README.md index e6adbeb..60a7690 100644 --- a/deploy/helm/README.md +++ b/deploy/helm/README.md @@ -28,7 +28,7 @@ With runtime-class-manager running, you're ready to create one or more Wasm Shim For example, here we install the Spin shim: ```shell -kubectl apply -f https://raw.githubusercontent.com/spinkube/runtime-class-manager/refs/heads/main/config/samples/test_shim_spin.yaml +kubectl apply -f https://raw.githubusercontent.com/spinframework/runtime-class-manager/refs/heads/main/config/samples/test_shim_spin.yaml ``` Now when you annotate one or more nodes with a label corresponding to the `nodeSelector` declared in the Shim, runtime-class-manager will install the shim as well as create the corresponding Runtimeclass: diff --git a/deploy/update-chart-versions.sh b/deploy/update-chart-versions.sh index 25a6aa5..198940a 100755 --- a/deploy/update-chart-versions.sh +++ b/deploy/update-chart-versions.sh @@ -5,8 +5,8 @@ set -eou pipefail # Swap tag in for main for URLs if the version is vx.x.x* if [[ "${APP_VERSION}" =~ ^v[0-9]+.[0-9]+.[0-9]+(.*)? ]]; then - sed -i.bak -e "s%spinkube/runtime-class-manager/main%spinkube/runtime-class-manager/${APP_VERSION}%g" "${STAGING_DIR}/${CHART_NAME}-${CHART_VERSION}/README.md" - sed -i.bak -e "s%spinkube/runtime-class-manager/main%spinkube/runtime-class-manager/${APP_VERSION}%g" "${STAGING_DIR}/${CHART_NAME}-${CHART_VERSION}/templates/NOTES.txt" + sed -i.bak -e "s%spinframework/runtime-class-manager/main%spinframework/runtime-class-manager/${APP_VERSION}%g" "${STAGING_DIR}/${CHART_NAME}-${CHART_VERSION}/README.md" + sed -i.bak -e "s%spinframework/runtime-class-manager/main%spinframework/runtime-class-manager/${APP_VERSION}%g" "${STAGING_DIR}/${CHART_NAME}-${CHART_VERSION}/templates/NOTES.txt" fi ## Update Chart.yaml with CHART_VERSION and APP_VERSION