Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
- Loading branch information