Commit 9a5b7e2f authored by Josh McSavaney's avatar Josh McSavaney

Pattern match for https check instead of grep

parent 12235fe7
......@@ -153,9 +153,14 @@ setup_env() {
if [ -z "${K3S_TOKEN}" ] && [ -z "${K3S_CLUSTER_SECRET}" ]; then
fatal "Defaulted k3s exec command to 'agent' because K3S_URL is defined, but K3S_TOKEN or K3S_CLUSTER_SECRET is not defined."
fi
if ! echo "${K3S_URL}" | grep -q "^https://"; then
fatal "Only https:// URLs are supported for K3S_URL (have ${K3S_URL})"
fi
case "${K3S_URL}" in
https://*)
;;
*)
fatal "Only https:// URLs are supported for K3S_URL (have ${K3S_URL})"
;;
esac
CMD_K3S=agent
fi
;;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment