How do I disable chrony and use NTP daemon on nodes?
-
Disable usage of chrony module.
-
Create
NodeGroupConfiguration
custom step to enable use NTP daemon on nodes (example forsystemd-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