Documentation ¶
Overview ¶
+groupName=rdns.linode.kubeform.com
Index ¶
- Variables
- func GetDecoder() map[string]jsoniter.ValDecoder
- func GetEncoder() map[string]jsoniter.ValEncoder
- func Kind(kind string) schema.GroupKind
- func Resource(resource string) schema.GroupResource
- type Rdns
- func (in *Rdns) DeepCopy() *Rdns
- func (in *Rdns) DeepCopyInto(out *Rdns)
- func (in *Rdns) DeepCopyObject() runtime.Object
- func (r *Rdns) SetupWebhookWithManager(mgr ctrl.Manager) error
- func (r *Rdns) ValidateCreate() error
- func (r *Rdns) ValidateDelete() error
- func (r *Rdns) ValidateUpdate(old runtime.Object) error
- type RdnsList
- type RdnsSpec
- type RdnsSpecResource
- type RdnsStatus
Constants ¶
This section is empty.
Variables ¶
var ( // TODO: move SchemeBuilder with zz_generated.deepcopy.go to k8s.io/api. // localSchemeBuilder and AddToScheme will stay in k8s.io/kubernetes. SchemeBuilder runtime.SchemeBuilder AddToScheme = localSchemeBuilder.AddToScheme )
var SchemeGroupVersion = schema.GroupVersion{Group: rdns.GroupName, Version: "v1alpha1"}
Functions ¶
func GetDecoder ¶
func GetDecoder() map[string]jsoniter.ValDecoder
func GetEncoder ¶
func GetEncoder() map[string]jsoniter.ValEncoder
func Kind ¶
Kind takes an unqualified kind and returns a Group qualified GroupKind
func Resource ¶
func Resource(resource string) schema.GroupResource
Resource takes an unqualified resource and returns a Group qualified GroupResource
Types ¶
type Rdns ¶
type Rdns struct { metav1.TypeMeta `json:",inline,omitempty"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec RdnsSpec `json:"spec,omitempty"` Status RdnsStatus `json:"status,omitempty"` }
func (*Rdns) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Rdns.
func (*Rdns) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Rdns) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Rdns) SetupWebhookWithManager ¶
func (*Rdns) ValidateCreate ¶
ValidateCreate implements webhook.Validator so a webhook will be registered for the type
func (*Rdns) ValidateDelete ¶
ValidateDelete implements webhook.Validator so a webhook will be registered for the type
type RdnsList ¶
type RdnsList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` // Items is a list of Rdns CRD objects Items []Rdns `json:"items,omitempty"` }
RdnsList is a list of Rdnss
func (*RdnsList) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RdnsList.
func (*RdnsList) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type RdnsSpec ¶
type RdnsSpec struct { State *RdnsSpecResource `json:"state,omitempty" tf:"-"` Resource RdnsSpecResource `json:"resource" tf:"resource"` UpdatePolicy base.UpdatePolicy `json:"updatePolicy,omitempty" tf:"-"` TerminationPolicy base.TerminationPolicy `json:"terminationPolicy,omitempty" tf:"-"` ProviderRef core.LocalObjectReference `json:"providerRef" tf:"-"` BackendRef *core.LocalObjectReference `json:"backendRef,omitempty" tf:"-"` }
func (*RdnsSpec) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RdnsSpec.
type RdnsSpecResource ¶
type RdnsSpecResource struct { Timeouts *base.ResourceTimeout `json:"timeouts,omitempty" tf:"timeouts"` ID string `json:"id,omitempty" tf:"id,omitempty"` // The public Linode IPv4 or IPv6 address to operate on. Address *string `json:"address" tf:"address"` // The reverse DNS assigned to this address. For public IPv4 addresses, this will be set to a default value provided by Linode if not explicitly set. Rdns *string `json:"rdns" tf:"rdns"` // If true, the RDNS assignment will be retried within the operation timeout period. // +optional WaitForAvailable *bool `json:"waitForAvailable,omitempty" tf:"wait_for_available"` }
func (*RdnsSpecResource) DeepCopy ¶
func (in *RdnsSpecResource) DeepCopy() *RdnsSpecResource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RdnsSpecResource.
func (*RdnsSpecResource) DeepCopyInto ¶
func (in *RdnsSpecResource) DeepCopyInto(out *RdnsSpecResource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type RdnsStatus ¶
type RdnsStatus struct { // Resource generation, which is updated on mutation by the API Server. // +optional ObservedGeneration int64 `json:"observedGeneration,omitempty"` // +optional Phase status.Status `json:"phase,omitempty"` // +optional Conditions []kmapi.Condition `json:"conditions,omitempty"` }
func (*RdnsStatus) DeepCopy ¶
func (in *RdnsStatus) DeepCopy() *RdnsStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RdnsStatus.
func (*RdnsStatus) DeepCopyInto ¶
func (in *RdnsStatus) DeepCopyInto(out *RdnsStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.