kops/nodeup/pkg/model/ntp.go

119 lines
3.3 KiB
Go

/*
Copyright 2019 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package model
import (
"k8s.io/klog/v2"
"k8s.io/kops/pkg/apis/kops"
"k8s.io/kops/upup/pkg/fi"
"k8s.io/kops/upup/pkg/fi/nodeup/nodetasks"
"k8s.io/kops/util/pkg/distributions"
)
// NTPBuilder installs and starts NTP, to ensure accurate clock times.
// As well as general log confusion, clock-skew of more than 5 minutes
// causes AWS API calls to fail
type NTPBuilder struct {
*NodeupModelContext
}
var _ fi.NodeupModelBuilder = &NTPBuilder{}
// Build is responsible for configuring NTP
func (b *NTPBuilder) Build(c *fi.NodeupModelBuilderContext) error {
if b.NodeupModelContext.NodeupConfig.NTPUnmanaged {
klog.Infof("Managed is set to false; won't install NTP")
return nil
}
switch b.Distribution {
case distributions.DistributionContainerOS:
klog.Infof("Detected ContainerOS; won't install ntp")
return nil
case distributions.DistributionFlatcar:
klog.Infof("Detected Flatcar; won't install ntp")
return nil
}
var ntpHost string
switch b.BootConfig.CloudProvider {
case kops.CloudProviderAWS:
ntpHost = "169.254.169.123"
case kops.CloudProviderGCE:
ntpHost = "time.google.com"
default:
ntpHost = ""
}
if !b.RunningOnGCE() && !b.RunningOnAzure() && b.Distribution.IsUbuntu() && b.Distribution.Version() <= 20.04 {
if ntpHost != "" {
c.AddTask(b.buildTimesyncdConf("/etc/systemd/timesyncd.conf", ntpHost))
}
c.AddTask((&nodetasks.Service{Name: "systemd-timesyncd"}).InitDefaults())
} else if b.Distribution.IsDebianFamily() {
c.AddTask(&nodetasks.Package{Name: "chrony"})
if ntpHost != "" {
c.AddTask(b.buildChronydConf("/etc/chrony/chrony.conf", ntpHost))
}
c.AddTask((&nodetasks.Service{Name: "chrony"}).InitDefaults())
} else if b.Distribution.IsRHELFamily() {
c.AddTask(&nodetasks.Package{Name: "chrony"})
if ntpHost != "" {
c.AddTask(b.buildChronydConf("/etc/chrony.conf", ntpHost))
}
c.AddTask((&nodetasks.Service{Name: "chronyd"}).InitDefaults())
} else {
klog.Warningf("unknown distribution, skipping ntp install: %v", b.Distribution)
return nil
}
return nil
}
func (b *NTPBuilder) buildChronydConf(path string, host string) *nodetasks.File {
conf := `# Built by kOps - do NOT edit
pool ` + host + ` prefer iburst
driftfile /var/lib/chrony/drift
leapsectz right/UTC
logdir /var/log/chrony
makestep 1.0 3
maxupdateskew 100.0
rtcsync
`
return &nodetasks.File{
Path: path,
Contents: fi.NewStringResource(conf),
Type: nodetasks.FileType_File,
Mode: s("0644"),
}
}
func (b *NTPBuilder) buildTimesyncdConf(path string, host string) *nodetasks.File {
conf := `# Built by Kops - do NOT edit
[Time]
NTP=` + host + `
`
return &nodetasks.File{
Path: path,
Contents: fi.NewStringResource(conf),
Type: nodetasks.FileType_File,
Mode: s("0644"),
}
}