mirror of
https://github.com/siderolabs/talos.git
synced 2026-05-05 12:26:21 +02:00
Many small changes, linting fixes, migration to moby/moby client package. Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
113 lines
2.7 KiB
Go
113 lines
2.7 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 docker
|
|
|
|
import (
|
|
"context"
|
|
"net"
|
|
"net/netip"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/moby/moby/client"
|
|
|
|
"github.com/siderolabs/talos/pkg/machinery/config/machine"
|
|
"github.com/siderolabs/talos/pkg/machinery/constants"
|
|
"github.com/siderolabs/talos/pkg/provision"
|
|
)
|
|
|
|
//nolint:gocyclo
|
|
func (p *provisioner) Reflect(ctx context.Context, clusterName, stateDirectory string) (provision.Cluster, error) {
|
|
res := &result{
|
|
clusterInfo: provision.ClusterInfo{
|
|
ClusterName: clusterName,
|
|
},
|
|
statePath: stateDirectory,
|
|
}
|
|
|
|
// find network assuming network name == cluster name
|
|
networks, err := p.listNetworks(ctx, clusterName)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if len(networks) > 0 {
|
|
network := networks[0]
|
|
|
|
cidr := network.IPAM.Config[0].Subnet
|
|
|
|
res.clusterInfo.Network.Name = network.Name
|
|
res.clusterInfo.Network.CIDRs = []netip.Prefix{cidr}
|
|
res.clusterInfo.Network.GatewayAddrs = []netip.Addr{network.IPAM.Config[0].Gateway}
|
|
|
|
mtuStr, ok := network.Options["com.docker.network.driver.mtu"]
|
|
if !ok {
|
|
mtuStr = network.Options["mtu"] // Use the podman version of the option
|
|
}
|
|
|
|
res.clusterInfo.Network.MTU, err = strconv.Atoi(mtuStr)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
// find nodes (containers)
|
|
nodes, err := p.listNodes(ctx, clusterName)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var mappedKubernetesPort string
|
|
|
|
for _, node := range nodes {
|
|
t, err := machine.ParseType(node.Labels["talos.type"])
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
container, err := p.client.ContainerInspect(ctx, node.ID, client.ContainerInspectOptions{})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var ips []netip.Addr
|
|
|
|
if network, ok := node.NetworkSettings.Networks[res.clusterInfo.Network.Name]; ok {
|
|
ip := network.IPAddress
|
|
if ip.IsUnspecified() && network.IPAMConfig != nil {
|
|
ip = network.IPAMConfig.IPv4Address
|
|
}
|
|
|
|
ips = append(ips, ip)
|
|
}
|
|
|
|
for port, portBinding := range container.Container.HostConfig.PortBindings {
|
|
if port.Num() == constants.DefaultControlPlanePort {
|
|
for _, binding := range portBinding {
|
|
mappedKubernetesPort = binding.HostPort
|
|
}
|
|
}
|
|
}
|
|
|
|
res.clusterInfo.Nodes = append(res.clusterInfo.Nodes,
|
|
provision.NodeInfo{
|
|
ID: node.ID,
|
|
Name: strings.TrimLeft(node.Names[0], "/"),
|
|
Type: t,
|
|
|
|
IPs: ips,
|
|
|
|
NanoCPUs: container.Container.HostConfig.Resources.NanoCPUs,
|
|
Memory: container.Container.HostConfig.Resources.Memory,
|
|
})
|
|
}
|
|
|
|
if mappedKubernetesPort != "" {
|
|
res.clusterInfo.KubernetesEndpoint = "https://" + net.JoinHostPort("127.0.0.1", mappedKubernetesPort)
|
|
}
|
|
|
|
return res, nil
|
|
}
|