Skip to content

Commit

Permalink
just: fix deploy after undeploy
Browse files Browse the repository at this point in the history
As undeploy will now delete the namespace including the node-installer
we must re-deploy it when calling deploy.

Signed-off-by: Paul Meyer <[email protected]>
  • Loading branch information
katexochen committed Aug 21, 2024
1 parent 8c7da2c commit fc1571c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Undeploy, rebuild, deploy.
default target=default_deploy_target platform=default_platform cli=default_cli: soft-clean coordinator initializer openssl port-forwarder service-mesh-proxy (node-installer platform) (runtime target platform) (apply "runtime") (deploy target cli platform) set verify (wait-for-workload target)
default target=default_deploy_target platform=default_platform cli=default_cli: soft-clean coordinator initializer openssl port-forwarder service-mesh-proxy (node-installer platform) (deploy target cli platform) set verify (wait-for-workload target)

# Build and push a container image.
push target:
Expand Down Expand Up @@ -62,7 +62,7 @@ e2e target=default_deploy_target platform=default_platform: soft-clean coordinat
--skip-undeploy=true
# Generate policies, apply Kubernetes manifests.
deploy target=default_deploy_target cli=default_cli platform=default_platform: (populate target platform) (generate cli platform) (apply target)
deploy target=default_deploy_target cli=default_cli platform=default_platform: (runtime target platform) (apply "runtime") (populate target platform) (generate cli platform) (apply target)
# Populate the workspace with a runtime class deployment
runtime target=default_deploy_target platform=default_platform:
Expand Down

0 comments on commit fc1571c

Please sign in to comment.