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