1
0
mirror of https://github.com/aquasecurity/kube-bench.git synced 2024-10-09 17:39:17 +00:00
kube-bench/entrypoint.sh

20 lines
642 B
Bash
Raw Normal View History

2018-05-11 17:44:04 +00:00
#!/bin/sh -e
if [ "$1" == "install" ]; then
if [ -d /host ]; then
mkdir -p /host/cfg/
yes | cp -rf cfg/* /host/cfg/
yes | cp -rf /usr/local/bin/kube-bench /host/
echo "==============================================="
echo "kube-bench is now installed on your host "
echo "Run ./kube-bench to perform a security check "
echo "==============================================="
else
echo "Usage:"
echo " install: docker run --rm -v \`pwd\`:/host aquasec/kube-bench install"
echo " run: docker run --rm --pid=host aquasec/kube-bench [command]"
exit
fi
2017-06-20 06:53:34 +00:00
else
exec kube-bench "$@"
2017-06-20 06:53:34 +00:00
fi