mirror of
https://github.com/rancher/k3k.git
synced 2026-08-19 04:16:16 +00:00
* fix: handle empty port in HCP mode LoadBalancer URL parsing Assisted-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> * fix lint --------- Co-authored-by: Enrico Candino <enrico.candino@suse.com>
231 lines
6.4 KiB
Go
231 lines
6.4 KiB
Go
package cluster
|
|
|
|
import (
|
|
"cmp"
|
|
"context"
|
|
"fmt"
|
|
"net"
|
|
"strconv"
|
|
|
|
"sigs.k8s.io/controller-runtime/pkg/controller/controllerutil"
|
|
|
|
corev1 "k8s.io/api/core/v1"
|
|
discoveryv1 "k8s.io/api/discovery/v1"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
ctrl "sigs.k8s.io/controller-runtime"
|
|
|
|
"github.com/rancher/k3k/pkg/apis/k3k.io/v1beta1"
|
|
"github.com/rancher/k3k/pkg/controller/cluster/server"
|
|
)
|
|
|
|
// findNonLoopbackSAN returns the first non-loopback address from the given
|
|
// TLS SANs. Returns empty string if none is found.
|
|
func findNonLoopbackSAN(sans []string) string {
|
|
for _, san := range sans {
|
|
if san == "localhost" {
|
|
continue
|
|
}
|
|
|
|
if ip := net.ParseIP(san); ip != nil && ip.IsLoopback() {
|
|
continue
|
|
}
|
|
|
|
return san
|
|
}
|
|
|
|
return ""
|
|
}
|
|
|
|
// ensureHCPKubernetesEndpointSlice maintains the default/kubernetes Service
|
|
// EndpointSlice inside the virtual cluster, pointing it at the externally
|
|
// reachable host:port (NodePort / LoadBalancer / Ingress) so that pods
|
|
// scheduled on external worker nodes can reach the in-cluster apiserver
|
|
// ClusterIP.
|
|
//
|
|
// Background: the kube-apiserver normally reconciles default/kubernetes
|
|
// EndpointSlice to its own --advertise-address:--secure-port (the host-cluster
|
|
// pod IP and 6443). External worker nodes have no route to the host-cluster
|
|
// pod CIDR, so kube-proxy DNAT to that endpoint fails. We disable the
|
|
// apiserver reconciler in HCP mode (see serverOptions) and own this
|
|
// EndpointSlice object instead.
|
|
func (c *ClusterReconciler) ensureHCPKubernetesEndpointSlice(ctx context.Context, cluster *v1beta1.Cluster) error {
|
|
log := ctrl.LoggerFrom(ctx)
|
|
|
|
url, err := server.ServerURL(ctx, c.Client, cluster, findNonLoopbackSAN(cluster.Spec.TLSSANs))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
portStr := cmp.Or(url.Port(), "443")
|
|
|
|
port, err := strconv.Atoi(portStr)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
addr, err := hcpEndpointAddress(ctx, url.Hostname())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
var addressType discoveryv1.AddressType
|
|
|
|
if ip := net.ParseIP(addr.IP); ip != nil {
|
|
if ip.To4() != nil {
|
|
addressType = discoveryv1.AddressTypeIPv4
|
|
} else {
|
|
addressType = discoveryv1.AddressTypeIPv6
|
|
}
|
|
} else {
|
|
return fmt.Errorf("invalid IP address %q", addr.IP)
|
|
}
|
|
|
|
virtClient, err := newVirtualClient(ctx, c.Client, cluster.Name, cluster.Namespace)
|
|
if err != nil {
|
|
return fmt.Errorf("creating virtual cluster client: %w", err)
|
|
}
|
|
|
|
endpointSlice := &discoveryv1.EndpointSlice{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: "kubernetes",
|
|
Namespace: metav1.NamespaceDefault,
|
|
},
|
|
}
|
|
|
|
_, err = controllerutil.CreateOrUpdate(ctx, virtClient, endpointSlice, func() error {
|
|
if endpointSlice.Labels == nil {
|
|
endpointSlice.Labels = make(map[string]string)
|
|
}
|
|
|
|
// Ensure the service-name label is set
|
|
endpointSlice.Labels[discoveryv1.LabelServiceName] = "kubernetes"
|
|
endpointSlice.AddressType = addressType
|
|
|
|
endpointSlice.Endpoints = []discoveryv1.Endpoint{
|
|
{Addresses: []string{addr.IP}},
|
|
}
|
|
|
|
endpointSlice.Ports = []discoveryv1.EndpointPort{
|
|
{
|
|
Name: new("https"),
|
|
Port: new(int32(port)),
|
|
Protocol: new(corev1.ProtocolTCP),
|
|
},
|
|
}
|
|
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
return fmt.Errorf("upserting default/kubernetes endpointslice in virtual cluster: %w", err)
|
|
}
|
|
|
|
log.V(1).Info("HCP kubernetes endpointslice reconciled", "address", addr.IP, "host", url.Hostname(), "port", port)
|
|
|
|
return nil
|
|
}
|
|
|
|
func (c *ClusterReconciler) ensureHCPKubernetesEndpoints(ctx context.Context, cluster *v1beta1.Cluster) error {
|
|
log := ctrl.LoggerFrom(ctx)
|
|
|
|
url, err := server.ServerURL(ctx, c.Client, cluster, findNonLoopbackSAN(cluster.Spec.TLSSANs))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
addr, err := hcpEndpointAddress(ctx, url.Hostname())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
virtClient, err := newVirtualClient(ctx, c.Client, cluster.Name, cluster.Namespace)
|
|
if err != nil {
|
|
return fmt.Errorf("creating virtual cluster client: %w", err)
|
|
}
|
|
|
|
//nolint:staticcheck // SA1019 corev1.Endpoints is deprecated in v1.33+, but needed in the Conformance tests
|
|
// We are already using the discoveryv1.EndpointSlice
|
|
endpoints := &corev1.Endpoints{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: "kubernetes",
|
|
Namespace: metav1.NamespaceDefault,
|
|
},
|
|
}
|
|
|
|
portStr := cmp.Or(url.Port(), "443")
|
|
|
|
port, err := strconv.Atoi(portStr)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
_, err = controllerutil.CreateOrUpdate(ctx, virtClient, endpoints, func() error {
|
|
if endpoints.Labels == nil {
|
|
endpoints.Labels = make(map[string]string)
|
|
}
|
|
|
|
// Ensure the skip-mirror label is set
|
|
endpoints.Labels[discoveryv1.LabelSkipMirror] = "true"
|
|
|
|
//nolint:staticcheck // SA1019 corev1.EndpointSubset is deprecated in v1.33+, but needed in the Conformance tests
|
|
endpoints.Subsets = []corev1.EndpointSubset{
|
|
{
|
|
Addresses: []corev1.EndpointAddress{addr},
|
|
Ports: []corev1.EndpointPort{
|
|
{
|
|
Name: "https",
|
|
Port: int32(port),
|
|
Protocol: corev1.ProtocolTCP,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
return fmt.Errorf("upserting default/kubernetes endpoints in virtual cluster: %w", err)
|
|
}
|
|
|
|
log.V(1).Info("HCP kubernetes endpoints reconciled", "address", addr.IP, "host", url.Host, "port", port)
|
|
|
|
return nil
|
|
}
|
|
|
|
// hcpEndpointAddress builds a corev1.EndpointAddress from the externally
|
|
// reachable host. Endpoints require an IP; if the host is a DNS name we
|
|
// resolve it. The Hostname field is intentionally left unset:
|
|
// the kubernetes API validates it as a DNS-1123 label (no dots),
|
|
// so an FQDN like "host.example.com" would be rejected.
|
|
func hcpEndpointAddress(ctx context.Context, host string) (corev1.EndpointAddress, error) {
|
|
if ip := net.ParseIP(host); ip != nil {
|
|
if ip.IsLoopback() {
|
|
return corev1.EndpointAddress{}, fmt.Errorf("HCP endpoint host %q is a loopback address and cannot be used", host)
|
|
}
|
|
|
|
return corev1.EndpointAddress{IP: host}, nil
|
|
}
|
|
|
|
ipAddrs, err := net.DefaultResolver.LookupIPAddr(ctx, host)
|
|
if err != nil {
|
|
return corev1.EndpointAddress{}, fmt.Errorf("HCP endpoint host %q is not an IP and does not resolve: %w", host, err)
|
|
}
|
|
|
|
var filteredIPs []net.IP
|
|
|
|
for _, addr := range ipAddrs {
|
|
if !addr.IP.IsLoopback() {
|
|
filteredIPs = append(filteredIPs, addr.IP)
|
|
}
|
|
}
|
|
|
|
if len(filteredIPs) == 0 {
|
|
return corev1.EndpointAddress{}, fmt.Errorf("HCP endpoint host %q resolved to no non-loopback IPs", host)
|
|
}
|
|
|
|
if v4 := filteredIPs[0].To4(); v4 != nil {
|
|
return corev1.EndpointAddress{IP: v4.String()}, nil
|
|
}
|
|
|
|
return corev1.EndpointAddress{IP: filteredIPs[0].String()}, nil
|
|
}
|