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