Как запретить использование chrony и использовать NTP-демоны на узлах?

  1. Выключите модуль chrony.

  2. Создайте 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