Skip to main content
Version: latest

Edge Bring your own OS (BYOOS)

Versions Supported

BYOOS enables you to use a custom OS for your Edge host. The custom OS must include all the Edge artifacts and provider images required by the Edge Installer. Refer to the Build Edge Artifacts guide for steps on how to create a custom OS that includes all the required components for the Edge Installer.

Next, select the BYOOS pack and fill out the required parameters during the cluster profile creation process. The system.uri parameter specifies the location of the BYOOS image.

Agent Mode

To enable agent mode with the BYOOS Edge OS pack, expand the Presets section from the YAML editor view. Toggle the Agent Mode switch to enable agent mode. Check out the Install Palette Agent guide for additional guidance on installing the Palette Agent.

Terraform

You can retrieve details about the BYOOS Edge OS agent pack using the following Terraform code.

data "spectrocloud_registry" "public_registry" {
name = "Public Repo"
}

data "spectrocloud_pack_simple" "byoos" {
name = "edge-native-byoi"
version = "2.0.0"
type = "helm"
registry_uid = data.spectrocloud_registry.public_registry.id
}