Documentation ¶
Overview ¶
Package v1 is the v1 version of the API.
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // SchemeBuilder is an instance of Schema SchemeBuilder runtime.SchemeBuilder // AddToScheme adds the schema AddToScheme = localSchemeBuilder.AddToScheme )
var SchemeGroupVersion = schema.GroupVersion{
Group: "fic.f5.com",
Version: "v1",
}
SchemeGroupVersion define your schema name and the version
Functions ¶
func Resource ¶
func Resource(resource string) schema.GroupResource
Resource takes an unqualified resource and returns a Group qualified GroupResource
Types ¶
type HostSpec ¶
type HostSpec struct { Host string `json:"host,omitempty"` Key string `json:"key,omitempty"` IPAMLabel string `json:"ipamLabel,omitempty"` }
func (*HostSpec) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HostSpec.
func (*HostSpec) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IPAM ¶ added in v0.1.5
type IPAM struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec IPAMSpec `json:"spec,omitempty"` Status IPAMStatus `json:"status,omitempty"` }
ExternalDNS defines the DNS resource.
func (*IPAM) DeepCopy ¶ added in v0.1.5
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IPAM.
func (*IPAM) DeepCopyInto ¶ added in v0.1.5
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*IPAM) DeepCopyObject ¶ added in v0.1.5
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type IPAMList ¶ added in v0.1.5
type IPAMList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata"` Items []IPAM `json:"items"` }
IPAMList is list of ExternalDNS
func (*IPAMList) DeepCopy ¶ added in v0.1.5
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IPAMList.
func (*IPAMList) DeepCopyInto ¶ added in v0.1.5
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*IPAMList) DeepCopyObject ¶ added in v0.1.5
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type IPAMSpec ¶ added in v0.1.5
type IPAMSpec struct {
HostSpecs []*HostSpec `json:"hostSpecs,omitempty"`
}
func (*IPAMSpec) DeepCopy ¶ added in v0.1.5
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IPAMSpec.
func (*IPAMSpec) DeepCopyInto ¶ added in v0.1.5
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IPAMStatus ¶ added in v0.1.5
type IPAMStatus struct {
IPStatus []*IPSpec `json:"IPStatus,omitempty"`
}
func (*IPAMStatus) DeepCopy ¶ added in v0.1.5
func (in *IPAMStatus) DeepCopy() *IPAMStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IPAMStatus.
func (*IPAMStatus) DeepCopyInto ¶ added in v0.1.5
func (in *IPAMStatus) DeepCopyInto(out *IPAMStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IPSpec ¶
type IPSpec struct { IP string `json:"ip,omitempty"` Host string `json:"host,omitempty"` Key string `json:"key,omitempty"` IPAMLabel string `json:"ipamLabel,omitempty"` }
func (*IPSpec) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IPSpec.
func (*IPSpec) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.