github.com/cilium/cilium@v1.16.2/pkg/node/bootid.go (about) 1 // SPDX-License-Identifier: Apache-2.0 2 // Copyright Authors of Cilium 3 4 package node 5 6 import "sync" 7 8 var ( 9 localBootID string 10 logOnce sync.Once 11 ) 12 13 func GetBootID() string { 14 logOnce.Do(func() { 15 log.Infof("Local boot ID is %q", localBootID) 16 }) 17 return localBootID 18 }