Skip to content

Commit cd1c18d

Browse files
vdicevoigt
authored andcommitted
chore(*): a few more spinframework updates
Signed-off-by: Vaughn Dice <[email protected]>
1 parent f83441f commit cd1c18d

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/helm-chart-smoketest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ jobs:
194194
kubectl describe runtimeclass wasmtime-spin-v2
195195
196196
# Get install pod logs
197-
# Note: there may be multiple pods pending k3d fix for issue https://github.com/spinkube/runtime-class-manager/issues/140
197+
# Note: there may be multiple pods pending k3d fix for issue https://github.com/spinframework/runtime-class-manager/issues/393
198198
install_pod=$(kubectl get pods -n rcm --no-headers -o name | awk '{if ($1 ~ "-spin-v2-install") print $0}' | tail -n 1)
199199
kubectl describe -n rcm $install_pod || true
200200
kubectl logs -n rcm -c downloader $install_pod || true

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ kind: create-kind-cluster install
237237

238238
HELM ?= helm
239239
CHART_NAME := runtime-class-manager
240-
CHART_REGISTRY ?= ghcr.io/spinkube/charts
240+
CHART_REGISTRY ?= ghcr.io/spinframework/charts
241241
# We can update 0.0.0 to the most recent tag once we have a first git tag.
242242
# Note that the leading 'v' must be dropped per Helm's versioning requirements
243243
# e.g. $(shell git describe --tags --abbrev=0 | sed -rn 's/(v)?(.*)/\2/p')

deploy/helm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ With runtime-class-manager running, you're ready to create one or more Wasm Shim
2828
For example, here we install the Spin shim:
2929

3030
```shell
31-
kubectl apply -f https://raw.githubusercontent.com/spinkube/runtime-class-manager/refs/heads/main/config/samples/test_shim_spin.yaml
31+
kubectl apply -f https://raw.githubusercontent.com/spinframework/runtime-class-manager/refs/heads/main/config/samples/test_shim_spin.yaml
3232
```
3333

3434
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:

deploy/update-chart-versions.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ set -eou pipefail
55

66
# Swap tag in for main for URLs if the version is vx.x.x*
77
if [[ "${APP_VERSION}" =~ ^v[0-9]+.[0-9]+.[0-9]+(.*)? ]]; then
8-
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"
9-
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"
8+
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"
9+
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"
1010
fi
1111

1212
## Update Chart.yaml with CHART_VERSION and APP_VERSION

0 commit comments

Comments
 (0)