mirror of
https://github.com/stefanprodan/podinfo.git
synced 2026-03-03 18:40:21 +00:00
17 lines
272 B
Bash
Executable File
17 lines
272 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
|
|
REPO_ROOT=$(git rev-parse --show-toplevel)
|
|
export KUBECONFIG="$(kind get kubeconfig-path --name="kind")"
|
|
|
|
function finish {
|
|
echo '>>> Test logs'
|
|
kubectl logs -l app=podinfo
|
|
}
|
|
trap finish EXIT
|
|
|
|
echo '>>> Testing'
|
|
helm test podinfo
|
|
|