Skip to content
Snippets Groups Projects
Unverified Commit cbe02e1d authored by jerbia's avatar jerbia Committed by GitHub
Browse files

Fixed typo in entrypoint.sh (#86)

The entrypoint.sh had a typo where it tried coping files from "/kube-bench" instead of just "/".
parent e7152265
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
if [ -d /host ]; then
mkdir -p /host/cfg/
yes | cp -rf ./kube-bench/cfg/* /host/cfg/
yes | cp -rf ./kube-bench/kube-bench /host/
yes | cp -rf /cfg/* /host/cfg/
yes | cp -rf /kube-bench /host/
echo "==============================================="
echo "kube-bench is now installed on your host "
echo "Run ./kube-bench to perform a security check "
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment