Little helper to run CNCF's k3s in Docker
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
k3d/pkg/cluster/cluster.go

216 lines
6.5 KiB

/*
Copyright © 2019 Thorsten Klein <iwilltry42@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
package cluster
5 years ago
import (
5 years ago
"fmt"
"strings"
5 years ago
k3drt "github.com/rancher/k3d/pkg/runtimes"
k3d "github.com/rancher/k3d/pkg/types"
"github.com/rancher/k3d/pkg/util"
log "github.com/sirupsen/logrus"
5 years ago
)
// CreateCluster creates a new cluster consisting of
// - some containerized k3s nodes
// - a docker network
func CreateCluster(cluster *k3d.Cluster, runtime k3drt.Runtime) error {
/*
* Network
*/
5 years ago
5 years ago
// generate cluster network name, if not set
if cluster.Network == "" {
cluster.Network = fmt.Sprintf("%s-%s", k3d.DefaultObjectNamePrefix, cluster.Name)
}
// create cluster network or use an existing one
networkID, networkExists, err := runtime.CreateNetworkIfNotPresent(cluster.Network)
if err != nil {
log.Errorln("Failed to create cluster network")
return err
}
cluster.Network = networkID
extraLabels := map[string]string{
"k3d.cluster.network": networkID,
"k3d.cluster.network.external": "false",
}
if networkExists {
extraLabels["k3d.cluster.network.external"] = "true" // if the network wasn't created, we say that it's managed externally (important for cluster deletion)
}
/*
* Cluster Secret
*/
if cluster.Secret == "" {
cluster.Secret = GenerateClusterSecret()
}
/*
* Nodes
*/
// used for node suffices
masterCount := 0
workerCount := 0
for _, node := range cluster.Nodes {
// cluster specific settings
5 years ago
if node.Labels == nil {
node.Labels = make(map[string]string) // TODO: maybe create an init function?
}
node.Labels["k3d.cluster"] = cluster.Name
node.Env = append(node.Env, fmt.Sprintf("K3S_CLUSTER_SECRET=%s", cluster.Secret))
// append extra labels
for k, v := range extraLabels {
node.Labels[k] = v
}
5 years ago
// node role specific settings
suffix := 0
if node.Role == k3d.MasterRole {
5 years ago
// name suffix
suffix = masterCount
masterCount++
} else if node.Role == k3d.WorkerRole {
5 years ago
// name suffix
suffix = workerCount
workerCount++
// connection url
node.Env = append(node.Env, fmt.Sprintf("K3S_URL=https://%s:%d", generateNodeName(cluster.Name, k3d.MasterRole, 0), 6443)) // TODO: use actual configurable api-port
5 years ago
}
node.Name = generateNodeName(cluster.Name, node.Role, suffix)
5 years ago
node.Network = cluster.Network
5 years ago
// create node
log.Infof("Creating node '%s'", node.Name)
5 years ago
if err := CreateNode(node, runtime); err != nil {
log.Errorln("Failed to create node")
return err
}
log.Debugf("Created node '%s'", node.Name)
}
5 years ago
return nil
}
5 years ago
// DeleteCluster deletes an existing cluster
5 years ago
func DeleteCluster(cluster *k3d.Cluster, runtime k3drt.Runtime) error {
log.Infof("Deleting cluster '%s'", cluster.Name)
failed := 0
for _, node := range cluster.Nodes {
5 years ago
if err := runtime.DeleteNode(node); err != nil {
log.Warningf("Failed to delete node '%s': Try to delete it manually", node.Name)
failed++
continue
}
}
if network, ok := cluster.Nodes[0].Labels["k3d.cluster.network"]; ok {
if cluster.Nodes[0].Labels["k3d.cluster.network.external"] == "false" {
log.Infof("Deleting cluster network '%s'", network)
if err := runtime.DeleteNetwork(network); err != nil {
if strings.HasSuffix(err.Error(), "active endpoints") {
log.Warningf("Failed to delete cluster network '%s' because it's still in use: is there another cluster using it?", network)
} else {
log.Warningf("Failed to delete cluster network '%s': '%+v'", network, err)
}
}
} else if cluster.Nodes[0].Labels["k3d.cluster.network.external"] == "true" {
log.Debugf("Skip deletion of cluster network '%s' because it's managed externally", network)
}
}
if failed > 0 {
return fmt.Errorf("Failed to delete %d nodes: Try to delete them manually", failed)
}
5 years ago
return nil
}
5 years ago
// GetClusters returns a list of all existing clusters
func GetClusters(runtime k3drt.Runtime) ([]*k3d.Cluster, error) {
nodes, err := runtime.GetNodesByLabel(k3d.DefaultObjectLabels)
if err != nil {
log.Errorln("Failed to get clusters")
return nil, err
}
clusters := []*k3d.Cluster{}
// for each node, check, if we can add it to a cluster or add the cluster if it doesn't exist yet
for _, node := range nodes {
clusterExists := false
for _, cluster := range clusters {
if node.Labels["k3d.cluster"] == cluster.Name { // TODO: handle case, where this label doesn't exist
5 years ago
cluster.Nodes = append(cluster.Nodes, node)
clusterExists = true
break
}
}
// cluster is not in the list yet, so we add it with the current node as its first member
if !clusterExists {
clusters = append(clusters, &k3d.Cluster{
Name: node.Labels["k3d.cluster"],
5 years ago
Nodes: []*k3d.Node{node},
})
}
}
return clusters, nil
5 years ago
}
// GetCluster returns an existing cluster
func GetCluster(cluster *k3d.Cluster, runtime k3drt.Runtime) (*k3d.Cluster, error) {
// get nodes that belong to the selected cluster
nodes, err := runtime.GetNodesByLabel(map[string]string{"k3d.cluster": cluster.Name})
if err != nil {
log.Errorf("Failed to get nodes for cluster '%s'", cluster.Name)
}
if len(nodes) == 0 {
return nil, fmt.Errorf("No nodes found for cluster '%s'", cluster.Name)
}
// append nodes
for _, node := range nodes {
5 years ago
cluster.Nodes = append(cluster.Nodes, node)
}
5 years ago
return cluster, nil
}
// GenerateClusterSecret generates a random 20 character string
func GenerateClusterSecret() string {
return util.GenerateRandomString(20)
}
func generateNodeName(cluster string, role k3d.Role, suffix int) string {
return fmt.Sprintf("%s-%s-%s-%d", k3d.DefaultObjectNamePrefix, cluster, role, suffix)
}