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

fix(just): just commands didn't work after chart reorg #113

Merged
merged 1 commit into from
Oct 13, 2023
Merged
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
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