Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Commit

Permalink
fix(just): just commands didn't work after chart reorg (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
joroshiba authored Oct 13, 2023
1 parent 1a578b7 commit 9846daa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ load-image image:
kind load docker-image {{image}} --name astria-dev-cluster

deploy-chart chart:
helm install --debug {{chart}}-chart ./helm/{{chart}}
helm install --debug {{chart}}-chart ./charts/{{chart}}

delete-chart chart:
helm uninstall {{chart}}-chart

redeploy-chart chart:
helm uninstall {{chart}}-chart
helm install --debug {{chart}}-chart ./helm/{{chart}}
helm install --debug {{chart}}-chart ./charts/{{chart}}

restart deployment:
kubectl rollout restart -n astria-dev-cluster deployment {{deployment}}
Expand All @@ -48,7 +48,7 @@ deploy-rollup rollupName=defaultRollupName networkId=defaultNetworkId genesisAll
{{ if networkId != '' { replace('--set evmNetworkId=#', '#', networkId) } else { '' } }} \
{{ if genesisAllocAddress != '' { replace('--set genesisAllocAddress=#', '#', genesisAllocAddress) } else { '' } }} \
{{ if privateKey != '' { replace('--set privateKey=#', '#', privateKey) } else { '' } }} \
{{rollupName}}chain-chart-deploy ./helm/rollup
{{rollupName}}chain-chart-deploy ./charts/rollup

wait-for-rollup rollupName=defaultRollupName:
kubectl wait -n astria-dev-cluster deployment {{rollupName}}-geth --for=condition=Available=True --timeout=600s
Expand Down

0 comments on commit 9846daa

Please sign in to comment.