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

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

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