Files
easyai-ai-gateway/scripts/cluster/install-certificate-sync.sh
T
wangbo 5d8ed1f293 fix(deploy): 固定证书同步的香港 SSH Host Key
通过已认证的香港管理连接读取 Ed25519 host 公钥,将 WireGuard 地址 10.77.0.2 的精确键写入宁波 known_hosts,再执行证书同步;不关闭 StrictHostKeyChecking。

验证:远端 host key 格式解析、bash -n、ShellCheck,首次同步因缺少 known_hosts 的现场复现。
2026-07-28 05:53:00 +08:00

63 lines
2.1 KiB
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
script_dir=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
# shellcheck source=scripts/cluster/common.sh
source "$script_dir/common.sh"
load_cluster_env
hongkong_host_key=$(cluster_ssh "$CLUSTER_HONGKONG_HOST" \
"cut -d ' ' -f 1,2 /etc/ssh/ssh_host_ed25519_key.pub")
[[ $hongkong_host_key =~ ^ssh-ed25519\ [A-Za-z0-9+/]+={0,2}$ ]] || {
echo 'invalid Hong Kong SSH host key' >&2
exit 1
}
public_key=$(cluster_ssh "$CLUSTER_NINGBO_HOST" 'bash -s' <<'REMOTE'
set -euo pipefail
install -d -m 0700 /root/.ssh
if [[ ! -f /root/.ssh/id_ed25519_easyai_cert_sync ]]; then
ssh-keygen -q -t ed25519 -N '' -f /root/.ssh/id_ed25519_easyai_cert_sync
fi
cat /root/.ssh/id_ed25519_easyai_cert_sync.pub
REMOTE
)
[[ $public_key == ssh-ed25519\ * ]] || {
echo 'invalid certificate sync public key' >&2
exit 1
}
cluster_ssh "$CLUSTER_HONGKONG_HOST" bash -s -- "$public_key" <<'REMOTE'
set -euo pipefail
public_key=$1
install -d -m 0700 /root/.ssh
touch /root/.ssh/authorized_keys
chmod 0600 /root/.ssh/authorized_keys
grep -Fqx "$public_key" /root/.ssh/authorized_keys || printf '%s\n' "$public_key" >>/root/.ssh/authorized_keys
REMOTE
cluster_ssh "$CLUSTER_NINGBO_HOST" bash -s -- "$hongkong_host_key" <<'REMOTE'
set -euo pipefail
hongkong_host_key=$1
install -d -m 0700 /root/.ssh
known_hosts=/root/.ssh/known_hosts
temporary=$(mktemp /root/.ssh/known_hosts.XXXXXX)
if [[ -f $known_hosts ]]; then
grep -Ev '^10\.77\.0\.2([ ,]|$)' "$known_hosts" >"$temporary" || true
fi
printf '10.77.0.2 %s\n' "$hongkong_host_key" >>"$temporary"
chmod 0600 "$temporary"
mv "$temporary" "$known_hosts"
REMOTE
cluster_scp "$script_dir/sync-nginx-certificate.sh" \
"$CLUSTER_NINGBO_HOST:/usr/local/sbin/easyai-sync-nginx-certificate"
cluster_ssh "$CLUSTER_NINGBO_HOST" 'bash -s' <<'REMOTE'
set -euo pipefail
chmod 0750 /usr/local/sbin/easyai-sync-nginx-certificate
install -d -m 0755 /etc/letsencrypt/renewal-hooks/deploy
ln -sfn /usr/local/sbin/easyai-sync-nginx-certificate \
/etc/letsencrypt/renewal-hooks/deploy/easyai-sync-nginx-certificate
/usr/local/sbin/easyai-sync-nginx-certificate
REMOTE
echo 'certificate_sync_install=PASS'