kube-hetzner / terraform-hcloud-kube-hetzner

Optimized and Maintenance-free Kubernetes on Hetzner Cloud in one command!
MIT License
2.18k stars 343 forks source link

Cloud-init (and therefore terraform) are failing, how to fix it? #1442

Closed ggruening closed 1 month ago

ggruening commented 1 month ago

Description

Hello everyone, First of all, I would like to thank you for the fantastic work. That's not just a polite saying, this project is really great!

But I have the problem that the cloud-init.service won't start. The error in journalctl is:

Aug 07 07:50:58 testserver cloud-init[2125]: 2024-08-07 07:50:58,038 - util.py[WARNING]: Failed loading yaml blob. unacceptable character #xdcfc: special characters are not allowed
Aug 07 07:50:58 testserver cloud-init[2125]:   in "<unicode string>", position 6908
Aug 07 07:50:58 testserver cloud-init[2125]: 2024-08-07 07:50:58,039 - cloud_config.py[WARNING]: Failed at merging in cloud config part from init.cfg: empty cloud config
Aug 07 07:50:58 testserver cloud-init[2125]: 2024-08-07 07:50:58,270 - util.py[WARNING]: Running module resizefs (<module 'cloudinit.config.cc_resizefs' from '/usr/lib/python3.11/site-packages/cloudinit/config/cc_resizefs.py'>) failed
Aug 07 07:50:58 testserver systemd[1]: cloud-init.service: Main process exited, code=exited, status=1/FAILURE

Digging a little deeper you find:

k3s-control-plane-nbg1-fve:/ # cat /run/cloud-init/result.json 
{
 "v1": {
  "datasource": "DataSourceHetzner",
  "errors": [
   "('resizefs', ValueError(\"invalid literal for int() with base 10: '10\\\\n-EXPERIMENTAL -INJECT -STATIC +LZO +ZSTD +UDEV +FSVERITY +ZONED CRYPTO=builtin'\"))"
  ]
 }
}

This seems to be the reason why terraform is dying like this:

