diff --git a/justfile b/justfile index 4f2c47e39..3275e4e31 100644 --- a/justfile +++ b/justfile @@ -142,14 +142,6 @@ apply-runtime target=default_deploy_target platform=default_platform: apply target=default_deploy_target: #!/usr/bin/env bash set -euo pipefail - case {{ target }} in - "openssl" | "emojivoto" | "volume-stateful-set") - : - ;; - *) - kubectl apply -f ./{{ workspace_dir }}/deployment/ns.yml - ;; - esac kubectl apply -f ./{{ workspace_dir }}/deployment # Delete Kubernetes manifests. @@ -175,15 +167,7 @@ undeploy platform=default_platform: --cascade=foreground \ --ignore-not-found fi - if [[ -f ./{{ workspace_dir }}/deployment/ns.yml ]]; then - kubectl delete \ - -f ./{{ workspace_dir }}/deployment \ - --ignore-not-found \ - --grace-period=30 \ - --timeout=10m - else - kubectl delete namespace $ns - fi + kubectl delete namespace $ns upload-image: # Ensure that the resource group exists.