Syself is an SCS compatible Kubernetes-as-a-Service provider. The SCS (Sovereign Cloud Stack) is a European initiative for an open, transparent and vendor-neutral cloud ecosystem that guarantees sovereignty. In order to be conformant, the platform needs to fulfill all requirements in the SCS test suite. One of these requirements is the distribution of nodes across physical hosts for enhanced reliability.
This guide will explain how you can make your own clusters SCS-compatible by using placement groups or bare metal control planes.
It is suggested that you go through the Getting started section of the docs before reading this guide.
This guide assumes you have already completed the Prerequisites described in there, have access to the management cluster and have done the account preparation.
For creating clusters, you also need to apply the ClusterStacks.
The SCS guidelines require your cluster control plane nodes to be distributed across different physical hosts. This can be achieved in two ways: using placement groups or bare metal control planes.
The example cluster.yaml below is SCS-compatible. The important parts, which are related to control plane replica count and placement groups, are highlighted:
And apply it to the management cluster with:
Cluster creation will take a few more minutes. You can monitor the process by looking at the machine objects:
These represent actual machines in your Hetzner project. If all of them are in the Running phase, it means your cluster is ready!
When using bare metal control planes, every node is tied to its own physical bare metal host, meaning they are also SCS-compatible.
The example cluster.yaml below represents a cluster using bare metal control planes. The important parts, which are related to control plane replica count and class, are highlighted:
Before creating a cluster with a baremetal control plane, ensure your HetznerBareMetalHost resources are registered and labeled appropriately.
For more information on using bare metal control planes, refer to this page.
You can apply the manifest to the management cluster with:
Cluster creation will take a few more minutes. You can monitor the process by looking at the machine objects:
These represent actual machines and bare metal servers in your Hetzner account. If all of them are in the Running phase, it means your cluster is ready!
To get the kubeconfig of your workload cluster, you can use the command:
Now, you can change the KUBECONFIG environment variable to point to your new cluster:
If you want more information about workload and management clusters, check the Management and Workload Clusters section.
When accessing your cluster, you may see some pods still pending. This is normal, you just have to wait for it to be completely initialized. When all pods are running and the four nodes are in ready state, it means your cluster is completely provisioned.
And that's it! Now you have a production-ready, SCS-compatible Kubernetes cluster managed by Syself Autopilot.