In this part of the self-paced exercise, you will create two custom addons that contain the KubeVirt resources. The addons will then be added to a custom cluster blueprint and the blueprint will be applied to the cluster. The specific KubeVirt addons that will be deployed are:
The KubeVirt operator (this manages the KubeVirt resources)
The KubeVirt custom resource definitions (CRDs)
The KubeVirt components (pods, services and configurations)
In this step, you will create a namespace for the KubeVirt resources. The "namespace.yaml" file in the "/getstarted/kubevirt/addon" directory of the forked repository contains the declarative specification for the namespace resource.
The following items may need to be updated/customized if you used alternate names.
value: kubevirt-cluster
kind:ManagedNamespaceapiVersion:config.rafay.dev/v2metadata:name:kubevirtdescription:namespace for kubevirtlabels:annotations:spec:type:RafayWizardresourceQuota:placement:placementType:ClusterSpecificclusterLabels:-key:rafay.dev/clusterNamevalue:kubevirt-cluster
Open a Terminal (macOS/Linux) or Command Prompt (Windows) and navigate to the folder where you forked the Git repository
Navigate to the folder "/getstarted/kubevirt/addon"
Type the command below
rctl create namespace -f namespace.yaml
If you did not encounter any errors, you can optionally verify if everything was created correctly on the controller.
In your project, select Infrastructure -> Namespaces
You should see a namespace called kubevirt
Next, you will publish the namespace to the cluster.
In this step, you will create two custom addons for Kubevirt. The "kubevirt-operator-addon.yaml" and "kubevirt-cr-addon.yaml" files contain the declarative specifications for the addons.
First, you will create the KubeVirt Operator addon using the "kubevirt-operator-addon.yaml" file.
The following items may need to be updated/customized if you used alternate names.
In this step, you will create a custom cluster blueprint with the KubeVirt addons. The "blueprint.yaml" file contains the declarative specification for the blueprint.
Open a Terminal (macOS/Linux) or Command Prompt (Windows) and navigate to the folder where you forked the Git repository
Navigate to the folder "/getstarted/kubevirt/blueprint"
The following items may need to be updated/customized if you used alternate names.
As of this step, you have created and applied a custom cluster blueprint with KubeVirt as an addon.
You are now ready to move on to the next step where you will deploy a virtual machine workload to the cluster.
Note that you can also reuse this cluster blueprint for as many clusters as you require in this project and also share the blueprint with other projects.