You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
Starship Devnet
0.2.3
GitHub Action for creating and running starship devnets in CI.
Create a workflow YAML file in your .github/workflows
directory. An example workflow is available below.
For more information, reference the GitHub Help Documentation for Creating a workflow file.
For more information on inputs, see the API Documentation
values
: Required, config for helm chart for starship devnet inputsport-forward
: Optional, toggle to perform local port-forwarding, based on thevalues.yaml
(default:false
)kubeconfig
: Optional, Kubeconfig for remote cluster, if set, will be used instead of creating local kind clusterversion
: Optional, version of devnet chart from starship (default:0.1.4
)repo
: Optional, Helm repo to fetch the chart from (default: https://cosmology-tech.github.io/starship)name
: Optional, Release name for the helm chart deployment (default:starship-devnet
)
Chreate a workflow (eg: .github/workflows/create-osmosis-wasmd.yml
)
name: Create Starship devnet
on: pull_request
jobs:
create-devnet:
runs-on: ubuntu-latest
steps:
- name: Create starship devnet for osmos and wasm
uses: cosmology-tech/starship-action@v1
with:
values: |
chains:
- name: osmosis-1
type: osmosis
numValidators: 1
ports:
rest: 1313
rpc: 26653
resources:
limits:
cpu: "0.2"
memory: "200M"
requests:
cpu: "0.1"
memory: "100M"
- name: wasmd
type: wasmd
numValidators: 1
ports:
rpc: 26659
rest: 1319
resources:
limits:
cpu: "0.2"
memory: "200M"
requests:
cpu: "0.1"
memory: "100M"