Documentation ¶
Overview ¶
Package v1alpha1 contains resources relating to Crossplane Stacks. +kubebuilder:object:generate=true +groupName=stacks.crossplane.io +versionName=v1alpha1
Index ¶
- Constants
- Variables
- type AppMetadataSpec
- type Behavior
- type BehaviorCRD
- type CRDList
- type ClusterStackInstall
- func (in *ClusterStackInstall) DeepCopy() *ClusterStackInstall
- func (in *ClusterStackInstall) DeepCopyInto(out *ClusterStackInstall)
- func (in *ClusterStackInstall) DeepCopyObject() runtime.Object
- func (si *ClusterStackInstall) GroupVersionKind() schema.GroupVersionKind
- func (si *ClusterStackInstall) Image() string
- func (si *ClusterStackInstall) InstallJob() *corev1.ObjectReference
- func (si *ClusterStackInstall) PermissionScope() string
- func (si *ClusterStackInstall) SetConditions(c ...runtimev1alpha1.Condition)
- func (si *ClusterStackInstall) SetInstallJob(job *corev1.ObjectReference)
- func (si *ClusterStackInstall) SetStackRecord(job *corev1.ObjectReference)
- func (si *ClusterStackInstall) StackRecord() *corev1.ObjectReference
- type ClusterStackInstallList
- type ContributorSpec
- type ControllerDeployment
- type ControllerSpec
- type FieldBinding
- type IconSpec
- type KustomizeEngineConfiguration
- type KustomizeEngineOverlay
- type PermissionsSpec
- type Stack
- type StackDefinition
- type StackDefinitionList
- type StackDefinitionSource
- type StackDefinitionSpec
- type StackDefinitionStatus
- type StackInstall
- func (in *StackInstall) DeepCopy() *StackInstall
- func (in *StackInstall) DeepCopyInto(out *StackInstall)
- func (in *StackInstall) DeepCopyObject() runtime.Object
- func (si *StackInstall) GroupVersionKind() schema.GroupVersionKind
- func (si *StackInstall) Image() string
- func (si *StackInstall) InstallJob() *corev1.ObjectReference
- func (si *StackInstall) PermissionScope() string
- func (si *StackInstall) SetConditions(c ...runtimev1alpha1.Condition)
- func (si *StackInstall) SetInstallJob(job *corev1.ObjectReference)
- func (si *StackInstall) SetStackRecord(job *corev1.ObjectReference)
- func (si *StackInstall) StackRecord() *corev1.ObjectReference
- type StackInstallList
- type StackInstallSpec
- type StackInstallStatus
- type StackInstaller
- type StackList
- type StackResourceEngineConfiguration
- type StackSpec
- type StackStatus
Constants ¶
const ( Group = "stacks.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 ( StackInstallKind = reflect.TypeOf(StackInstall{}).Name() StackInstallGroupKind = schema.GroupKind{Group: Group, Kind: StackInstallKind}.String() StackInstallKindAPIVersion = StackInstallKind + "." + SchemeGroupVersion.String() StackInstallGroupVersionKind = SchemeGroupVersion.WithKind(StackInstallKind) )
StackInstall type metadata.
var ( ClusterStackInstallKind = reflect.TypeOf(ClusterStackInstall{}).Name() ClusterStackInstallGroupKind = schema.GroupKind{Group: Group, Kind: ClusterStackInstallKind}.String() ClusterStackInstallKindAPIVersion = ClusterStackInstallKind + "." + SchemeGroupVersion.String() ClusterStackInstallGroupVersionKind = SchemeGroupVersion.WithKind(ClusterStackInstallKind) )
ClusterStackInstall type metadata.
var ( StackKind = reflect.TypeOf(Stack{}).Name() StackGroupKind = schema.GroupKind{Group: Group, Kind: StackKind}.String() StackKindAPIVersion = StackKind + "." + SchemeGroupVersion.String() StackGroupVersionKind = SchemeGroupVersion.WithKind(StackKind) )
Stack type metadata.
var ( StackDefinitionKind = reflect.TypeOf(StackDefinition{}).Name() StackDefinitionGroupKind = schema.GroupKind{Group: Group, Kind: StackDefinitionKind}.String() StackDefinitionKindAPIVersion = StackDefinitionKind + "." + SchemeGroupVersion.String() StackDefinitionGroupVersionKind = SchemeGroupVersion.WithKind(StackDefinitionKind) )
StackDefinition type metadata
Functions ¶
This section is empty.
Types ¶
type AppMetadataSpec ¶
type AppMetadataSpec struct { Title string `json:"title,omitempty"` OverviewShort string `json:"overviewShort,omitempty"` Overview string `json:"overview,omitempty"` Readme string `json:"readme,omitempty"` Version string `json:"version,omitempty"` Icons []IconSpec `json:"icons,omitempty"` Maintainers []ContributorSpec `json:"maintainers,omitempty"` Owners []ContributorSpec `json:"owners,omitempty"` Company string `json:"company,omitempty"` Category string `json:"category,omitempty"` Keywords []string `json:"keywords,omitempty"` Website string `json:"website,omitempty"` Source string `json:"source,omitempty"` License string `json:"license,omitempty"` // DependsOn is the list of CRDs that this stack depends on. This data drives the // dependency resolution process. DependsOn []StackInstallSpec `json:"dependsOn,omitempty"` // +kubebuilder:validation:Enum=Cluster;Namespaced PermissionScope string `json:"permissionScope,omitempty"` }
AppMetadataSpec defines metadata about the stack application
func (*AppMetadataSpec) DeepCopy ¶
func (in *AppMetadataSpec) DeepCopy() *AppMetadataSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AppMetadataSpec.
func (*AppMetadataSpec) DeepCopyInto ¶
func (in *AppMetadataSpec) DeepCopyInto(out *AppMetadataSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Behavior ¶ added in v0.8.0
type Behavior struct { CRD BehaviorCRD `json:"crd,omitempty"` Engine StackResourceEngineConfiguration `json:"engine,omitempty"` // Theoretically, source and engine could be specified at a per-hook level // as well. Source StackDefinitionSource `json:"source,omitempty"` }
Behavior specifies the behavior for the stack, if the stack has behaviors instead of a controller
func (*Behavior) DeepCopy ¶ added in v0.8.0
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Behavior.
func (*Behavior) DeepCopyInto ¶ added in v0.8.0
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type BehaviorCRD ¶ added in v0.8.0
BehaviorCRD represents the CRD which the stack's behavior controller will watch. When CRs of this CRD kind appear and are modified in the cluster, the behavior will execute.
func (*BehaviorCRD) DeepCopy ¶ added in v0.8.0
func (in *BehaviorCRD) DeepCopy() *BehaviorCRD
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BehaviorCRD.
func (*BehaviorCRD) DeepCopyInto ¶ added in v0.8.0
func (in *BehaviorCRD) DeepCopyInto(out *BehaviorCRD)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type CRDList ¶
CRDList is the full list of CRDs that this stack owns and depends on
func NewCRDList ¶
func NewCRDList() CRDList
NewCRDList creates a new CRDList with its members initialized.
func (CRDList) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CRDList.
func (CRDList) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ClusterStackInstall ¶
type ClusterStackInstall struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec StackInstallSpec `json:"spec,omitempty"` Status StackInstallStatus `json:"status,omitempty"` }
ClusterStackInstall is the CRD type for a request to add a stack to Crossplane. +kubebuilder:subresource:status +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditionedStatus.conditions[?(@.type=='Ready')].status" +kubebuilder:printcolumn:name="SOURCE",type="string",JSONPath=".spec.source" +kubebuilder:printcolumn:name="PACKAGE",type="string",JSONPath=".spec.package" +kubebuilder:printcolumn:name="CRD",type="string",JSONPath=".spec.crd" +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp"
func (*ClusterStackInstall) DeepCopy ¶
func (in *ClusterStackInstall) DeepCopy() *ClusterStackInstall
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterStackInstall.
func (*ClusterStackInstall) DeepCopyInto ¶
func (in *ClusterStackInstall) DeepCopyInto(out *ClusterStackInstall)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ClusterStackInstall) DeepCopyObject ¶
func (in *ClusterStackInstall) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*ClusterStackInstall) GroupVersionKind ¶
func (si *ClusterStackInstall) GroupVersionKind() schema.GroupVersionKind
GroupVersionKind gets the GroupVersionKind of the ClusterStackInstall
func (*ClusterStackInstall) Image ¶
func (si *ClusterStackInstall) Image() string
Image gets the Spec.Image of the ClusterStackInstall
func (*ClusterStackInstall) InstallJob ¶
func (si *ClusterStackInstall) InstallJob() *corev1.ObjectReference
InstallJob gets the ClusterStackInstall's Status InstallJob
func (*ClusterStackInstall) PermissionScope ¶
func (si *ClusterStackInstall) PermissionScope() string
PermissionScope gets the required app.yaml permissionScope value ("Cluster") for ClusterStackInstall
func (*ClusterStackInstall) SetConditions ¶
func (si *ClusterStackInstall) SetConditions(c ...runtimev1alpha1.Condition)
SetConditions sets the ClusterStackInstall's Status conditions
func (*ClusterStackInstall) SetInstallJob ¶
func (si *ClusterStackInstall) SetInstallJob(job *corev1.ObjectReference)
SetInstallJob sets the ClusterStackInstall's Status InstallJob
func (*ClusterStackInstall) SetStackRecord ¶
func (si *ClusterStackInstall) SetStackRecord(job *corev1.ObjectReference)
SetStackRecord sets the ClusterStackInstall's Status StackRecord
func (*ClusterStackInstall) StackRecord ¶
func (si *ClusterStackInstall) StackRecord() *corev1.ObjectReference
StackRecord gets the ClusterStackInstall's Status StackRecord
type ClusterStackInstallList ¶
type ClusterStackInstallList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []ClusterStackInstall `json:"items"` }
ClusterStackInstallList contains a list of StackInstall
func (*ClusterStackInstallList) DeepCopy ¶
func (in *ClusterStackInstallList) DeepCopy() *ClusterStackInstallList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterStackInstallList.
func (*ClusterStackInstallList) DeepCopyInto ¶
func (in *ClusterStackInstallList) DeepCopyInto(out *ClusterStackInstallList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ClusterStackInstallList) DeepCopyObject ¶
func (in *ClusterStackInstallList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ContributorSpec ¶
type ContributorSpec struct { Name string `json:"name,omitempty"` Email string `json:"email,omitempty"` }
ContributorSpec defines a contributor for a stack (e.g., maintainer, owner, etc.)
func (*ContributorSpec) DeepCopy ¶
func (in *ContributorSpec) DeepCopy() *ContributorSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContributorSpec.
func (*ContributorSpec) DeepCopyInto ¶
func (in *ContributorSpec) DeepCopyInto(out *ContributorSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ControllerDeployment ¶
type ControllerDeployment struct { Name string `json:"name"` Spec apps.DeploymentSpec `json:"spec"` }
ControllerDeployment defines a controller for a stack that is managed by a Deployment.
func (*ControllerDeployment) DeepCopy ¶
func (in *ControllerDeployment) DeepCopy() *ControllerDeployment
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ControllerDeployment.
func (*ControllerDeployment) DeepCopyInto ¶
func (in *ControllerDeployment) DeepCopyInto(out *ControllerDeployment)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ControllerSpec ¶
type ControllerSpec struct {
Deployment *ControllerDeployment `json:"deployment,omitempty"`
}
ControllerSpec defines the controller that implements the logic for a stack, which can come in different flavors. A golang code (controller-runtime) controller with a managing Deployment is all that is supported currently, but more types will come in the future (e.g., templates, functions/hooks, templates, a new DSL, etc.
func (*ControllerSpec) DeepCopy ¶
func (in *ControllerSpec) DeepCopy() *ControllerSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ControllerSpec.
func (*ControllerSpec) DeepCopyInto ¶
func (in *ControllerSpec) DeepCopyInto(out *ControllerSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type FieldBinding ¶ added in v0.8.0
FieldBinding describes a field binding of a transformation from the triggering CR to an object for configuring the resource engine. It connects a field in the source object to a field in the destination object.
func (*FieldBinding) DeepCopy ¶ added in v0.8.0
func (in *FieldBinding) DeepCopy() *FieldBinding
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FieldBinding.
func (*FieldBinding) DeepCopyInto ¶ added in v0.8.0
func (in *FieldBinding) DeepCopyInto(out *FieldBinding)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IconSpec ¶
type IconSpec struct { Base64IconData string `json:"base64Data"` MediaType string `json:"mediatype"` }
IconSpec defines the icon for a stack
func (*IconSpec) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IconSpec.
func (*IconSpec) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type KustomizeEngineConfiguration ¶ added in v0.8.0
type KustomizeEngineConfiguration struct { Overlays []KustomizeEngineOverlay `json:"overlays,omitempty"` Kustomization *unstructured.Unstructured `json:"kustomization,omitempty"` }
KustomizeEngineConfiguration provides kustomize-specific engine configuration.
func (*KustomizeEngineConfiguration) DeepCopy ¶ added in v0.8.0
func (in *KustomizeEngineConfiguration) DeepCopy() *KustomizeEngineConfiguration
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KustomizeEngineConfiguration.
func (*KustomizeEngineConfiguration) DeepCopyInto ¶ added in v0.8.0
func (in *KustomizeEngineConfiguration) DeepCopyInto(out *KustomizeEngineConfiguration)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type KustomizeEngineOverlay ¶ added in v0.8.0
type KustomizeEngineOverlay struct { APIVersion string `json:"apiVersion"` Kind string `json:"kind"` Name string `json:"name"` Bindings []FieldBinding `json:"bindings"` }
KustomizeEngineOverlay configures the stack behavior controller to transform the input CR into some output objects for the underlying resource engine. This is expected to be interpreted by the engine-specific logic in the controller.
func (*KustomizeEngineOverlay) DeepCopy ¶ added in v0.8.0
func (in *KustomizeEngineOverlay) DeepCopy() *KustomizeEngineOverlay
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KustomizeEngineOverlay.
func (*KustomizeEngineOverlay) DeepCopyInto ¶ added in v0.8.0
func (in *KustomizeEngineOverlay) DeepCopyInto(out *KustomizeEngineOverlay)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PermissionsSpec ¶
type PermissionsSpec struct {
Rules []rbac.PolicyRule `json:"rules,omitempty"`
}
PermissionsSpec defines the permissions that a stack will require to operate.
func (*PermissionsSpec) DeepCopy ¶
func (in *PermissionsSpec) DeepCopy() *PermissionsSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PermissionsSpec.
func (*PermissionsSpec) DeepCopyInto ¶
func (in *PermissionsSpec) DeepCopyInto(out *PermissionsSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Stack ¶
type Stack struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec StackSpec `json:"spec,omitempty"` Status StackStatus `json:"status,omitempty"` }
A Stack that has been added to Crossplane. +kubebuilder:subresource:status +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditionedStatus.conditions[?(@.type=='Ready')].status" +kubebuilder:printcolumn:name="VERSION",type="string",JSONPath=".spec.version" +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp"
func (*Stack) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Stack.
func (*Stack) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Stack) DeepCopyIntoStackDefinition ¶ added in v0.8.0
func (s *Stack) DeepCopyIntoStackDefinition(sd *StackDefinition)
DeepCopyIntoStackDefinition copies a Stack to a StackDefinition TODO(displague) should this reside in types.go with the Stack type
func (*Stack) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type StackDefinition ¶ added in v0.8.0
type StackDefinition struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec StackDefinitionSpec `json:"spec,omitempty"` Status StackDefinitionStatus `json:"status,omitempty"` }
StackDefinition is the Schema for the StackDefinitions API
func (*StackDefinition) DeepCopy ¶ added in v0.8.0
func (in *StackDefinition) DeepCopy() *StackDefinition
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StackDefinition.
func (*StackDefinition) DeepCopyInto ¶ added in v0.8.0
func (in *StackDefinition) DeepCopyInto(out *StackDefinition)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*StackDefinition) DeepCopyIntoStack ¶ added in v0.8.0
func (sd *StackDefinition) DeepCopyIntoStack(s *Stack)
DeepCopyIntoStack copies a StackDefinition to a Stack
func (*StackDefinition) DeepCopyObject ¶ added in v0.8.0
func (in *StackDefinition) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type StackDefinitionList ¶ added in v0.8.0
type StackDefinitionList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []StackDefinition `json:"items"` }
StackDefinitionList contains a list of StackDefinition
func (*StackDefinitionList) DeepCopy ¶ added in v0.8.0
func (in *StackDefinitionList) DeepCopy() *StackDefinitionList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StackDefinitionList.
func (*StackDefinitionList) DeepCopyInto ¶ added in v0.8.0
func (in *StackDefinitionList) DeepCopyInto(out *StackDefinitionList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*StackDefinitionList) DeepCopyObject ¶ added in v0.8.0
func (in *StackDefinitionList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type StackDefinitionSource ¶ added in v0.8.0
type StackDefinitionSource struct { // a container image id Image string `json:"image,omitempty"` // The path to the files to process in the source Path string `json:"path"` }
StackDefinitionSource is the stack image which this stack configuration is from. In the future, other source types may be supported, such as a URL.
func (*StackDefinitionSource) DeepCopy ¶ added in v0.8.0
func (in *StackDefinitionSource) DeepCopy() *StackDefinitionSource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StackDefinitionSource.
func (*StackDefinitionSource) DeepCopyInto ¶ added in v0.8.0
func (in *StackDefinitionSource) DeepCopyInto(out *StackDefinitionSource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type StackDefinitionSpec ¶ added in v0.8.0
type StackDefinitionSpec struct { AppMetadataSpec `json:",inline"` CRDs CRDList `json:"customresourcedefinitions,omitempty"` Controller ControllerSpec `json:"controller,omitempty"` Permissions PermissionsSpec `json:"permissions,omitempty"` Behavior Behavior `json:"behavior,omitempty"` }
StackDefinitionSpec defines the desired state of StackDefinition
func (*StackDefinitionSpec) DeepCopy ¶ added in v0.8.0
func (in *StackDefinitionSpec) DeepCopy() *StackDefinitionSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StackDefinitionSpec.
func (*StackDefinitionSpec) DeepCopyInto ¶ added in v0.8.0
func (in *StackDefinitionSpec) DeepCopyInto(out *StackDefinitionSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type StackDefinitionStatus ¶ added in v0.8.0
type StackDefinitionStatus struct { }
StackDefinitionStatus defines the observed state of StackDefinition
func (*StackDefinitionStatus) DeepCopy ¶ added in v0.8.0
func (in *StackDefinitionStatus) DeepCopy() *StackDefinitionStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StackDefinitionStatus.
func (*StackDefinitionStatus) DeepCopyInto ¶ added in v0.8.0
func (in *StackDefinitionStatus) DeepCopyInto(out *StackDefinitionStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type StackInstall ¶
type StackInstall struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec StackInstallSpec `json:"spec,omitempty"` Status StackInstallStatus `json:"status,omitempty"` }
A StackInstall requests a stack be installed to Crossplane. +kubebuilder:subresource:status +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditionedStatus.conditions[?(@.type=='Ready')].status" +kubebuilder:printcolumn:name="SOURCE",type="string",JSONPath=".spec.source" +kubebuilder:printcolumn:name="PACKAGE",type="string",JSONPath=".spec.package" +kubebuilder:printcolumn:name="CRD",type="string",JSONPath=".spec.crd" +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp"
func (*StackInstall) DeepCopy ¶
func (in *StackInstall) DeepCopy() *StackInstall
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StackInstall.
func (*StackInstall) DeepCopyInto ¶
func (in *StackInstall) DeepCopyInto(out *StackInstall)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*StackInstall) DeepCopyObject ¶
func (in *StackInstall) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*StackInstall) GroupVersionKind ¶
func (si *StackInstall) GroupVersionKind() schema.GroupVersionKind
GroupVersionKind gets the GroupVersionKind of the StackInstall
func (*StackInstall) Image ¶
func (si *StackInstall) Image() string
Image gets the Spec.Image of the StackInstall
func (*StackInstall) InstallJob ¶
func (si *StackInstall) InstallJob() *corev1.ObjectReference
InstallJob gets the StackInstall's Status InstallJob
func (*StackInstall) PermissionScope ¶
func (si *StackInstall) PermissionScope() string
PermissionScope gets the required app.yaml permissionScope value ("Namespaced") for StackInstall
func (*StackInstall) SetConditions ¶
func (si *StackInstall) SetConditions(c ...runtimev1alpha1.Condition)
SetConditions sets the StackInstall's Status conditions
func (*StackInstall) SetInstallJob ¶
func (si *StackInstall) SetInstallJob(job *corev1.ObjectReference)
SetInstallJob sets the StackInstall's Status InstallJob
func (*StackInstall) SetStackRecord ¶
func (si *StackInstall) SetStackRecord(job *corev1.ObjectReference)
SetStackRecord sets the StackInstall's Status StackRecord
func (*StackInstall) StackRecord ¶
func (si *StackInstall) StackRecord() *corev1.ObjectReference
StackRecord gets the StackInstall's Status StackRecord
type StackInstallList ¶
type StackInstallList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []StackInstall `json:"items"` }
StackInstallList contains a list of StackInstall.
func (*StackInstallList) DeepCopy ¶
func (in *StackInstallList) DeepCopy() *StackInstallList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StackInstallList.
func (*StackInstallList) DeepCopyInto ¶
func (in *StackInstallList) DeepCopyInto(out *StackInstallList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*StackInstallList) DeepCopyObject ¶
func (in *StackInstallList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type StackInstallSpec ¶
type StackInstallSpec struct { // Source is the domain name for the stack registry hosting the stack being requested, // e.g., registry.crossplane.io Source string `json:"source,omitempty"` // Package is the name of the stack package that is being requested, e.g., myapp. // Either Package or CustomResourceDefinition can be specified. Package string `json:"package,omitempty"` // CustomResourceDefinition is the full name of a CRD that is owned by the stack being // requested. This can be a convenient way of installing a stack when the desired // CRD is known, but the package name that contains it is not known. // Either Package or CustomResourceDefinition can be specified. CustomResourceDefinition string `json:"crd,omitempty"` }
StackInstallSpec specifies details about a request to install a stack to Crossplane.
func (*StackInstallSpec) DeepCopy ¶
func (in *StackInstallSpec) DeepCopy() *StackInstallSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StackInstallSpec.
func (*StackInstallSpec) DeepCopyInto ¶
func (in *StackInstallSpec) DeepCopyInto(out *StackInstallSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (StackInstallSpec) Image ¶
func (spec StackInstallSpec) Image() string
Image returns the fully qualified image name for the StackInstallSpec. based on the fully qualified image name format of hostname[:port]/username/reponame[:tag]
type StackInstallStatus ¶
type StackInstallStatus struct { runtimev1alpha1.ConditionedStatus `json:"conditionedStatus,omitempty"` InstallJob *corev1.ObjectReference `json:"installJob,omitempty"` StackRecord *corev1.ObjectReference `json:"stackRecord,omitempty"` }
StackInstallStatus represents the observed state of a StackInstall.
func (*StackInstallStatus) DeepCopy ¶
func (in *StackInstallStatus) DeepCopy() *StackInstallStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StackInstallStatus.
func (*StackInstallStatus) DeepCopyInto ¶
func (in *StackInstallStatus) DeepCopyInto(out *StackInstallStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type StackInstaller ¶
type StackInstaller interface { metav1.Object runtime.Object Image() string PermissionScope() string SetConditions(c ...runtimev1alpha1.Condition) InstallJob() *corev1.ObjectReference SetInstallJob(*corev1.ObjectReference) StackRecord() *corev1.ObjectReference SetStackRecord(*corev1.ObjectReference) GroupVersionKind() schema.GroupVersionKind }
StackInstaller provides a common interface for StackInstall and ClusterStackInstall to share controller and reconciler logic
type StackList ¶
type StackList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Stack `json:"items"` }
StackList contains a list of Stack.
func (*StackList) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StackList.
func (*StackList) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*StackList) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type StackResourceEngineConfiguration ¶ added in v0.8.0
type StackResourceEngineConfiguration struct { // Type is the engine type, such as "helm2" or "kustomize" Type string `json:"type"` // Because different engine configurations could specify conflicting field names, // we want to namespace the engines with engine-specific keys Kustomize *KustomizeEngineConfiguration `json:"kustomize,omitempty"` }
StackResourceEngineConfiguration represents a configuration for a resource engine, such as helm2 or kustomize.
func (*StackResourceEngineConfiguration) DeepCopy ¶ added in v0.8.0
func (in *StackResourceEngineConfiguration) DeepCopy() *StackResourceEngineConfiguration
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StackResourceEngineConfiguration.
func (*StackResourceEngineConfiguration) DeepCopyInto ¶ added in v0.8.0
func (in *StackResourceEngineConfiguration) DeepCopyInto(out *StackResourceEngineConfiguration)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type StackSpec ¶
type StackSpec struct { AppMetadataSpec `json:",inline"` CRDs CRDList `json:"customresourcedefinitions,omitempty"` Controller ControllerSpec `json:"controller,omitempty"` Permissions PermissionsSpec `json:"permissions,omitempty"` }
StackSpec specifies the desired state of a Stack.
func (*StackSpec) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StackSpec.
func (*StackSpec) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type StackStatus ¶
type StackStatus struct { runtimev1alpha1.ConditionedStatus `json:"conditionedStatus,omitempty"` ControllerRef *corev1.ObjectReference `json:"controllerRef,omitempty"` }
StackStatus represents the observed state of a Stack.
func (*StackStatus) DeepCopy ¶
func (in *StackStatus) DeepCopy() *StackStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StackStatus.
func (*StackStatus) DeepCopyInto ¶
func (in *StackStatus) DeepCopyInto(out *StackStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.