Andrey Smirnov b914398154 refactor: split kubernetes/etcd resource generation into subresources
Fixes #3062

There's no user-visible change in this PR.

It carefully separates generated secrets (e.g. certs) from source
secrets from the config (e.g. CAs), so that certs are generated on
config changes which actually affect cert input.

And same way separates etcd and Kubernetes PKI, so if etcd CA got
changed, only etcd certs will be regenerated.

This should have noticeable impact with RSA-based PKI as it reduces
number of times PKI gets generated.

Signed-off-by: Andrey Smirnov <smirnov.andrey@gmail.com>
2021-02-18 22:01:28 -08:00

90 lines
2.4 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 kubeconfig
import (
"encoding/base64"
"fmt"
"io"
"net/url"
"text/template"
"time"
"github.com/talos-systems/crypto/x509"
"github.com/talos-systems/talos/pkg/machinery/config"
"github.com/talos-systems/talos/pkg/machinery/constants"
)
const adminKubeConfigTemplate = `apiVersion: v1
kind: Config
clusters:
- name: {{ .Cluster }}
cluster:
server: {{ .Server }}
certificate-authority-data: {{ .CACert }}
users:
- name: admin@{{ .Cluster }}
user:
client-certificate-data: {{ .AdminCert }}
client-key-data: {{ .AdminKey }}
contexts:
- context:
cluster: {{ .Cluster }}
namespace: default
user: admin@{{ .Cluster }}
name: admin@{{ .Cluster }}
current-context: admin@{{ .Cluster }}
`
// GenerateAdminInput is the interface for the GenerateAdmin function.
//
// This interface is implemented by config.Cluster().
type GenerateAdminInput interface {
Name() string
Endpoint() *url.URL
CA() *x509.PEMEncodedCertificateAndKey
AdminKubeconfig() config.AdminKubeconfig
}
// GenerateAdmin generates admin kubeconfig for the cluster.
func GenerateAdmin(config GenerateAdminInput, out io.Writer) error {
tpl, err := template.New("kubeconfig").Parse(adminKubeConfigTemplate)
if err != nil {
return fmt.Errorf("error parsing kubeconfig template: %w", err)
}
k8sCA, err := x509.NewCertificateAuthorityFromCertificateAndKey(config.CA())
if err != nil {
return fmt.Errorf("error getting Kubernetes CA: %w", err)
}
adminCert, err := x509.NewKeyPair(k8sCA,
x509.CommonName(constants.KubernetesAdminCertCommonName),
x509.Organization(constants.KubernetesAdminCertOrganization),
x509.NotAfter(time.Now().Add(config.AdminKubeconfig().CertLifetime())))
if err != nil {
return fmt.Errorf("error generating admin certificate: %w", err)
}
adminCertPEM := x509.NewCertificateAndKeyFromKeyPair(adminCert)
input := struct {
Cluster string
CACert string
AdminCert string
AdminKey string
Server string
}{
Cluster: config.Name(),
CACert: base64.StdEncoding.EncodeToString(config.CA().Crt),
AdminCert: base64.StdEncoding.EncodeToString(adminCertPEM.Crt),
AdminKey: base64.StdEncoding.EncodeToString(adminCertPEM.Key),
Server: config.Endpoint().String(),
}
return tpl.Execute(out, input)
}