Skip to content

Commit b1998a7

Browse files
authored
fix(multichain-testing): update starship helm chart repo URL (#10863)
closes: #10862 ## Description Cosmology has rebranded to Hyberweb which now leads https://cosmology-tech.github.io/starship to a 404. This PR updates the helm chart repo url for starship to unbreak dapp-orch-basics and agoric-sdk's CI ([failing multichain-e2e run](https://github.com/Agoric/agoric-sdk/actions/runs/12867100606/job/35871037526#step:9:500)). The change is fairly recent - around 2 days ago - so they haven't gotten to update all their docs yet. I stumbled upon the correct URL intuitively - ~~which means I can't provide some docs or issue as proof other than the fact that it works now.~~ Edit: [updated here](https://github.com/hyperweb-io/telescope/blob/f2746ee9a2fae655a7dfbb65cc6695067cb6db39/packages/starship/scripts/install.sh#L24) #### Before ``` % make setup start /Users/mujahid/Documents/GitHub/agoric-sdk/multichain-testing/scripts/dev-setup.sh All binaries are installed kind create cluster --name agship Creating cluster "agship" ... ✓ Ensuring node image (kindest/node:v1.32.0) 🖼 ✓ Preparing nodes 📦 ✓ Writing configuration 📜 ✓ Starting control-plane 🕹️ ✓ Installing CNI 🔌 ✓ Installing StorageClass 💾 Set kubectl context to "kind-agship" You can now use your cluster with: kubectl cluster-info --context kind-agship Have a nice day! 👋 /Users/mujahid/Documents/GitHub/agoric-sdk/multichain-testing/scripts/install.sh --config config.yaml --name agoric-multichain-testing --version v0.2.20 Script dir: /Users/mujahid/Documents/GitHub/agoric-sdk/multichain-testing/scripts Error: looks like "https://cosmology-tech.github.io/starship/" is not a valid chart repository or cannot be reached: failed to fetch https://cosmology-tech.github.io/starship/index.yaml : 404 Not Found make: *** [install] Error 1 ``` #### After ``` /Users/mujahid/Documents/GitHub/agoric-sdk/multichain-testing/scripts/dev-setup.sh All binaries are installed kind create cluster --name agship Creating cluster "agship" ... ✓ Ensuring node image (kindest/node:v1.32.0) 🖼 ✓ Preparing nodes 📦 ✓ Writing configuration 📜 ✓ Starting control-plane 🕹️ ✓ Installing CNI 🔌 ✓ Installing StorageClass 💾 Set kubectl context to "kind-agship" You can now use your cluster with: kubectl cluster-info --context kind-agship Not sure what to do next? 😅 Check out https://kind.sigs.k8s.io/docs/user/quick-start/ /Users/mujahid/Documents/GitHub/agoric-sdk/multichain-testing/scripts/install.sh --config config.yaml --name agoric-multichain-testing --version v0.2.20 Script dir: /Users/mujahid/Documents/GitHub/agoric-sdk/multichain-testing/scripts "starship" has been added to your repositories Hang tight while we grab the latest from your chart repositories... ``` ### Security Considerations None ### Scaling Considerations None ### Documentation Considerations None ### Testing Considerations Fixes multichain-e2e tests ### Upgrade Considerations None
2 parents 2288a0c + 52cd081 commit b1998a7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/multichain-e2e-template.yml

+1
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ jobs:
8080
version: 0.2.20
8181
timeout: 30m
8282
namespace: ${{ env.NAMESPACE }}
83+
repo: https://hyperweb-io.github.io/starship
8384

8485
- name: Fund Provision Pool
8586
run: |

multichain-testing/scripts/install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ TIMEOUT=""
2323
NAMESPACE=""
2424
HELM_REPO="starship"
2525
HELM_CHART="starship/devnet"
26-
HELM_REPO_URL="https://cosmology-tech.github.io/starship/"
26+
HELM_REPO_URL="https://hyperweb-io.github.io/starship/"
2727
HELM_CHART_VERSION="0.2.20"
2828
HELM_NAME="agoric-multichain-testing"
2929

0 commit comments

Comments
 (0)