mirror of
https://github.com/cunnie/sslip.io.git
synced 2025-09-27 20:12:23 +08:00

- Much of the information was from this blog post: <https://goglides.io/manage-ntp-using-kubernetes/90/> - Curiously, it creates another load balancer, so this brings me up to three load balancers (HTTP(S)/DNS/NTP) - It uses the OpenNTPD server. And ns-aws uses NTPsec, and ns-azure uses the granddaddy, NTP.
7 lines
116 B
Bash
Executable File
7 lines
116 B
Bash
Executable File
#!/bin/sh
|
|
if [ -z "${NTP_CONF_FILE}" ]
|
|
then
|
|
NTP_CONF_FILE="/etc/ntpd.conf"
|
|
fi
|
|
ntpd -v -d -s -f ${NTP_CONF_FILE}
|