build-deploy-app.sh 370 B

1234567891011121314
  1. #!/usr/bin/env bash
  2. set -o errexit
  3. set -o nounset
  4. set -o pipefail
  5. # shellcheck disable=SC1091
  6. source hack/get-tools.sh
  7. plantbuild push ./plantbuild/build.jsonnet
  8. plantbuild k8s_set_images ./plantbuild/images.jsonnet
  9. NAMESPACE="qor5-test"
  10. echo "kubectl -n $NAMESPACE get deploy -o name | xargs -n1 kubectl -n $NAMESPACE rollout status --timeout 150s" | $KUBECTL_BASH