mirror of
https://github.com/siderolabs/talos.git
synced 2025-10-22 21:11:30 +02:00
As of now, we're not using Go profiling, so it's safe to disable it to save some memory and CPU costs. Once we start using it, we can re-enable it conditionally. Each process allocates around 1.4MiB on amd64 for memory profiling buckets. Signed-off-by: Andrey Smirnov <smirnov.andrey@gmail.com>
84 lines
2.0 KiB
Go
84 lines
2.0 KiB
Go
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
package main
|
|
|
|
import (
|
|
"flag"
|
|
"log"
|
|
"runtime"
|
|
|
|
"github.com/talos-systems/talos/internal/app/timed/pkg/ntp"
|
|
"github.com/talos-systems/talos/internal/app/timed/pkg/reg"
|
|
"github.com/talos-systems/talos/pkg/grpc/factory"
|
|
"github.com/talos-systems/talos/pkg/machinery/config/configloader"
|
|
"github.com/talos-systems/talos/pkg/machinery/constants"
|
|
"github.com/talos-systems/talos/pkg/startup"
|
|
)
|
|
|
|
// https://access.redhat.com/solutions/39194
|
|
// Using the above as reference for setting min/max.
|
|
const (
|
|
// TODO: Once we get naming sorted we need to apply
|
|
// for a project specific address
|
|
// https://manage.ntppool.org/manage/vendor
|
|
DefaultServer = "pool.ntp.org"
|
|
)
|
|
|
|
func init() {
|
|
// Explicitly disable memory profiling to save around 1.4MiB of memory.
|
|
runtime.MemProfileRate = 0
|
|
|
|
log.SetFlags(log.Lshortfile | log.Ldate | log.Lmicroseconds | log.Ltime)
|
|
|
|
flag.Parse()
|
|
}
|
|
|
|
// New instantiates a new ntp instance against a given server
|
|
// If no servers are specified, the default will be used.
|
|
func main() {
|
|
if err := startup.RandSeed(); err != nil {
|
|
log.Fatalf("startup: %v", err)
|
|
}
|
|
|
|
server := DefaultServer
|
|
|
|
config, err := configloader.NewFromStdin()
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
// Check if ntp servers are defined
|
|
// Support for only a single time server currently
|
|
if len(config.Machine().Time().Servers()) >= 1 {
|
|
server = config.Machine().Time().Servers()[0]
|
|
}
|
|
|
|
n, err := ntp.NewNTPClient(
|
|
ntp.WithServer(server),
|
|
)
|
|
if err != nil {
|
|
log.Fatalf("failed to create ntp client: %v", err)
|
|
}
|
|
|
|
log.Println("starting timed")
|
|
|
|
errch := make(chan error)
|
|
|
|
go func() {
|
|
errch <- n.Daemon()
|
|
}()
|
|
|
|
go func() {
|
|
errch <- factory.ListenAndServe(
|
|
reg.NewRegistrator(n),
|
|
factory.Network("unix"),
|
|
factory.SocketPath(constants.TimeSocketPath),
|
|
factory.WithDefaultLog(),
|
|
)
|
|
}()
|
|
|
|
log.Fatal(<-errch)
|
|
}
|