mirror of
https://github.com/stefanprodan/podinfo.git
synced 2026-03-03 18:40:21 +00:00
13 lines
181 B
Bash
Executable File
13 lines
181 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
|
|
function finish {
|
|
echo '>>> Test logs'
|
|
kubectl logs -l app=podinfo
|
|
}
|
|
trap finish EXIT
|
|
|
|
echo '>>> Start integration tests'
|
|
helm test podinfo
|