Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: astriaorg/astria
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f09cad5acb807fe1c99946973e6c84bc332f4ac6
Choose a base ref
..
head repository: astriaorg/astria
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ac5fcd8046ff5a00c6438942c6a64ac082b63d61
Choose a head ref
16 changes: 8 additions & 8 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
@@ -181,7 +181,7 @@ jobs:
timeout-minutes: 3
run: |
TAG=sha-$(git rev-parse --short HEAD)
just run-smoke-test $TAG
just run smoke-test $TAG
smoke-cli:
needs: [run_checker, composer, conductor, sequencer, sequencer-relayer, evm-bridge-withdrawer, cli]
@@ -213,7 +213,7 @@ jobs:
timeout-minutes: 3
run: |
TAG=sha-$(git rev-parse --short HEAD)
just run-smoke-cli $TAG
just run smoke-cli $TAG
ibc-bridge-test:
needs: [ run_checker, composer, conductor, sequencer, sequencer-relayer, evm-bridge-withdrawer, cli ]
@@ -240,12 +240,12 @@ jobs:
just deploy cluster
kubectl create secret generic regcred --from-file=.dockerconfigjson=$HOME/.docker/config.json --type=kubernetes.io/dockerconfigjson
echo -e "\n\nDeploying with astria images tagged $TAG"
just ibc-test deploy $TAG
just deploy ibc-test $TAG
- name: Run IBC ICS20 Transfer test
timeout-minutes: 3
run: |
TAG=sha-$(git rev-parse --short HEAD)
just ibc-test run $TAG
just run ibc-test default $TAG
ibc-no-native-asset-test:
needs: [ run_checker, composer, conductor, sequencer, sequencer-relayer, evm-bridge-withdrawer, cli ]
@@ -272,12 +272,12 @@ jobs:
just deploy cluster
kubectl create secret generic regcred --from-file=.dockerconfigjson=$HOME/.docker/config.json --type=kubernetes.io/dockerconfigjson
echo -e "\n\nDeploying with astria images tagged $TAG"
just ibc-test deploy-without-native $TAG
just deploy ibc-test-without-native $TAG
- name: Run IBC utia as native test
timeout-minutes: 3
run: |
TAG=sha-$(git rev-parse --short HEAD)
just ibc-test run-without-native $TAG
just run ibc-test without-native $TAG
ibc-timeout-refund:
needs: [ run_checker, composer, conductor, sequencer, sequencer-relayer, evm-bridge-withdrawer, cli ]
@@ -304,12 +304,12 @@ jobs:
just deploy cluster
kubectl create secret generic regcred --from-file=.dockerconfigjson=$HOME/.docker/config.json --type=kubernetes.io/dockerconfigjson
echo -e "\n\nDeploying with astria images tagged $TAG"
just ibc-test deploy-timeout $TAG
just deploy ibc-test-timeout-refund $TAG
- name: Run IBC ICS20 Transfer test
timeout-minutes: 3
run: |
TAG=sha-$(git rev-parse --short HEAD)
just ibc-test run-timeout $TAG
just run ibc-test timeout-refund $TAG
docker:
if: ${{ always() && !cancelled() }}
20 changes: 7 additions & 13 deletions charts/README.md
Original file line number Diff line number Diff line change
@@ -38,9 +38,6 @@ just deploy cluster
# ingress controller
just deploy ingress-controller

# wait for ingress.
just wait-for-ingress-controller

# Deploys Sequencer + local DA
just deploy astria-local

@@ -51,7 +48,7 @@ just deploy rollup

# w/ custom name and id for further customization see the values file at
# `../dev/values/rollup/dev.yml`
just deploy dev-rollup <rollup_name> <network_id>
just deploy rollup <rollup_name> <network_id>

# Send funds into the rollup chain, by default transfers 10 RIA to the rollup
# using prefunded default test sequencer accounts.
@@ -79,7 +76,7 @@ If you deploy a custom faucet, it will be reachable at
`http://faucet.<rollup_name>.localdev.me`.

By default, no account is funded during geth genesis.
Run `just init-rollup-bridge` to fund the faucet account. This account key is
Run `just init rollup-bridge` to fund the faucet account. This account key is
defined in `../dev/values/rollup/dev.yaml` and is identical to the key in
`./evm-rollup/files/keys/private_key.txt`.

@@ -138,7 +135,7 @@ we have created a local image `astria-sequencer:local`

```sh
# load image into cluster
just load-image astria-sequencer:local
just load-image astria-sequencer
```

To update the chart to utilize the new image, go to `./sequencer/values.yaml`
@@ -175,7 +172,7 @@ To deploy and run this:
# deploys all the components needed to run the test.
> just deploy smoke-test
# deploys all components needed to run the smoke test
> just run-smoke-test
> just run smoke-test
# Runs the smoke test will return failure if fails
> just delete smoke-test
# Clean up deployed test
@@ -191,9 +188,9 @@ working both up and down the stack.

```sh
> just deploy cluster
> just ibc-test deploy
> just ibc-test run
> just ibc-test delete
> just deploy ibc-test
> just run ibc-test
> just delete ibc-test
```

## Examining Deployments
@@ -228,9 +225,6 @@ kubectl get -n astria-dev-cluster pods
# to log a container you need to first grab the pod name from above
kubectl logs -n astria-dev-cluster -c <CONTAINER_NAME> <POD_NAME>

# delete a single deployment
just delete -n astria-dev-cluster deployment <DEPLOYMENT_NAME>

# delete cluster and resources
just clean

Loading