Documentation
¶
Overview ¶
+k8s:deepcopy-gen=package,register +groupName=kubernikus.sap.cc
Index ¶
- Constants
- Variables
- func Resource(resource string) schema.GroupResource
- type Kluster
- func (spec Kluster) Account() string
- func (k *Kluster) AddFinalizer(finalizer string)
- func (spec Kluster) ApiServiceIP() (net.IP, error)
- func (in *Kluster) DeepCopy() *Kluster
- func (in *Kluster) DeepCopyInto(out *Kluster)
- func (in *Kluster) DeepCopyObject() runtime.Object
- func (k *Kluster) HasFinalizer(finalizer string) bool
- func (k *Kluster) NeedsFinalizer(finalizer string) bool
- func (k *Kluster) RemoveFinalizer(finalizer string)
- type KlusterList
Constants ¶
const GroupName = "kubernikus.sap.cc"
GroupName is the group name for the Ark API
const (
KlusterResourcePlural = "klusters"
)
Variables ¶
var ( // SchemeBuilder collects the scheme builder functions for the Ark API SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes) // AddToScheme applies the SchemeBuilder functions to a specified scheme AddToScheme = SchemeBuilder.AddToScheme )
var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: "v1"}
SchemeGroupVersion is the GroupVersion for the Ark API
Functions ¶
func Resource ¶
func Resource(resource string) schema.GroupResource
Resource gets an Ark GroupResource for a specified resource
Types ¶
type Kluster ¶
type Kluster struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata"` Spec models.KlusterSpec `json:"spec"` Status models.KlusterStatus `json:"status,omitempty"` }
func (*Kluster) AddFinalizer ¶ added in v1.5.0
func (*Kluster) DeepCopy ¶ added in v1.5.0
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Kluster.
func (*Kluster) DeepCopyInto ¶ added in v1.5.0
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Kluster) DeepCopyObject ¶ added in v1.5.0
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Kluster) HasFinalizer ¶ added in v1.5.0
func (*Kluster) NeedsFinalizer ¶ added in v1.5.0
func (*Kluster) RemoveFinalizer ¶ added in v1.5.0
type KlusterList ¶
type KlusterList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata"` Items []Kluster `json:"items"` }
func (*KlusterList) DeepCopy ¶ added in v1.5.0
func (in *KlusterList) DeepCopy() *KlusterList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KlusterList.
func (*KlusterList) DeepCopyInto ¶ added in v1.5.0
func (in *KlusterList) DeepCopyInto(out *KlusterList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*KlusterList) DeepCopyObject ¶ added in v1.5.0
func (in *KlusterList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.