Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rc release: 0.1.46-rc2, fix registry service image, add docs #215

Merged
merged 3 commits into from
Sep 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/starship-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ concurrency:
cancel-in-progress: true

jobs:
deploy-docker-registry:
deploy-docker:
runs-on: ubuntu-latest

permissions:
Expand Down
2 changes: 1 addition & 1 deletion charts/devnet/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.46-rc1
version: 0.1.46-rc2

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
4 changes: 1 addition & 3 deletions charts/devnet/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -219,9 +219,7 @@ explorer:

registry:
enabled: false
# test image, todo: change this to registry service image
image: anmol1696/registry:20230905-7b331fe
# image: ghcr.io/cosmology-tech/starship/registry:20230829-eaeeb62
image: ghcr.io/cosmology-tech/starship/registry:20230905-b18b37a
localhost: true
ports:
rest: 6060
Expand Down
1 change: 1 addition & 0 deletions docs/pages/config/chains.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ chains:
ports:
rest: 1317 # Rest endpoint of the Genesis validator node (most used)
rpc: 26657 # RPC endpoint of the genesis validator node (most used)
grpc: 9091 # GRPC endpoint of the genesis validator node (less used)
faucet: 8001 # Cosmjs faucet running next to the genesis node (most used)
exposer: 9090 # Exposer sidecar port (less used)
```
Expand Down
3 changes: 3 additions & 0 deletions docs/pages/config/features.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ for the infra you spin up.
```yaml
registry:
enabled: true # enable registry service
localhost: true # default: true, will set chain registry output with api endpoints pointing to localhost, using the chains[].ports for localhost endpoints
ports:
rest: 8081 # localhost port for redirecting traffic
# Optional: resources directive, defualt cpu: 0.2, memory: 200M
Expand All @@ -25,6 +26,8 @@ registry:
image: ghcr.io/cosmology-tech/starship/registry:20230614-7173db2
```

> Note: `registry.localhost` is set to true by default, meaning if the ports are specified in chains[].ports, then we set the various api endpoints of the chain registry to `localhost:<port>`. Make sure `rest`, `grpc`, `rpc` are set as [chain ports](https://starship.cosmology.tech/config/chains#ports). If set to false, then it is set to kubernetes internal DNS endpoints.

### Usage

Here is a list of avialable endpoints and how to use them:
Expand Down
Loading