Last active
November 11, 2024 03:28
-
-
Save superbrothers/9bb1b7e00007395dc312e6e35f40931e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -e -o pipefail; [[ -n "$DEBUG" ]] && set -x | |
CERT_DIR="${CERT_DIR:-"/usr/local/share/ca-certificates"}" | |
function usage() { | |
echo "Usage: $(basename "$0") [-n name] certflie ..." >&2 | |
} | |
while getopts n: OPT; do | |
case $OPT in | |
n) name="$OPTARG" | |
;; | |
*) usage | |
exit 1 | |
;; | |
esac | |
done | |
shift "$((OPTIND - 1))" | |
name="${name:-"kind"}" | |
if [[ $# -eq 0 ]]; then | |
usage | |
exit 1 | |
fi | |
containers="$(kind get nodes --name="$name" 2>/dev/null)" | |
if [[ "$containers" == "" ]]; then | |
echo "No kind nodes found for cluster \"$name\"" >&2 | |
exit 1 | |
fi | |
while IFS= read -r container; do | |
for certfile in "$@"; do | |
echo "Copying ${certfile} to ${container}:${CERT_DIR}" | |
docker cp "$certfile" "${container}:${CERT_DIR}" | |
done | |
echo "Updating CA certificates in ${container}..." | |
docker exec "$container" update-ca-certificates | |
echo "Restarting containerd" | |
docker exec "$container" systemctl restart containerd | |
done <<< "$containers" | |
# vim: ai ts=2 sw=2 et sts=2 ft=sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks, this script has been helping me a lot