Documentation
¶
Overview ¶
Package v1alpha1 contains the v1alpha1 group Sample resources of the Template provider. +kubebuilder:object:generate=true +groupName=instana.crossplane.io +versionName=v1alpha1
Index ¶
- Constants
- Variables
- type Instana
- func (in *Instana) DeepCopy() *Instana
- func (in *Instana) DeepCopyInto(out *Instana)
- func (in *Instana) DeepCopyObject() runtime.Object
- func (mg *Instana) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (mg *Instana) GetDeletionPolicy() xpv1.DeletionPolicy
- func (mg *Instana) GetProviderConfigReference() *xpv1.Reference
- func (mg *Instana) GetProviderReference() *xpv1.Reference
- func (mg *Instana) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (mg *Instana) SetConditions(c ...xpv1.Condition)
- func (mg *Instana) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (mg *Instana) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *Instana) SetProviderReference(r *xpv1.Reference)
- func (mg *Instana) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type InstanaList
- type InstanaObservation
- type InstanaParameters
- type InstanaSpec
- type InstanaStatus
- type SettingsConfigmap
Constants ¶
const ( Group = "instana.crossplane.io" Version = "v1alpha1" )
Package type metadata.
Variables ¶
var ( // SchemeGroupVersion is group version used to register these objects SchemeGroupVersion = schema.GroupVersion{Group: Group, Version: Version} // SchemeBuilder is used to add go types to the GroupVersionKind scheme SchemeBuilder = &scheme.Builder{GroupVersion: SchemeGroupVersion} )
var ( InstanaKind = reflect.TypeOf(Instana{}).Name() InstanaGroupKind = schema.GroupKind{Group: Group, Kind: InstanaKind}.String() InstanaKindAPIVersion = InstanaKind + "." + SchemeGroupVersion.String() InstanaGroupVersionKind = SchemeGroupVersion.WithKind(InstanaKind) )
MyType type metadata.
Functions ¶
This section is empty.
Types ¶
type Instana ¶
type Instana struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec InstanaSpec `json:"spec"` Status InstanaStatus `json:"status,omitempty"` }
Instana describes how to install operator based instana on k8s. +kubebuilder:subresource:status +kubebuilder:printcolumn:name="STATUS",type="string",JSONPath=".status.bindingPhase" +kubebuilder:printcolumn:name="STATE",type="string",JSONPath=".status.atProvider.state" +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp" Please replace `PROVIDER-NAME` with your actual provider name, like `aws`, `azure`, `gcp`, `alibaba` +kubebuilder:resource:scope=Cluster,categories={crossplane,managed,instana}
func (*Instana) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Instana.
func (*Instana) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Instana) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Instana) GetCondition ¶
func (mg *Instana) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this Instana.
func (*Instana) GetDeletionPolicy ¶
func (mg *Instana) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this Instana.
func (*Instana) GetProviderConfigReference ¶
GetProviderConfigReference of this Instana.
func (*Instana) GetProviderReference ¶
GetProviderReference of this Instana. Deprecated: Use GetProviderConfigReference.
func (*Instana) GetWriteConnectionSecretToReference ¶
func (mg *Instana) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this Instana.
func (*Instana) SetConditions ¶
SetConditions of this Instana.
func (*Instana) SetDeletionPolicy ¶
func (mg *Instana) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this Instana.
func (*Instana) SetProviderConfigReference ¶
SetProviderConfigReference of this Instana.
func (*Instana) SetProviderReference ¶
SetProviderReference of this Instana. Deprecated: Use SetProviderConfigReference.
func (*Instana) SetWriteConnectionSecretToReference ¶
func (mg *Instana) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this Instana.
type InstanaList ¶
type InstanaList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Instana `json:"items"` }
InfraList contains a list of Infra
func (*InstanaList) DeepCopy ¶
func (in *InstanaList) DeepCopy() *InstanaList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InstanaList.
func (*InstanaList) DeepCopyInto ¶
func (in *InstanaList) DeepCopyInto(out *InstanaList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*InstanaList) DeepCopyObject ¶
func (in *InstanaList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*InstanaList) GetItems ¶
func (l *InstanaList) GetItems() []resource.Managed
GetItems of this InstanaList.
type InstanaObservation ¶
type InstanaObservation struct {
ObservableField string `json:"observableField,omitempty"`
}
MyTypeObservation are the observable fields of a MyType.
func (*InstanaObservation) DeepCopy ¶
func (in *InstanaObservation) DeepCopy() *InstanaObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InstanaObservation.
func (*InstanaObservation) DeepCopyInto ¶
func (in *InstanaObservation) DeepCopyInto(out *InstanaObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type InstanaParameters ¶
type InstanaParameters struct { InstanaVersion string `json:"instanaVersion"` NFSServerHost string `json:"nfsServerHost"` SettingsConfigmap SettingsConfigmap `json:"settingsConfigmap"` }
MyTypeParameters are the configurable fields of a MyType.
func (*InstanaParameters) DeepCopy ¶
func (in *InstanaParameters) DeepCopy() *InstanaParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InstanaParameters.
func (*InstanaParameters) DeepCopyInto ¶
func (in *InstanaParameters) DeepCopyInto(out *InstanaParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type InstanaSpec ¶
type InstanaSpec struct { xpv1.ResourceSpec `json:",inline"` ForProvider InstanaParameters `json:"forProvider"` }
A MyTypeSpec defines the desired state of a MyType.
func (*InstanaSpec) DeepCopy ¶
func (in *InstanaSpec) DeepCopy() *InstanaSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InstanaSpec.
func (*InstanaSpec) DeepCopyInto ¶
func (in *InstanaSpec) DeepCopyInto(out *InstanaSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type InstanaStatus ¶
type InstanaStatus struct { xpv1.ResourceStatus `json:",inline"` AtProvider InstanaObservation `json:"atProvider,omitempty"` }
A MyTypeStatus represents the observed state of a MyType.
func (*InstanaStatus) DeepCopy ¶
func (in *InstanaStatus) DeepCopy() *InstanaStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InstanaStatus.
func (*InstanaStatus) DeepCopyInto ¶
func (in *InstanaStatus) DeepCopyInto(out *InstanaStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SettingsConfigmap ¶
func (*SettingsConfigmap) DeepCopy ¶
func (in *SettingsConfigmap) DeepCopy() *SettingsConfigmap
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SettingsConfigmap.
func (*SettingsConfigmap) DeepCopyInto ¶
func (in *SettingsConfigmap) DeepCopyInto(out *SettingsConfigmap)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.