module.kube-hetzner.null_resource.first_control_plane (remote-exec): /tmp/terraform_1260129824.sh: line 3: /etc/cloud/rename_interface.sh: No such file or directory
╷
│ Error: remote-exec provisioner error
│ 
│   with module.kube-hetzner.null_resource.first_control_plane,
│   on .terraform/modules/kube-hetzner/init.tf line 70, in resource "null_resource" "first_control_plane":
│   70:   provisioner "remote-exec" {
│ 
│ error executing "/tmp/terraform_1260129824.sh": Process exited with status 127

I followed the instructions in the README and only made the necessary adjustments in the kube.tf (ssh keys, reduced the number of servers), see kube.tf.

What can I do? Where does this "unacceptable character #xdcfc" (see above) comes from?

Best wishes Gregor

Kube.tf file

kube.tf ```terraform locals { # You have the choice of setting your Hetzner API token here or define the TF_VAR_hcloud_token env # within your shell, such as: export TF_VAR_hcloud_token=xxxxxxxxxxx # If you choose to define it in the shell, this can be left as is. # Your Hetzner token can be found in your Project > Security > API Token (Read & Write is required). hcloud_token = "xxxxxxxxxxx" } module "kube-hetzner" { providers = { hcloud = hcloud } hcloud_token = var.hcloud_token != "" ? var.hcloud_token : local.hcloud_token # Then fill or edit the below values. Only the first values starting with a * are obligatory; the rest can remain with their default values, or you # could adapt them to your needs. # * For local dev, path to the git repo # source = "../../kube-hetzner/" # If you want to use the latest master branch # source = "github.com/kube-hetzner/terraform-hcloud-kube-hetzner" # For normal use, this is the path to the terraform registry source = "kube-hetzner/kube-hetzner/hcloud" # You can optionally specify a version number # version = "1.2.0" # Note that some values, notably "location" and "public_key" have no effect after initializing the cluster. # This is to keep Terraform from re-provisioning all nodes at once, which would lose data. If you want to update # those, you should instead change the value here and manually re-provision each node. Grep for "lifecycle". # Customize the SSH port (by default 22) # ssh_port = 2222 # * Your ssh public key ssh_public_key = file("/home/ggruening/.ssh/ggruening+2023-12@hetzner-k3s001.pub") # * Your private key must be "ssh_private_key = null" when you want to use ssh-agent for a Yubikey-like device authentication or an SSH key-pair with a passphrase. # For more details on SSH see https://github.com/kube-hetzner/kube-hetzner/blob/master/docs/ssh.md # ssh_private_key = file("~/.ssh/id_ed25519") ssh_private_key = null # You can add additional SSH public Keys to grant other team members root access to your cluster nodes. # ssh_additional_public_keys = [] # You can also add additional SSH public Keys which are saved in the hetzner cloud by a label. # See https://docs.hetzner.cloud/#label-selector # ssh_hcloud_key_label = "role=admin" # If you use SSH agent and have issues with SSH connecting to your nodes, you can increase the number of auth tries (default is 2) # ssh_max_auth_tries = 10 # If you want to use an ssh key that is already registered within hetzner cloud, you can pass its id. # If no id is passed, a new ssh key will be registered within hetzner cloud. # It is important that exactly this key is passed via `ssh_public_key` & `ssh_private_key` variables. hcloud_ssh_key_id = "22401398" # These can be customized, or left with the default values # * For Hetzner locations see https://docs.hetzner.com/general/others/data-centers-and-connection/ network_region = "eu-central" # change to `us-east` if location is ash # If you want to create the private network before calling this module, # you can do so and pass its id here. For example if you want to use a proxy # which only listens on your private network. Advanced use case. # # NOTE1: make sure to adapt network_ipv4_cidr, cluster_ipv4_cidr, and service_ipv4_cidr accordingly. # If your network is created with 10.0.0.0/8, and you use subnet 10.128.0.0/9 for your # non-k3s business, then adapting `network_ipv4_cidr = "10.0.0.0/9"` should be all you need. # # NOTE2: square brackets! This must be a list of length 1. # # existing_network_id = [hcloud_network.your_network.id] # If you must change the network CIDR you can do so below, but it is highly advised against. # network_ipv4_cidr = "10.0.0.0/8" # Using the default configuration you can only create a maximum of 42 agent-nodepools. # This is due to the creation of a subnet for each nodepool with CIDRs being in the shape of 10.[nodepool-index].0.0/16 which collides with k3s' cluster and service IP ranges (defaults below). # Furthermore the maximum number of nodepools (controlplane and agent) is 50, due to a hard limit of 50 subnets per network, see https://docs.hetzner.com/cloud/networks/faq/. # So to be able to create a maximum of 50 nodepools in total, the values below have to be changed to something outside that range, e.g. `10.200.0.0/16` and `10.201.0.0/16` for cluster and service respectively. # If you must change the cluster CIDR you can do so below, but it is highly advised against. # Never change this value after you already initialized a cluster. Complete cluster redeploy needed! # The cluster CIDR must be a part of the network CIDR! # cluster_ipv4_cidr = "10.42.0.0/16" # If you must change the service CIDR you can do so below, but it is highly advised against. # Never change this value after you already initialized a cluster. Complete cluster redeploy needed! # The service CIDR must be a part of the network CIDR! # service_ipv4_cidr = "10.43.0.0/16" # If you must change the service IPv4 address of core-dns you can do so below, but it is highly advisd against. # Never change this value after you already initialized a cluster. Complete cluster redeploy needed! # The service IPv4 address must be part of the service CIDR! # cluster_dns_ipv4 = "10.43.0.10" # For the control planes, at least three nodes are the minimum for HA. Otherwise, you need to turn off the automatic upgrades (see README). # **It must always be an ODD number, never even!** Search the internet for "split-brain problem with etcd" or see https://rancher.com/docs/k3s/latest/en/installation/ha-embedded/ # For instance, one is ok (non-HA), two is not ok, and three is ok (becomes HA). It does not matter if they are in the same nodepool or not! So they can be in different locations and of various types. # Of course, you can choose any number of nodepools you want, with the location you want. The only constraint on the location is that you need to stay in the same network region, Europe, or the US. # For the server type, the minimum instance supported is cx22. The cax11 provides even better value for money if your applications are compatible with arm64; see https://www.hetzner.com/cloud. # IMPORTANT: Before you create your cluster, you can do anything you want with the nodepools, but you need at least one of each, control plane and agent. # Once the cluster is up and running, you can change nodepool count and even set it to 0 (in the case of the first control-plane nodepool, the minimum is 1). # You can also rename it (if the count is 0), but do not remove a nodepool from the list. # You can safely add or remove nodepools at the end of each list. That is due to how subnets and IPs get allocated (FILO). # The maximum number of nodepools you can create combined for both lists is 50 (see above). # Also, before decreasing the count of any nodepools to 0, it's essential to drain and cordon the nodes in question. Otherwise, it will leave your cluster in a bad state. # Before initializing the cluster, you can change all parameters and add or remove any nodepools. You need at least one nodepool of each kind, control plane, and agent. # ⚠️ The nodepool names are entirely arbitrary, but all lowercase, no special characters or underscore (dashes are allowed), and they must be unique. # If you want to have a single node cluster, have one control plane nodepools with a count of 1, and one agent nodepool with a count of 0. # Please note that changing labels and taints after the first run will have no effect. If needed, you can do that through Kubernetes directly. # Multi-architecture clusters are OK for most use cases, as container underlying images tend to be multi-architecture too. # * Example below: control_plane_nodepools = [ { name = "control-plane-fsn1", server_type = "cx22", location = "fsn1", labels = [], taints = [], count = 1 # swap_size = "2G" # remember to add the suffix, examples: 512M, 1G # zram_size = "2G" # remember to add the suffix, examples: 512M, 1G # kubelet_args = ["kube-reserved=cpu=250m,memory=1500Mi,ephemeral-storage=1Gi", "system-reserved=cpu=250m,memory=300Mi"] # Fine-grained control over placement groups (nodes in the same group are spread over different physical servers, 10 nodes per placement group max): # placement_group = "default" # Enable automatic backups via Hetzner (default: false) # backups = true }, { name = "control-plane-nbg1", server_type = "cx22", location = "nbg1", labels = [], taints = [], count = 1 # Fine-grained control over placement groups (nodes in the same group are spread over different physical servers, 10 nodes per placement group max): # placement_group = "default" # Enable automatic backups via Hetzner (default: false) # backups = true }, { name = "control-plane-hel1", server_type = "cx22", location = "hel1", labels = [], taints = [], count = 1 # Fine-grained control over placement groups (nodes in the same group are spread over different physical servers, 10 nodes per placement group max): # placement_group = "default" # Enable automatic backups via Hetzner (default: false) # backups = true } ] agent_nodepools = [ { name = "agent-small", server_type = "cx22", location = "fsn1", labels = [], taints = [], count = 0 # swap_size = "2G" # remember to add the suffix, examples: 512M, 1G # zram_size = "2G" # remember to add the suffix, examples: 512M, 1G # kubelet_args = ["kube-reserved=cpu=50m,memory=300Mi,ephemeral-storage=1Gi", "system-reserved=cpu=250m,memory=300Mi"] # Fine-grained control over placement groups (nodes in the same group are spread over different physical servers, 10 nodes per placement group max): # placement_group = "default" # Enable automatic backups via Hetzner (default: false) # backups = true }, { name = "agent-large", server_type = "cx32", location = "nbg1", labels = [], taints = [], count = 0 # Fine-grained control over placement groups (nodes in the same group are spread over different physical servers, 10 nodes per placement group max): # placement_group = "default" # Enable automatic backups via Hetzner (default: false) # backups = true }, { name = "storage", server_type = "cx32", location = "fsn1", # Fully optional, just a demo. labels = [ "node.kubernetes.io/server-usage=storage" ], taints = [], count = 0 # In the case of using Longhorn, you can use Hetzner volumes instead of using the node's own storage by specifying a value from 10 to 10000 (in GB) # It will create one volume per node in the nodepool, and configure Longhorn to use them. # Something worth noting is that Volume storage is slower than node storage, which is achieved by not mentioning longhorn_volume_size or setting it to 0. # So for something like DBs, you definitely want node storage, for other things like backups, volume storage is fine, and cheaper. # longhorn_volume_size = 20 # Enable automatic backups via Hetzner (default: false) # backups = true }, # Egress nodepool useful to route egress traffic using Hetzner Floating IPs (https://docs.hetzner.com/cloud/floating-ips) # used with Cilium's Egress Gateway feature https://docs.cilium.io/en/stable/gettingstarted/egress-gateway/ # See the https://github.com/kube-hetzner/terraform-hcloud-kube-hetzner#examples for an example use case. { name = "egress", server_type = "cx22", location = "fsn1", labels = [ "node.kubernetes.io/role=egress" ], taints = [ "node.kubernetes.io/role=egress:NoSchedule" ], floating_ip = true count = 0 }, # Arm based nodes { name = "agent-arm-small", server_type = "cax11", location = "fsn1", labels = [], taints = [], count = 0 }, # For fine-grained control over the nodes in a node pool, replace the count variable with a nodes map. # In this case, the node-pool variables are defaults which can be overridden on a per-node basis. # Each key in the nodes map refers to a single node and must be an integer string ("1", "123", ...). # { # name = "agent-arm-small", # server_type = "cax11", # location = "fsn1", # labels = [], # taints = [], # nodes = { # "1" : { # location = "nbg1" # labels = [ # "testing-labels=a1", # ] # }, # "20" : { # labels = [ # "testing-labels=b1", # ] # } # } # }, ] # Add custom control plane configuration options here. # E.g to enable monitoring for etcd, proxy etc: # control_planes_custom_config = { # etcd-expose-metrics = true, # kube-controller-manager-arg = "bind-address=0.0.0.0", # kube-proxy-arg ="metrics-bind-address=0.0.0.0", # kube-scheduler-arg = "bind-address=0.0.0.0", # } # You can enable encrypted wireguard for the CNI by setting this to "true". Default is "false". # FYI, Hetzner says "Traffic between cloud servers inside a Network is private and isolated, but not automatically encrypted." # Source: https://docs.hetzner.com/cloud/networks/faq/#is-traffic-inside-hetzner-cloud-networks-encrypted # It works with all CNIs that we support. # Just note, that if Cilium with cilium_values, the responsibility of enabling of disabling Wireguard falls on you. # enable_wireguard = true # * LB location and type, the latter will depend on how much load you want it to handle, see https://www.hetzner.com/cloud/load-balancer load_balancer_type = "lb11" load_balancer_location = "fsn1" # Disable IPv6 for the load balancer, the default is false. # load_balancer_disable_ipv6 = true # Disables the public network of the load balancer. (default: false). # load_balancer_disable_public_network = true # Specifies the algorithm type of the load balancer. (default: round_robin). # load_balancer_algorithm_type = "least_connections" # Specifies the interval at which a health check is performed. Minimum is 3s (default: 15s). # load_balancer_health_check_interval = "5s" # Specifies the timeout of a single health check. Must not be greater than the health check interval. Minimum is 1s (default: 10s). # load_balancer_health_check_timeout = "3s" # Specifies the number of times a health check is retried before a target is marked as unhealthy. (default: 3) # load_balancer_health_check_retries = 3 ### The following values are entirely optional (and can be removed from this if unused) # You can refine a base domain name to be use in this form of nodename.base_domain for setting the reserve dns inside Hetzner # base_domain = "mycluster.example.com" # Cluster Autoscaler # Providing at least one map for the array enables the cluster autoscaler feature, default is disabled # By default we set a compatible version with the default initial_k3s_channel, to set another one, # have a look at the tag value in https://github.com/kubernetes/autoscaler/blob/master/charts/cluster-autoscaler/values.yaml # ⚠️ Based on how the autoscaler works with this project, you can only choose either x86 instances or ARM server types for ALL autoscaler nodepools. # If you are curious, it's ok to have a multi-architecture cluster, as most underlying container images are multi-architecture too. # # ⚠️ Setting labels and taints will only work on cluster-autoscaler images versions released after > 20 October 2023. Or images built from master after that date. # # * Example below: # autoscaler_nodepools = [ # { # name = "autoscaled-small" # server_type = "cx32" # location = "fsn1" # min_nodes = 0 # max_nodes = 5 # labels = { # "node.kubernetes.io/role": "peak-workloads" # } # taints = # [{ # key: "node.kubernetes.io/role" # value: "peak-workloads" # effect: "NoExecute" # }] # # kubelet_args = ["kube-reserved=cpu=250m,memory=1500Mi,ephemeral-storage=1Gi", "system-reserved=cpu=250m,memory=300Mi"] # } # ] # ⚠️ Deprecated, will be removed after a new Cluster Autoscaler version has been released which support the new way of setting labels and taints. See above. # Add extra labels on nodes started by the Cluster Autoscaler # This argument is not used if autoscaler_nodepools is not set, because the Cluster Autoscaler is installed only if autoscaler_nodepools is set # autoscaler_labels = [ # "node.kubernetes.io/role=peak-workloads" # ] # Add extra taints on nodes started by the Cluster Autoscaler # This argument is not used if autoscaler_nodepools is not set, because the Cluster Autoscaler is installed only if autoscaler_nodepools is set # autoscaler_taints = [ # "node.kubernetes.io/role=specific-workloads:NoExecute" # ] # Configuration of the Cluster Autoscaler binary # # These arguments and variables are not used if autoscaler_nodepools is not set, because the Cluster Autoscaler is installed only if autoscaler_nodepools is set. # # Image and version of Kubernetes Cluster Autoscaler for Hetzner Cloud: # - cluster_autoscaler_image: Image of Kubernetes Cluster Autoscaler for Hetzner Cloud to be used. # - cluster_autoscaler_version: Version of Kubernetes Cluster Autoscaler for Hetzner Cloud. Should be aligned with Kubernetes version. # # Logging related arguments are managed using separate variables: # - cluster_autoscaler_log_level: Controls the verbosity of logs (--v), the value is from 0 to 5, default is 4, for max debug info set it to 5. # - cluster_autoscaler_log_to_stderr: Determines whether to log to stderr (--logtostderr). # - cluster_autoscaler_stderr_threshold: Sets the threshold for logs that go to stderr (--stderrthreshold). # # Server/node creation timeout variable: # - cluster_autoscaler_server_creation_timeout: Sets the timeout (in minutes) until which a newly created server/node has to become available before giving up and destroying it (defaults to 15, unit is minutes) # # Example: # # cluster_autoscaler_image = "registry.k8s.io/autoscaling/cluster-autoscaler" # cluster_autoscaler_version = "v1.30.1" # cluster_autoscaler_log_level = 4 # cluster_autoscaler_log_to_stderr = true # cluster_autoscaler_stderr_threshold = "INFO" # cluster_autoscaler_server_creation_timeout = 15 # Additional Cluster Autoscaler binary configuration # # cluster_autoscaler_extra_args can be used for additional arguments. The default is an empty array. # # Please note that following arguments are managed by terraform-hcloud-kube-hetzner or the variables above and should not be set manually: # - --v=${var.cluster_autoscaler_log_level} # - --logtostderr=${var.cluster_autoscaler_log_to_stderr} # - --stderrthreshold=${var.cluster_autoscaler_stderr_threshold} # - --cloud-provider=hetzner # - --nodes ... # # See the Cluster Autoscaler FAQ for the full list of arguments: https://github.com/kubernetes/autoscaler/blob/master/cluster-autoscaler/FAQ.md#what-are-the-parameters-to-ca # # Example: # # cluster_autoscaler_extra_args = [ # "--ignore-daemonsets-utilization=true", # "--enforce-node-group-min-size=true", # ] # Enable delete protection on compatible resources to prevent accidental deletion from the Hetzner Cloud Console. # This does not protect deletion from Terraform itself. # enable_delete_protection = { # floating_ip = true # load_balancer = true # volume = true # } # Enable etcd snapshot backups to S3 storage. # Just provide a map with the needed settings (according to your S3 storage provider) and backups to S3 will # be enabled (with the default settings for etcd snapshots). # Cloudflare's R2 offers 10GB, 10 million reads and 1 million writes per month for free. # For proper context, have a look at https://docs.k3s.io/datastore/backup-restore. # You also can use additional parameters from https://docs.k3s.io/cli/etcd-snapshot, such as `etc-s3-folder` # etcd_s3_backup = { # etcd-s3-endpoint = "xxxx.r2.cloudflarestorage.com" # etcd-s3-access-key = "" # etcd-s3-secret-key = "" # etcd-s3-bucket = "k3s-etcd-snapshots" # } # To enable Hetzner Storage Box support, you can enable csi-driver-smb, default is "false". # enable_csi_driver_smb = true # To enable iscid without setting enable_longhorn = true, set enable_iscsid = true. You will need this if # you install your own version of longhorn outside of this module. # Default is false. If enable_longhorn=true, this variable is ignored and iscsid is enabled anyway. # enable_iscsid = true # To use local storage on the nodes, you can enable Longhorn, default is "false". # See a full recap on how to configure agent nodepools for longhorn here https://github.com/kube-hetzner/terraform-hcloud-kube-hetzner/discussions/373#discussioncomment-3983159 # Also see Longhorn best practices here https://gist.github.com/ifeulner/d311b2868f6c00e649f33a72166c2e5b # enable_longhorn = true # By default, longhorn is pulled from https://charts.longhorn.io. # If you need a version of longhorn which assures compatibility with rancher you can set this variable to https://charts.rancher.io. # longhorn_repository = "https://charts.rancher.io" # The namespace for longhorn deployment, default is "longhorn-system". # longhorn_namespace = "longhorn-system" # The file system type for Longhorn, if enabled (ext4 is the default, otherwise you can choose xfs). # longhorn_fstype = "xfs" # how many replica volumes should longhorn create (default is 3). # longhorn_replica_count = 1 # When you enable Longhorn, you can go with the default settings and just modify the above two variables OR you can add a longhorn_values variable # with all needed helm values, see towards the end of the file in the advanced section. # If that file is present, the system will use it during the deploy, if not it will use the default values with the two variable above that can be customized. # After the cluster is deployed, you can always use HelmChartConfig definition to tweak the configuration. # Also, you can choose to use a Hetzner volume with Longhorn. By default, it will use the nodes own storage space, but if you add an attribute of # longhorn_volume_size (⚠️ not a variable, just a possible agent nodepool attribute) with a value between 10 and 10000 GB to your agent nodepool definition, it will create and use the volume in question. # See the agent nodepool section for an example of how to do that. # To disable Hetzner CSI storage, you can set the following to "true", default is "false". # disable_hetzner_csi = true # If you want to use a specific Hetzner CCM and CSI version, set them below; otherwise, leave them as-is for the latest versions. # hetzner_ccm_version = "" # hetzner_csi_version = "" # If you want to specify the Kured version, set it below - otherwise it'll use the latest version available. # kured_version = "" # Default is "traefik". # If you want to enable the Nginx (https://kubernetes.github.io/ingress-nginx/) or HAProxy ingress controller instead of Traefik, you can set this to "nginx" or "haproxy". # By the default we load optimal Traefik, Nginx or HAProxy ingress controller config for Hetzner, however you may need to tweak it to your needs, so to do, # we allow you to add a traefik_values, nginx_values or haproxy_values, see towards the end of this file in the advanced section. # After the cluster is deployed, you can always use HelmChartConfig definition to tweak the configuration. # If you want to disable both controllers set this to "none" # ingress_controller = "nginx" # Namespace in which to deploy the ingress controllers. Defaults to the ingress_controller variable, eg (haproxy, nginx, traefik) # ingress_target_namespace = "" # You can change the number of replicas for selected ingress controller here. The default 0 means autoselecting based on number of agent nodes (1 node = 1 replica, 2 nodes = 2 replicas, 3+ nodes = 3 replicas) # ingress_replica_count = 1 # Use the klipperLB (similar to metalLB), instead of the default Hetzner one, that has an advantage of dropping the cost of the setup. # Automatically "true" in the case of single node cluster (as it does not make sense to use the Hetzner LB in that situation). # It can work with any ingress controller that you choose to deploy. # Please note that because the klipperLB points to all nodes, we automatically allow scheduling on the control plane when it is active. # enable_klipper_metal_lb = "true" # If you want to configure additional arguments for traefik, enter them here as a list and in the form of traefik CLI arguments; see https://doc.traefik.io/traefik/reference/static-configuration/cli/ # They are the options that go into the additionalArguments section of the Traefik helm values file. # We already add "providers.kubernetesingress.ingressendpoint.publishedservice" by default so that Traefik works automatically with services such as External-DNS and ArgoCD. # Example: # traefik_additional_options = ["--log.level=DEBUG", "--tracing=true"] # By default traefik image tag is an empty string which uses latest image tag. # The default is "". # traefik_image_tag = "v3.0.0-beta5" # By default traefik is configured to redirect http traffic to https, you can set this to "false" to disable the redirection. # The default is true. # traefik_redirect_to_https = false # Enable or disable Horizontal Pod Autoscaler for traefik. # The default is true. # traefik_autoscaling = false # Enable or disable pod disruption budget for traefik. Values are maxUnavailable: 33% and minAvailable: 1. # The default is true. # traefik_pod_disruption_budget = false # Enable or disable default resource requests and limits for traefik. Values requested are 100m & 50Mi and limits 300m & 150Mi. # The default is true. # traefik_resource_limits = false # If you want to configure additional ports for traefik, enter them here as a list of objects with name, port, and exposedPort properties. # Example: # traefik_additional_ports = [{name = "example", port = 1234, exposedPort = 1234}] # If you want to configure additional trusted IPs for traefik, enter them here as a list of IPs (strings). # Example for Cloudflare: # traefik_additional_trusted_ips = [ # "173.245.48.0/20", # "103.21.244.0/22", # "103.22.200.0/22", # "103.31.4.0/22", # "141.101.64.0/18", # "108.162.192.0/18", # "190.93.240.0/20", # "188.114.96.0/20", # "197.234.240.0/22", # "198.41.128.0/17", # "162.158.0.0/15", # "104.16.0.0/13", # "104.24.0.0/14", # "172.64.0.0/13", # "131.0.72.0/22", # "2400:cb00::/32", # "2606:4700::/32", # "2803:f800::/32", # "2405:b500::/32", # "2405:8100::/32", # "2a06:98c0::/29", # "2c0f:f248::/32" # ] # If you want to disable the metric server set this to "false". Default is "true". # enable_metrics_server = false # If you want to enable the k3s built-in local-storage controller set this to "true". Default is "false". # enable_local_storage = false # If you want to allow non-control-plane workloads to run on the control-plane nodes, set this to "true". The default is "false". # True by default for single node clusters, and when enable_klipper_metal_lb is true. In those cases, the value below will be ignored. # allow_scheduling_on_control_plane = true # If you want to disable the automatic upgrade of k3s, you can set below to "false". # Ideally, keep it on, to always have the latest Kubernetes version, but lock the initial_k3s_channel to a kube major version, # of your choice, like v1.25 or v1.26. That way you get the best of both worlds without the breaking changes risk. # For production use, always use an HA setup with at least 3 control-plane nodes and 2 agents, and keep this on for maximum security. # The default is "true" (in HA setup i.e. at least 3 control plane nodes & 2 agents, just keep it enabled since it works flawlessly). # automatically_upgrade_k3s = false # During k3s via system-upgrade-manager pods are evicted by default. # On small clusters this can lead to hanging upgrades and indefinitely unschedulable nodes, # in that case, set this to false to immediately delete pods before upgrading. # NOTE: Turning this flag off might lead to downtimes of services (which may be acceptable for your use case) # system_upgrade_enable_eviction = false # The default is "true" (in HA setup it works wonderfully well, with automatic roll-back to the previous snapshot in case of an issue). # IMPORTANT! For non-HA clusters i.e. when the number of control-plane nodes is < 3, you have to turn it off. # automatically_upgrade_os = false # If you need more control over kured and the reboot behaviour, you can pass additional options to kured. # For example limiting reboots to certain timeframes. For all options see: https://kured.dev/docs/configuration/ # By default, the kured lock does not expire and is only released once a node successfully reboots. You can add the option # "lock-ttl" : "30m", if you have a single node which sometimes gets stuck. Note however, that in that case, kured continuous # draining the next node because the lock was released. You may end up with all nodes drained and your cluster completely down. # The default options are: `--reboot-command=/usr/bin/systemctl reboot --pre-reboot-node-labels=kured=rebooting --post-reboot-node-labels=kured=done --period=5m` # Defaults can be overridden by using the same key. # kured_options = { # "reboot-days": "su", # "start-time": "3am", # "end-time": "8am", # "time-zone": "Local", # "lock-ttl" : "30m", # } # Allows you to specify either stable, latest, testing or supported minor versions. # see https://rancher.com/docs/k3s/latest/en/upgrades/basic/ and https://update.k3s.io/v1-release/channels # ⚠️ If you are going to use Rancher addons for instance, it's always a good idea to fix the kube version to latest - 0.01, # ⚠️ Rancher currently only supports v1.25 and earlier versions: https://github.com/rancher/rancher/issues/41113 # The default is "v1.29". # initial_k3s_channel = "stable" # The cluster name, by default "k3s" # cluster_name = "" # Whether to use the cluster name in the node name, in the form of {cluster_name}-{nodepool_name}, the default is "true". # use_cluster_name_in_node_name = false # Extra k3s registries. This is useful if you have private registries and you want to pull images without additional secrets. # Or if you want to proxy registries for various reasons like rate-limiting. # It will create the registries.yaml file, more info here https://docs.k3s.io/installation/private-registry. # Note that you do not need to get this right from the first time, you can update it when you want during the life of your cluster. # The default is blank. /* k3s_registries = <<-EOT mirrors: hub.my_registry.com: endpoint: - "hub.my_registry.com" configs: hub.my_registry.com: auth: username: username password: password EOT */ # Additional environment variables for the host OS on which k3s runs. See for example https://docs.k3s.io/advanced#configuring-an-http-proxy . # additional_k3s_environment = { # "CONTAINERD_HTTP_PROXY" : "http://your.proxy:port", # "CONTAINERD_HTTPS_PROXY" : "http://your.proxy:port", # "NO_PROXY" : "127.0.0.0/8,10.0.0.0/8,", # } # Additional commands to execute on the host OS before the k3s install, for example fetching and installing certs. # preinstall_exec = [ # "curl https://somewhere.over.the.rainbow/ca.crt > /root/ca.crt", # "trust anchor --store /root/ca.crt", # ] # Additional flags to pass to the k3s server command (the control plane). # k3s_exec_server_args = "--kube-apiserver-arg enable-admission-plugins=PodTolerationRestriction,PodNodeSelector" # Additional flags to pass to the k3s agent command (every agents nodes, including autoscaler nodepools). # k3s_exec_agent_args = "--kubelet-arg kube-reserved=cpu=100m,memory=200Mi,ephemeral-storage=1Gi" # The vars below here passes it to the k3s config.yaml. This way it persist across reboots # k3s_global_kubelet_args = ["kube-reserved=cpu=100m,ephemeral-storage=1Gi", "system-reserved=cpu=memory=200Mi", "image-gc-high-threshold=50", "image-gc-low-threshold=40"] # k3s_control_plane_kubelet_args = [] # k3s_agent_kubelet_args = [] # k3s_autoscaler_kubelet_args = [] # If you want to allow all outbound traffic you can set this to "false". Default is "true". # restrict_outbound_traffic = false # Allow access to the Kube API from the specified networks. The default is ["0.0.0.0/0", "::/0"]. # Allowed values: null (disable Kube API rule entirely) or a list of allowed networks with CIDR notation. # For maximum security, it's best to disable it completely by setting it to null. However, in that case, to get access to the kube api, # you would have to connect to any control plane node via SSH, as you can run kubectl from within these. # Please be advised that this setting has no effect on the load balancer when the use_control_plane_lb variable is set to true. This is # because firewall rules cannot be applied to load balancers yet. # firewall_kube_api_source = null # Allow SSH access from the specified networks. Default: ["0.0.0.0/0", "::/0"] # Allowed values: null (disable SSH rule entirely) or a list of allowed networks with CIDR notation. # Ideally you would set your IP there. And if it changes after cluster deploy, you can always update this variable and apply again. # firewall_ssh_source = ["1.2.3.4/32"] # Adding extra firewall rules, like opening a port # More info on the format here https://registry.terraform.io/providers/hetznercloud/hcloud/latest/docs/resources/firewall # extra_firewall_rules = [ # { # description = "For Postgres" # direction = "in" # protocol = "tcp" # port = "5432" # source_ips = ["0.0.0.0/0", "::/0"] # destination_ips = [] # Won't be used for this rule # }, # { # description = "To Allow ArgoCD access to resources via SSH" # direction = "out" # protocol = "tcp" # port = "22" # source_ips = [] # Won't be used for this rule # destination_ips = ["0.0.0.0/0", "::/0"] # } # ] # If you want to configure a different CNI for k3s, use this flag # possible values: flannel (Default), calico, and cilium # As for Cilium, we allow infinite configurations via helm values, please check the CNI section of the readme over at https://github.com/kube-hetzner/terraform-hcloud-kube-hetzner/#cni. # Also, see the cilium_values at towards the end of this file, in the advanced section. # ⚠️ Depending on your setup, sometimes you need your control-planes to have more than # 2GB of RAM if you are going to use Cilium, otherwise the pods will not start. # cni_plugin = "cilium" # You can choose the version of Cilium that you want. By default we keep the version up to date and configure Cilium with compatible settings according to the version. # cilium_version = "v1.14.0" # Set native-routing mode ("native") or tunneling mode ("tunnel"). Default: tunnel # cilium_routing_mode = "native" # Used when Cilium is configured in native routing mode. The CNI assumes that the underlying network stack will forward packets to this destination without the need to apply SNAT. Default: value of "cluster_ipv4_cidr" # cilium_ipv4_native_routing_cidr = "10.0.0.0/8" # Enables egress gateway to redirect and SNAT the traffic that leaves the cluster. Default: false # cilium_egress_gateway_enabled = true # Enables Hubble Observability to collect and visualize network traffic. Default: false # cilium_hubble_enabled = true # Configures the list of Hubble metrics to collect. # cilium_hubble_metrics_enabled = [ # "policy:sourceContext=app|workload-name|pod|reserved-identity;destinationContext=app|workload-name|pod|dns|reserved-identity;labelsContext=source_namespace,destination_namespace" # ] # You can choose the version of Calico that you want. By default, the latest is used. # More info on available versions can be found at https://github.com/projectcalico/calico/releases # Please note that if you are getting 403s from Github, it's also useful to set the version manually. However there is rarely a need for that! # calico_version = "v3.27.2" # If you want to disable the k3s kube-proxy, use this flag. The default is "false". # Ensure that your CNI is capable of handling all the functionalities typically covered by kube-proxy. # disable_kube_proxy = true # If you want to disable the k3s default network policy controller, use this flag! # Both Calico and Cilium cni_plugin values override this value to true automatically, the default is "false". # disable_network_policy = true # If you want to disable the automatic use of placement group "spread". See https://docs.hetzner.com/cloud/placement-groups/overview/ # We advise to not touch that setting, unless you have a specific purpose. # The default is "false", meaning it's enabled by default. # placement_group_disable = true # By default, we allow ICMP ping in to the nodes, to check for liveness for instance. If you do not want to allow that, you can. Just set this flag to true (false by default). # block_icmp_ping_in = true # You can enable cert-manager (installed by Helm behind the scenes) with the following flag, the default is "true". # enable_cert_manager = false # IP Addresses to use for the DNS Servers, the defaults are the ones provided by Hetzner https://docs.hetzner.com/dns-console/dns/general/recursive-name-servers/. # The number of different DNS servers is limited to 3 by Kubernetes itself. # It's always a good idea to have at least 1 IPv4 and 1 IPv6 DNS server for robustness. dns_servers = [ "1.1.1.1", "8.8.8.8", "2606:4700:4700::1111", ] # When this is enabled, rather than the first node, all external traffic will be routed via a control-plane loadbalancer, allowing for high availability. # The default is false. # use_control_plane_lb = true # When the above use_control_plane_lb is enabled, you can change the lb type for it, the default is "lb11". # control_plane_lb_type = "lb21" # When the above use_control_plane_lb is enabled, you can change to disable the public interface for control plane load balancer, the default is true. # control_plane_lb_enable_public_interface = false # Let's say you are not using the control plane LB solution above, and still want to have one hostname point to all your control-plane nodes. # You could create multiple A records of to let's say cp.cluster.my.org pointing to all of your control-plane nodes ips. # In which case, you need to define that hostname in the k3s TLS-SANs config to allow connection through it. It can be hostnames or IP addresses. # additional_tls_sans = ["cp.cluster.my.org"] # If you create a hostname with multiple A records pointing to all of your # control-plane nodes ips, you may want to use that hostname in the generated # kubeconfig. # kubeconfig_server_address = "cp.cluster.my.org" # lb_hostname Configuration: # # Purpose: # The lb_hostname setting optimizes communication between services within the Kubernetes cluster # when they use domain names instead of direct service names. By associating a domain name directly # with the Hetzner Load Balancer, this setting can help reduce potential communication delays. # # Scenario: # If Service B communicates with Service A using a domain (e.g., `a.mycluster.domain.com`) that points # to an external Load Balancer, there can be a slowdown in communication. # # Guidance: # - If your internal services use domain names pointing to an external LB, set lb_hostname to a domain # like `mycluster.domain.com`. # - Create an A record pointing `mycluster.domain.com` to your LB's IP. # - Create a CNAME record for `a.mycluster.domain.com` (or xyz.com) pointing to `mycluster.domain.com`. # # Technical Note: # This setting sets the `load-balancer.hetzner.cloud/hostname` in the Hetzner LB definition, suitable for # HAProxy, Nginx and Traefik ingress controllers. # # Recommendation: # This setting is optional. If services communicate using direct service names, you can leave this unset. # For inter-namespace communication, use `.service_name` as per Kubernetes norms. # # Example: # lb_hostname = "mycluster.domain.com" # You can enable Rancher (installed by Helm behind the scenes) with the following flag, the default is "false". # ⚠️ Rancher currently only supports Kubernetes v1.28 and earlier, you will need to set initial_k3s_channel to a supported version: https://github.com/rancher/rancher/issues/43110 # When Rancher is enabled, it automatically installs cert-manager too, and it uses rancher's own self-signed certificates. # See for options https://ranchermanager.docs.rancher.com/getting-started/installation-and-upgrade/install-upgrade-on-a-kubernetes-cluster#3-choose-your-ssl-configuration # The easiest thing is to leave everything as is (using the default rancher self-signed certificate) and put Cloudflare in front of it. # As for the number of replicas, by default it is set to the number of control plane nodes. # You can customized all of the above by adding a rancher_values variable see at the end of this file in the advanced section. # After the cluster is deployed, you can always use HelmChartConfig definition to tweak the configuration. # IMPORTANT: Rancher's install is quite memory intensive, you will require at least 4GB if RAM, meaning cx21 server type (for your control plane). # ALSO, in order for Rancher to successfully deploy, you have to set the "rancher_hostname". # enable_rancher = true # If using Rancher you can set the Rancher hostname, it must be unique hostname even if you do not use it. # If not pointing the DNS, you can just port-forward locally via kubectl to get access to the dashboard. # If you already set the lb_hostname above and are using a Hetzner LB, you do not need to set this one, as it will be used by default. # But if you set this one explicitly, it will have preference over the lb_hostname in rancher settings. # rancher_hostname = "rancher.xyz.dev" # When Rancher is deployed, by default is uses the "latest" channel. But this can be customized. # The allowed values are "stable" or "latest". # rancher_install_channel = "stable" # Finally, you can specify a bootstrap-password for your rancher instance. Minimum 48 characters long! # If you leave empty, one will be generated for you. # (Can be used by another rancher2 provider to continue setup of rancher outside this module.) # rancher_bootstrap_password = "" # Separate from the above Rancher config (only use one or the other). You can import this cluster directly on an # an already active Rancher install. By clicking "import cluster" choosing "generic", giving it a name and pasting # the cluster registration url below. However, you can also ignore that and apply the url via kubectl as instructed # by Rancher in the wizard, and that would register your cluster too. # More information about the registration can be found here https://rancher.com/docs/rancher/v2.6/en/cluster-provisioning/registered-clusters/ # rancher_registration_manifest_url = "https://rancher.xyz.dev/v3/import/xxxxxxxxxxxxxxxxxxYYYYYYYYYYYYYYYYYYYzzzzzzzzzzzzzzzzzzzzz.yaml" # Extra commands to be executed after the `kubectl apply -k` (useful for post-install actions, e.g. wait for CRD, apply additional manifests, etc.). # extra_kustomize_deployment_commands="" # Extra values that will be passed to the `extra-manifests/kustomization.yaml.tpl` if its present. # extra_kustomize_parameters={} # See working examples for extra manifests or a HelmChart in examples/kustomization_user_deploy/README.md # It is best practice to turn this off, but for backwards compatibility it is set to "true" by default. # See https://github.com/kube-hetzner/terraform-hcloud-kube-hetzner/issues/349 # When "false". The kubeconfig file can instead be created by executing: "terraform output --raw kubeconfig > cluster_kubeconfig.yaml" # Always be careful to not commit this file! # create_kubeconfig = false # Don't create the kustomize backup. This can be helpful for automation. # create_kustomization = false # Export the values.yaml files used for the deployment of traefik, longhorn, cert-manager, etc. # This can be helpful to use them for later deployments like with ArgoCD. # The default is false. # export_values = true # MicroOS snapshot IDs to be used. Per default empty, the most recent image created using createkh will be used. # We recommend the default, but if you want to use specific IDs you can. # You can fetch the ids with the hcloud cli by running the "hcloud image list --selector 'microos-snapshot=yes'" command. # microos_x86_snapshot_id = "1234567" # microos_arm_snapshot_id = "1234567" ### ADVANCED - Custom helm values for packages above (search _values if you want to located where those are mentioned upper in this file) # ⚠️ Inside the _values variable below are examples, up to you to find out the best helm values possible, we do not provide support for customized helm values. # Please understand that the indentation is very important, inside the EOTs, as those are proper yaml helm values. # We advise you to use the default values, and only change them if you know what you are doing! # Cilium, all Cilium helm values can be found at https://github.com/cilium/cilium/blob/master/install/kubernetes/cilium/values.yaml # Be careful when maintaining your own cilium_values, as the choice of available settings depends on the Cilium version used. See also the cilium_version setting to fix a specific version. # The following is an example, please note that the current indentation inside the EOT is important. /* cilium_values = <

Screenshots

No response

Platform

Linux

maaft commented 1 month ago

@mysticaltech any idea where the issue is? updates in cloud-init? or Hetzner api? This is also affecting me currently

mysticaltech commented 1 month ago

Will have a look today

mysticaltech commented 1 month ago

Thanks for the debug @ggruening. Appreciate the details.

mysticaltech commented 1 month ago

Folks, I tried on my end with cx21 and cpx11 with both an old image and a newly rebuilt one. In both instances everything works fine.

So please try to debug more, especially in your case @ggruening, for instance, SSH into the server and try running the failed script /tmp/terraform_1260129824.sh manually. Also inspect its content.

Last but not least, follow all the debug tips in the debug section in the readme, like fetching the journalctl error logs.

mysticaltech commented 1 month ago

Response from gpt-4o, it might help.


Hello @ggruening and @maaft ,

I've been following this thread closely and noticed the issue with cloud-init failing to parse certain characters in your YAML configuration on openSUSE MicroOS. I'd like to suggest a few steps that might help in diagnosing and potentially resolving this issue:

Step-by-Step Debugging Approach

1. Check and Validate the YAML

The error related to an "unacceptable character" in your YAML file suggests a potential character encoding issue or a hidden/special character that isn't easily visible:

2. Re-run cloud-init

Since the environment is based on openSUSE MicroOS, you might need to be cautious about file immutability and system states:

3. Enhanced Logging

4. Data Inspection

Understanding what data cloud-init is handling could provide insights into potential misconfigurations:

Considerations for openSUSE MicroOS

These steps should provide a comprehensive approach to troubleshooting the issue at hand. If the problem persists, it might be beneficial to isolate the configuration to a simpler setup to determine if the issue is systemic or configuration-specific.

Hope this helps! Looking forward to hearing how it goes.

mysticaltech commented 1 month ago

If you can share the full cloud-init logs and especially the user-data (probably encoded in base64) it would be great.

ggruening commented 1 month ago

Hey @mysticaltech (gpt-4o :) ),

So please try to debug more, especially in your case @ggruening, for instance, SSH into the server and try running the failed script /tmp/terraform_1260129824.sh manually. Also inspect its content.

There is no /tmp/terraform_1260129824.sh on the servers. Maybe things were cleaned up when terraform ended?

So please try to debug more

I will. I don't have much time right now, but I'll get back as soon as possible - probably in a few hours. Thanks for thinking along.

Gregor

maaft commented 1 month ago

@mysticaltech thank you for looking into this.

How can I view the logs when I cannot SSH into the node?

I tried with hetnzer rescue mode and mounting the MicroOs Partition (/dev/sda3), but somehow /var folder is completely empty (and therefore I cannot see any logs).

cztk commented 1 month ago

As this is also linked in forum.hetzner ; I tried with terraform 1.8.5 ( which is out of date as the time of writing 1.9.3 is shiny ) and the provided config by @ggruening, which I reformated before testing, and it worked.

also packer v1.11.0 ; kubectl 1.30.3

Another difference was: @ggruening afaik used ssh-agent whereas I provided a non null private ssh key

@maaft @ggruening What terraform / tofu version did you use? Does it help to put your current config to the provided chatgpt and tell it to summarize / or clean up the comments help ( lazy way of reformatting bad charachters ).

ggruening commented 1 month ago

@mysticaltech @maaft @cztk,

I'm one step further, I don't know how big it is yet.

I logged into the server, exported the config (cloud-init query --all > cloud-init.query.all) and then jumped to the faulty location 6908. There was a description (!) of an ssh key stored at Hetzner, which I referenced in the kube.tf using its id. In my case it was Key f\u22r k8s stack - with a failed encoded german umlaut "ü". That must have thrown it out. @maas, check your descriptions (!) of the ssh keys if necessary.

Unfortunately, terraform keeps crashing, though. This time with:

╷
│ Error: remote-exec provisioner error
│ 
│   with module.kube-hetzner.null_resource.first_control_plane,
│   on .terraform/modules/kube-hetzner/init.tf line 70, in resource "null_resource" "first_control_plane":
│   70:   provisioner "remote-exec" {
│ 
│ error executing "/tmp/terraform_1986346640.sh": Process exited with status 127

Something completely different. Any ideas? I'm still looking!

Best regards Gregor

cztk commented 1 month ago

I upgraded my hcloud cli to the latest version and did a new testrun with the config @ggruening provided. ffd I used an old rsa key tested, worked.

I was not able to reproduce your issue :(

maaft commented 1 month ago

I'm using OpenTofu v1.8.1 Same issue with Terraform v1.9.2

But I used these versions 3 weeks ago, exact same kube.tf config and everything worked. Something must have changed in the meantime.

Just retried with rsa key (instead of ed25519) for SSH and updated hcloud cli. Same issue: I cannot SSH into the nodes, although they are online.

What I still find very weird: When I enable resuce mode and mount the MicroOS partition /var is completely empty. Should this be the case?! I have currently no ability to check any logs, which makes debugging obviously very hard. Would be nice if anyone has an idea here so I can be more productive wrt solving the issue :)

maaft commented 1 month ago

hmmm, now at least SSHD is no more crashing for me so I can login to the servers. What I changed:

  1. use rsa key
  2. use port 22 for ssh (previously had a custom port)
  3. updated hcloud cli

will try to narrow it down

Also, the rest of the cluster now bootstrapped normally but with one exception:

image

Somehow one of the agent nodes went straight into emergency mode. I have observed this also multiple times before already when bootstrapping a cluster! Reboot of that node helps.

Now I get a different (but similar) error that also @ggruening has reported:

 ╷
│ Error: remote-exec provisioner error
│ 
│   with module.kube-hetzner.null_resource.first_control_plane,
│   on .terraform/modules/kube-hetzner/init.tf line 70, in resource "null_resource" "first_control_plane":
│   70:   provisioner "remote-exec" {
│ 
│ error executing "/tmp/terraform_459919302.sh": Process exited with status 1

Since I can now SSH into the nodes, I'm going to dig deeper and hopefully find something.

maaft commented 1 month ago

@mysticaltech here is what I get when executing the script in question manually:

control-plane-fsn1-pwv:/tmp # bash terraform_707218234.sh 
+ /etc/cloud/rename_interface.sh
+ mkdir -p /etc/rancher/k3s
+ '[' -f /tmp/config.yaml ']'
+ chmod 0600 /etc/rancher/k3s/config.yaml
+ '[' -e /etc/rancher/k3s/k3s.yaml ']'
+ cat
+ set -a
+ source /etc/environment
+ set +a
+ cat
+ cat
+ timeout 180s /bin/sh -c 'while ! ping -c 1 1.1.1.1 >/dev/null 2>&1; do echo "Ready for k3s installation, waiting for a successful connection to the internet..."; sleep 5; done; echo Connected'
Connected
+ curl -sfL https://get.k3s.io
+ INSTALL_K3S_SKIP_START=true
+ INSTALL_K3S_SKIP_SELINUX_RPM=true
+ INSTALL_K3S_CHANNEL=v1.29
+ INSTALL_K3S_EXEC='server '
+ sh -
[INFO]  Finding release for channel v1.29
[INFO]  Using v1.29.7+k3s1 as release
[INFO]  Downloading hash https://github.com/k3s-io/k3s/releases/download/v1.29.7+k3s1/sha256sum-amd64.txt
[INFO]  Skipping binary downloaded, installed k3s matches hash
[INFO]  Skipping installation of SELinux RPM
[INFO]  Skipping /usr/local/bin/kubectl symlink to k3s, already exists
[INFO]  Skipping /usr/local/bin/crictl symlink to k3s, already exists
[INFO]  Skipping /usr/local/bin/ctr symlink to k3s, already exists
[INFO]  Creating killall script /usr/local/bin/k3s-killall.sh
[INFO]  Creating uninstall script /usr/local/bin/k3s-uninstall.sh
[INFO]  env: Creating environment file /etc/systemd/system/k3s.service.env
[INFO]  systemd: Creating service file /etc/systemd/system/k3s.service
[INFO]  systemd: Enabling k3s unit
Created symlink '/etc/systemd/system/multi-user.target.wants/k3s.service' → '/etc/systemd/system/k3s.service'.
+ /sbin/semodule -v -i /usr/share/selinux/packages/k3s.pp
Attempting to install module '/usr/share/selinux/packages/k3s.pp':
libsemanage.map_compressed_file: Unable to open /usr/share/selinux/packages/k3s.pp
 (No such file or directory).
libsemanage.semanage_direct_install_file: Unable to read file /usr/share/selinux/packages/k3s.pp
 (No such file or directory).
/sbin/semodule:  Failed on /usr/share/selinux/packages/k3s.pp!
ggruening commented 1 month ago

Heureka! In the end it works now!

I discovered two (?) more errors:

  1. In my private ssh key I also had a comment with a German umlaut. I corrected that (but didn't test it again straight away, so I'm not sure if that was really was a problem, too.)

  2. I destroyed the entire stack several times and rebuilt it completely (terraform destroy and terraform apply -auto-approve). I had hoped that this would give me a clean, clear test situation. But now it happens that Hetzner sometimes just gives you the same IPs (IPv4) again. The fingerprint of the server is of course different from the one in my local known_hosts file. This prevents automatic login for fear of a "man-in-the-middle" attack. So I've cleaned up here: ssh-keygen -f "/home/ggruening/.ssh/known_hosts" -R "XXX.XXX.XXX.XXX", successful for all my IPs that I had before.

And lo and behold: the script now actually runs through (@cztk I continue to use the ssh-agent, by the way).

[!IMPORTANT] Summary: 1) Avoid comments in ssh-keys with non-ASCII characters (both at Hetzner and locally). 2) Always delete the already known IPs from the known_hosts when the servers are newly set up (even if I'm not quite sure how to find them safely... how am I supposed to know whether I've ever had this or that IP before? Especially since it only becomes known during the setup process... does anyone have an idea?

Phew, that was exhausting. Thank you all (@maaft @mysticaltech @cztk) very much for thinking along with me!

@maaft, please tell us here whether this thought also solves your problem. I'll leave the issue open, feel free to close it.

Gregor

maaft commented 1 month ago

@ggruening unfortunately this did not help.

  1. different ssh port then 22 still completely wrecks everything
  2. when using ssh port 22, I still get /sbin/semodule: Failed on /usr/share/selinux/packages/k3s.pp errors on first control-plane.

will wait for @mysticaltech to come back, I'm out of ideas.

ggruening commented 1 month ago
1. different ssh port then 22 still completely wrecks everything

@maaft Have you thought about creating a firewall rule for your particular ssh port?

Something like that in your kube.tf might help:

extra_firewall_rules = [
    {
      description = "For special ssh port"
      direction       = "in"
      protocol        = "tcp"
      port            = "<whatever>"
      source_ips      = ["0.0.0.0/0", "::/0"]
      destination_ips = [] # Won't be used for this rule
    }
  ]
maaft commented 1 month ago

the port that you specify in kube.tf will be automatically configured as open inside the hetzner firewall (yes, I checked that)

When specifying different port than 22, SSHD will fail to start - therefore no SSH access possible. But this was not the case 3 weeks ago and I have 4 clusters in total with non-22 port that are successfully running.

So I stay with my asssumption, that something must have changed in this time that is not in our control.

ggruening commented 1 month ago

@maaft

Maybe it is exactly that: the firewall rule is no longer created automatically. I just ran my stack with my original kube.tf and it also works with a different ssh port, but I opened it manually as described above...

maaft commented 1 month ago

no, I meant that I checked if the configured port xxxx was present in Hetzners Firewall (via console.hetzner.cloud) - and it was. So pretty sure, I don't have any FW issues.

Anyway, different error with port 22, so I'll focus on that one first.

maaft commented 1 month ago

Okay, finally got it.

Maybe it was the same ssh known_hosts issue that you experienced.

What I finally did was:

  1. removed all IPs from known_hosts
  2. deleted packer snapshots in hetzner project (previously I always kept them but the must have been faulty, maybe due to known_hosts issue)
  3. rebuild packer
  4. bootstrap cluster
ggruening commented 1 month ago

Maybe it was the same ssh known_hosts issue that you experienced.

@maaft Fine. I have highlighted my "solution" in color above. HTH.

mysticaltech commented 1 month ago

Great work people! Thanks for the hand @cztk.