mirror of
https://github.com/siderolabs/talos.git
synced 2025-11-03 09:51:32 +01:00
Fixes #4759 This uses existing features: Talos always generates 32 bytes random node identity, we use first 16 bytes of that to generate `machine-id` in compliant format and mount that into the `kubelet` container. Signed-off-by: Andrey Smirnov <andrey.smirnov@talos-systems.com>
56 lines
1.2 KiB
Go
56 lines
1.2 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 cluster
|
|
|
|
import (
|
|
"crypto/rand"
|
|
"encoding/hex"
|
|
"io"
|
|
|
|
"github.com/jxskiss/base62"
|
|
|
|
"github.com/talos-systems/talos/pkg/machinery/constants"
|
|
"github.com/talos-systems/talos/pkg/machinery/resources/cluster"
|
|
)
|
|
|
|
// IdentitySpec adapter provides identity generation.
|
|
//
|
|
//nolint:revive,golint
|
|
func IdentitySpec(r *cluster.IdentitySpec) identity {
|
|
return identity{
|
|
IdentitySpec: r,
|
|
}
|
|
}
|
|
|
|
type identity struct {
|
|
*cluster.IdentitySpec
|
|
}
|
|
|
|
// Generate new identity.
|
|
func (a identity) Generate() error {
|
|
buf := make([]byte, constants.DefaultNodeIdentitySize)
|
|
|
|
if _, err := io.ReadFull(rand.Reader, buf); err != nil {
|
|
return err
|
|
}
|
|
|
|
a.IdentitySpec.NodeID = base62.EncodeToString(buf)
|
|
|
|
return nil
|
|
}
|
|
|
|
// ConvertMachineID returns /etc/machine-id compatible representation.
|
|
func (a identity) ConvertMachineID() ([]byte, error) {
|
|
raw, err := base62.DecodeString(a.IdentitySpec.NodeID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
buf := make([]byte, 32)
|
|
hex.Encode(buf, raw[:16])
|
|
|
|
return buf, nil
|
|
}
|