Skip to content

Commit

Permalink
Update driver-loader docker-entrypoint
Browse files Browse the repository at this point in the history
Remove debug log
Set default option ENABLE_COMPILE and ENABLE_DOWNLOAD

Signed-off-by: Paul Rey <[email protected]>
  • Loading branch information
Sryther authored Mar 20, 2024
1 parent cee5025 commit e4b620d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docker/driver-loader/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,9 @@ while test $# -gt 0; do
shift
done

echo "Extra args: $extra_args"
if [ -z "$has_opts" ]; then
ENABLE_COMPILE="true"
ENABLE_DOWNLOAD="true"
fi

/usr/bin/falcoctl driver install --compile=$ENABLE_COMPILE --download=$ENABLE_DOWNLOAD --http-insecure=$HTTP_INSECURE --http-headers="$FALCOCTL_DRIVER_HTTP_HEADERS" $extra_args

0 comments on commit e4b620d

Please sign in to comment.