Terraform module which creates a k3s cluster, with multi-server and annotations/labels/taints management features.
module "k3s" {
source = "xunleii/k3s/module"
k3s_version = "v1.0.0"
name = "my.k3s.local"
cidr = {
pods = "10.0.0.0/16"
services = "10.1.0.0/16"
}
drain_timeout = "30s"
managed_fields = ["label", "taint"]
global_flags = [
"--tls-san k3s.my.domain.com"
]
servers = {
# The node name will be automatically provided by
# the module using the field name... any usage of
# --node-name in additional_flags will be ignored
server_one = {
ip = "10.123.45.67" // internal node IP
connection = {
host = "203.123.45.67" // public node IP
user = "ubuntu"
}
flags = ["--flannel-backend=none"]
labels = {"node.kubernetes.io/type" = "master"}
taints = {"node.k3s.io/type" = "server:NoSchedule"}
}
server_two = {
ip = "10.123.45.68"
connection = {
host = "203.123.45.68" // bastion node
user = "ubuntu"
}
flags = ["--flannel-backend=none"]
labels = {"node.kubernetes.io/type" = "master"}
taints = {"node.k3s.io/type" = "server:NoSchedule"}
}
server_three = {
ip = "10.123.45.69"
connection = {
host = "203.123.45.69" // bastion node
user = "ubuntu"
}
flags = ["--flannel-backend=none"]
labels = {"node.kubernetes.io/type" = "master"}
taints = {"node.k3s.io/type" = "server:NoSchedule"}
}
}
agents = {
# The node name will be automatically provided by
# the module using the field name... any usage of
# --node-name in additional_flags will be ignored
agent_one = {
ip = "10.123.45.70"
connection = {
user = "root"
bastion_host = "203.123.45.67" // server_one node used as bastion
bastion_user = "ubuntu"
}
labels = {"node.kubernetes.io/pool" = "service-pool"}
},
agent_two = {
ip = "10.123.45.71"
connection = {
user = "root"
bastion_host = "203.123.45.67"
bastion_user = "ubuntu"
}
labels = {"node.kubernetes.io/pool" = "service-pool"}
},
agent_three = {
name = "gpu-agent-one"
ip = "10.123.45.72"
connection = {
user = "root"
bastion_host = "203.123.45.67"
bastion_user = "ubuntu"
}
labels = {"node.kubernetes.io/pool" = "gpu-pool"}
taints = {dedicated = "gpu:NoSchedule"}
},
}
}
Name | Description | Type | Default | Required |
---|---|---|---|---|
depends_on_ | Like resource.depends_on, but with only one target | false | ||
k3s_version | k3s version to be use | string | "latest" |
false |
name | k3s cluster name | string | "cluster.local" |
false |
generate_ca_certificates | If true, this module will generate the CA certificates (see k3s-io/k3s#1868 (comment)). Otherwise rancher will generate it. This is required to generate kubeconfig | bool | true | false |
kubernetes_certificates | A list of maps of cerificate-name.[crt/key] : cerficate-value to copied to /var/lib/rancher/k3s/server/tls, if this option is used generate_ca_certificates will be treat as false | list({"filen_name" : "file_name", "file_content" : "file_content" }) | [] | false |
cidr | k3s CIDR definitions | object | false | |
cidr.pods | Network CIDR to use for pod IPs (--cluster-cidr ) |
string (ip) | "10.42.0.0/16" |
false |
cidr.service | Network CIDR to use for services IPs (--service-cidr ) |
string (ip) | "10.43.0.0/16" |
false |
drain_timeout | Length of time to wait before giving up the node draining | string | "0s" (infinite) |
false |
managed_fields | List of fields which must be managed by this module (can be annotation, label and/or taint) | list(string) | ["annotation", "label", "taint"] |
false |
global_flags | Additional installation flags used by all nodes | list(string) | [] |
false |
servers | k3s server nodes definition | map(NodeType) | true | |
agents | k3s server nodes definition | map(NodeType) | {} |
false |
NOTES:
servers must have an odd number of nodes
use the first server node to configure the cluster
Name | Description | Type | Default | Required |
---|---|---|---|---|
name | Node name | string | "" |
false |
ip | Node IP (used by others node to communicate) | string (ip) | true | |
connection | Connection block used by null_resource to provision the node |
Connection block | false | |
flags | Installation flags to be used on this node | list(string) | [] |
false |
annotations | Map of annotations to be applied on this node ({<name>: <value>} ) |
map(string) | {} |
false |
labels | Map of labels to be applied on this node ({<name>: <value>} ) |
map(string) | {} |
false |
taints | Map of taints to be applied on this node ({<name>: <value>} ) |
map(string) | {} |
false |
NOTES:
ifname
is not specified, the key in the map will be used as name
only one taint can be applied per taint name and per node
Name | Description | Type |
---|---|---|
summary | A summary of the current cluster state (version, server and agent list with all annotations, labels, ...) | string |
kube_config | A yaml encoded kubeconfig file | string |
kubernetes | A kubernetes object with cluster_ca_certificate, client_certificate and client_key properties | object |
Because using external references on destroy
provisionner is deprecated by Terraform, storing information
inside each resources will be mandatory in order to manage several features like auto-draining node
and fields management. So, several fields like connection
block will be available in your TF state.
This means that used password or private key will be clearly readable in this TF state.
Please do not use
this module if you need to pass private key or password in the connection block, even if your TF state is
securely stored.
terraform-module-k3s is released under the MIT License. See the bundled LICENSE file for details.