Как запретить использование chrony и использовать NTP-демоны на узлах?
-
Выключите модуль chrony.
-
Создайте
NodeGroupConfiguration
custom step, чтобы включить NTP-демоны на узлах (пример дляsystemd-timesyncd
):apiVersion: deckhouse.io/v1alpha1 kind: NodeGroupConfiguration metadata: name: enable-ntp-on-node.sh spec: weight: 100 nodeGroups: ["*"] bundles: ["*"] content: | systemctl enable systemd-timesyncd systemctl start systemd-timesyncd