diff options
author | Samruddhi Khandale <skhandale@microsoft.com> | 2023-02-07 22:45:48 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-07 22:45:48 +0300 |
commit | 4a9929f96485061e3778b35848e21d7c3c193480 (patch) | |
tree | 7f483a2cacb4aaa431e7bcf1ae0d52c454f1d3f5 /test/kubectl-helm-minikube/install_only_kubectl.sh | |
parent | 36d7664ebab393f0033bbc25394c67e3aed3efb1 (diff) |
kubectl-helm-minikube: Allow none (#442)feature_kubectl-helm-minikube_1.1.4
Diffstat (limited to 'test/kubectl-helm-minikube/install_only_kubectl.sh')
-rw-r--r-- | test/kubectl-helm-minikube/install_only_kubectl.sh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/kubectl-helm-minikube/install_only_kubectl.sh b/test/kubectl-helm-minikube/install_only_kubectl.sh new file mode 100644 index 0000000..442ef64 --- /dev/null +++ b/test/kubectl-helm-minikube/install_only_kubectl.sh @@ -0,0 +1,22 @@ +#!/bin/bash +set -e + +# Optional: Import test library +source dev-container-features-test-lib + +set +e + kubectl + exit_code=$? + check "kubectl-is-not-installed" bash -c "echo ${exit_code} | grep 127" + + helm version + exit_code=$? + check "helm-is-not-installed" bash -c "echo ${exit_code} | grep 127" + + minikube version + exit_code=$? + check "minikube is-not-installed" bash -c "echo ${exit_code} | grep 127" +set -e + +# Report result +reportResults |