CloudInit CRD
You can use the CloudInit
CRD to configure SUSE® Virtualization operating system settings either manually or using GitOps solutions.
Background
The SUSE® Virtualization operating system uses the elemental-toolkit, which has a unique form of cloud-init support.
Settings configured during the installation process are written to the elemental
cloud-init file in the /oem
directory. Because the operating system is immutable, the cloud-init file ensures that node-specific settings are applied on each reboot.
The CloudInit
CRD exposes the cloud-init file through a Kubernetes CRD. This allows you to modify node-specific settings after installation without needing to take steps to make the root filesystem writable.
In addition, the CloudInit
CRD is persisted and synchronized with the underlying hosts so that changes made directly to the operating system are not lost whenever nodes are rebooted and upgraded.
The |
Getting Started
The following example adds SSH keys to all nodes in an existing SUSE® Virtualization cluster.
apiVersion: node.harvesterhci.io/v1beta1
kind: CloudInit
metadata:
name: my-ssh-keys
spec:
matchSelector:
harvesterhci.io/managed: "true"
filename: 99-my-ssh-keys
contents: |
stages:
network:
- name: "add my ssh keys"
authorized_keys:
rancher:
- ssh-rsa key1
- ssh-rsa key2
paused: false
The spec
field contains the following:
-
matchSelector (required)
: Label selector used to identify the nodes that the change must be applied to. You can use theharvesterhci.io/managed: "true"
label to select all nodes. -
filename (required)
: Name of the file in/oem
. cloud-init files in/oem
are applied in alphabetical order. This can be used to ensure that file changes are applied during booting. -
content (required)
: Inline content for the Elemental cloud-init resource that is written to target nodes. -
paused (optional)
: Used to pauseCloudInit
CRD reconciliation. The SUSE® Virtualization controllers monitor Elemental cloud-init files that are managed by theCloudInit
CRD. Direct changes made to these files are immediately reconciled back to the defined state unless the CRD is paused.
Once the object is created, you can log in to the target nodes to verify the results.
In the following example, a file named /oem/99-my-ssh-keys.yaml
is created and subsequently monitored by the SUSE® Virtualization controllers.
harvester-qhgd4:/oem # more 99-my-ssh-keys.yaml stages: network: - name: "add my ssh keys" authorized_keys: rancher: - ssh-rsa key1 - ssh-rsa key2
The status
subresource can be used to track the rollout of a change to the underlying nodes.
In the following example, the status
values indicate that the change was applied to all three nodes in the cluster.
status: rollouts: harvester-kfs2c: conditions: - lastTransitionTime: "2024-08-26T03:57:33Z" message: "" reason: CloudInitApplicable status: "True" type: Applicable - lastTransitionTime: "2024-08-26T03:57:33Z" message: Local file checksum is the same as the CloudInit checksum reason: CloudInitChecksumMatch status: "False" type: OutOfSync - lastTransitionTime: "2024-08-26T03:57:33Z" message: 99-my-ssh-keys.yaml is present under /oem reason: CloudInitPresentOnDisk status: "True" type: Present harvester-qhgd4: conditions: - lastTransitionTime: "2024-08-26T03:57:33Z" message: "" reason: CloudInitApplicable status: "True" type: Applicable - lastTransitionTime: "2024-08-26T04:00:00Z" message: Local file checksum is the same as the CloudInit checksum reason: CloudInitChecksumMatch status: "False" type: OutOfSync - lastTransitionTime: "2024-08-26T04:00:00Z" message: 99-my-ssh-keys.yaml is present under /oem reason: CloudInitPresentOnDisk status: "True" type: Present harvester-rmvzg: conditions: - lastTransitionTime: "2024-08-26T03:57:33Z" message: "" reason: CloudInitApplicable status: "True" type: Applicable - lastTransitionTime: "2024-08-26T03:57:33Z" message: Local file checksum is the same as the CloudInit checksum reason: CloudInitChecksumMatch status: "False" type: OutOfSync - lastTransitionTime: "2024-08-26T03:57:33Z" message: 99-my-ssh-keys.yaml is present under /oem reason: CloudInitPresentOnDisk status: "True" type: Present
Once the cloud-init changes are applied, you must reboot the nodes to ensure that the |
Deleting the CloudInit
CRD results in the removal of associated files from the underlying nodes. As with other cloud-init resources, the effects of this change are not exhibited until the impacted nodes are rebooted.
You are encouraged to leverage Fleet and the CloudInit
CRD to manage changes to the SUSE® Virtualization operating system.