Documentation
¶
Overview ¶
Package v1alpha1 contains API Schema definitions for the settings.gardener.cloud API group +groupName=settings.gardener.cloud +kubebuilder:object:generate=true
Index ¶
Constants ¶
View Source
const ( // V1Alpha1 is the API version V1Alpha1 = "mcm.gardener.cloud/v1alpha1" // ProviderName is the provider name ProviderName = "metal" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ProviderSpec ¶
type ProviderSpec struct { // Image is the URL pointing to an OCI registry containing the operating system image which should be used to boot the Machine Image string `json:"image,omitempty"` // Ignition contains the ignition configuration which should be run on first boot of a Machine. Ignition string `json:"ignition,omitempty"` // By default, if ignition is set it will be merged it with our template // If IgnitionOverride is set to true allows to fully override IgnitionOverride bool `json:"ignitionOverride,omitempty"` // IgnitionSecretKey is optional key field used to identify the ignition content in the Secret // If the key is empty, the DefaultIgnitionKey will be used as fallback. IgnitionSecretKey string `json:"ignitionSecretKey,omitempty"` // Labels are used to tag resources which the MCM creates, so they can be identified later. Labels map[string]string `json:"labels,omitempty"` // DnsServers is a list of DNS resolvers which should be configured on the host. DnsServers []netip.Addr `json:"dnsServers,omitempty"` // ServerLabels are passed to the ServerClaim to find a server with certain properties ServerLabels map[string]string `json:"serverLabels,omitempty"` }
ProviderSpec is the spec to be used while parsing the calls
Click to show internal directories.
Click to hide internal directories.