Add platform infrastructure configuration

This commit is contained in:
donghyeon-ka
2026-08-28 17:35:41 +09:00
parent fa76531e5b
commit 16c337bcc9
302 changed files with 83259 additions and 1 deletions
+22
View File
@@ -0,0 +1,22 @@
#!/usr/bin/bash
set -Eeuo pipefail
set +x
umask 077
ulimit -c 0
if [[ "${BASH_SOURCE[0]}" == */* ]]; then
_swr_wrapper_directory="${BASH_SOURCE[0]%/*}"
else
_swr_wrapper_directory='.'
fi
readonly SWR_REPOSITORY_ROOT="$(cd -- "${_swr_wrapper_directory}/../.." && pwd -P)"
readonly SWR_RECOVERY_CONTRACT="${SWR_REPOSITORY_ROOT}/infrastructure/security/k3s/local-recovery.env"
unset _swr_wrapper_directory
# shellcheck source=/dev/null
source "${SWR_REPOSITORY_ROOT}/scripts/lib/slack-webhook-recovery.sh"
if [[ "${BASH_SOURCE[0]}" == "$0" ]]; then
_swr_main "$@"
fi