2019-11-11 22:18:26 +00:00
|
|
|
package cluster
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"context"
|
|
|
|
|
2020-11-30 23:45:22 +00:00
|
|
|
"github.com/k3s-io/kine/pkg/client"
|
2019-11-11 22:18:26 +00:00
|
|
|
"github.com/rancher/k3s/pkg/bootstrap"
|
|
|
|
)
|
|
|
|
|
2020-09-24 06:29:25 +00:00
|
|
|
// save writes the current ControlRuntimeBootstrap data to the datastore. This contains a complete
|
|
|
|
// snapshot of the cluster's CA certs and keys, encryption passphrases, etc - encrypted with the join token.
|
|
|
|
// This is used when bootstrapping a cluster from a managed database or external etcd cluster.
|
|
|
|
// This is NOT used with embedded etcd, which bootstraps over HTTP.
|
2019-11-11 22:18:26 +00:00
|
|
|
func (c *Cluster) save(ctx context.Context) error {
|
|
|
|
buf := &bytes.Buffer{}
|
|
|
|
if err := bootstrap.Write(buf, &c.runtime.ControlRuntimeBootstrap); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
data, err := encrypt(c.config.Token, buf.Bytes())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return c.storageClient.Create(ctx, storageKey(c.config.Token), data)
|
|
|
|
}
|
|
|
|
|
2020-09-24 06:29:25 +00:00
|
|
|
// storageBootstrap loads data from the datastore into the ControlRuntimeBootstrap struct.
|
|
|
|
// The storage key and encryption passphrase are both derived from the join token.
|
2020-05-05 21:59:15 +00:00
|
|
|
func (c *Cluster) storageBootstrap(ctx context.Context) error {
|
2019-11-11 22:18:26 +00:00
|
|
|
if err := c.startStorage(ctx); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
storageClient, err := client.New(c.etcdConfig)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
c.storageClient = storageClient
|
|
|
|
|
|
|
|
value, err := storageClient.Get(ctx, storageKey(c.config.Token))
|
|
|
|
if err == client.ErrNotFound {
|
|
|
|
c.saveBootstrap = true
|
|
|
|
return nil
|
|
|
|
} else if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
data, err := decrypt(c.config.Token, value.Data)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return bootstrap.Read(bytes.NewBuffer(data), &c.runtime.ControlRuntimeBootstrap)
|
|
|
|
}
|