diff --git a/client/pkg/omni/resources/omni/labels.go b/client/pkg/omni/resources/omni/labels.go index 8c41b3e59..6a3fa79b4 100644 --- a/client/pkg/omni/resources/omni/labels.go +++ b/client/pkg/omni/resources/omni/labels.go @@ -60,6 +60,7 @@ const ( // LabelIsStaticInfraProvider is set on the infra.ProviderStatus resources to mark them as static providers - they do not work with MachineRequests to // allocate and de-allocate machines, but rather work with a static set of machines (e.g., bare-metal machines). + // tsgen:LabelIsStaticInfraProvider LabelIsStaticInfraProvider = SystemLabelPrefix + "is-static-infra-provider" // LabelMachineClassName is the name of the machine class. diff --git a/frontend/src/api/resources.ts b/frontend/src/api/resources.ts index 2c6a41e79..4c3aa0937 100644 --- a/frontend/src/api/resources.ts +++ b/frontend/src/api/resources.ts @@ -126,6 +126,7 @@ export const LabelMachine = "omni.sidero.dev/machine"; export const LabelSystemPatch = "omni.sidero.dev/system-patch"; export const LabelExposedServiceAlias = "omni.sidero.dev/exposed-service-alias"; export const LabelInfraProviderID = "omni.sidero.dev/infra-provider-id"; +export const LabelIsStaticInfraProvider = "omni.sidero.dev/is-static-infra-provider"; export const LabelMachineRequest = "omni.sidero.dev/machine-request"; export const LabelMachineRequestSet = "omni.sidero.dev/machine-request-set"; export const LabelNoManualAllocation = "omni.sidero.dev/no-manual-allocation"; diff --git a/frontend/src/views/omni/MachineClasses/ProviderConfig.vue b/frontend/src/views/omni/MachineClasses/ProviderConfig.vue index 91dfb5ee8..110b6a6e4 100644 --- a/frontend/src/views/omni/MachineClasses/ProviderConfig.vue +++ b/frontend/src/views/omni/MachineClasses/ProviderConfig.vue @@ -6,7 +6,7 @@ included in the LICENSE file. -->