11 lines
160 B
Bash
Executable file
11 lines
160 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
[[ $DEBUG ]] && set -x
|
|
|
|
set -eof pipefail
|
|
|
|
# include env
|
|
. hack/e2e-internal/e2e-env.sh
|
|
|
|
echo "Kubernetes information:"
|
|
${KUBECTL} version
|