Skip to content

Commit

Permalink
fix(multichain-testing): update starship helm chart repo URL (#10863)
Browse files Browse the repository at this point in the history
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
mergify[bot] authored Jan 20, 2025
2 parents 2288a0c + 52cd081 commit b1998a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/multichain-e2e-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ jobs:
version: 0.2.20
timeout: 30m
namespace: ${{ env.NAMESPACE }}
repo: https://hyperweb-io.github.io/starship

- name: Fund Provision Pool
run: |
Expand Down
2 changes: 1 addition & 1 deletion multichain-testing/scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ TIMEOUT=""
NAMESPACE=""
HELM_REPO="starship"
HELM_CHART="starship/devnet"
HELM_REPO_URL="https://cosmology-tech.github.io/starship/"
HELM_REPO_URL="https://hyperweb-io.github.io/starship/"
HELM_CHART_VERSION="0.2.20"
HELM_NAME="agoric-multichain-testing"

Expand Down

0 comments on commit b1998a7

Please sign in to comment.