mirror of
https://github.com/stefanprodan/podinfo.git
synced 2026-03-04 19:10:26 +00:00
13 lines
230 B
Bash
Executable File
13 lines
230 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")"
|
|
|
|
echo '>>> Testing'
|
|
helm test podinfo
|
|
|
|
echo '>>> Test logs'
|
|
kubectl logs -l app=podinfo
|