v1

package
v3.11.0+incompatible Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 5, 2018 License: Apache-2.0 Imports: 4 Imported by: 10

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// SchemeBuilder is the scheme builder for ClusterVersionOperator's types.
	SchemeBuilder runtime.SchemeBuilder

	// AddToScheme is the function alias for AddtoScheme.
	AddToScheme = localSchemeBuilder.AddToScheme
)
View Source
var SchemeGroupVersion = schema.GroupVersion{Group: apis.OperatorStatusGroupName, Version: "v1"}

SchemeGroupVersion is group version used to register these objects.

Functions

func Resource

func Resource(resource string) schema.GroupResource

Resource takes an unqualified resource and returns a Group qualified GroupResource.

Types

type OperatorStatus

type OperatorStatus struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata"`

	// Condition describes the state of the operator's reconciliation
	// functionality.
	Condition OperatorStatusCondition `json:"condition"`

	// Version indicates which version of the operator updated the current
	// status object.
	Version string `json:"version"`

	// LasteUpdate is the time of the last update to the current status object.
	LastUpdate metav1.Time `json:"lastUpdate"`

	// Extension contains any additional status information specific to the
	// operator which owns this status object.
	Extension runtime.RawExtension `json:"extension"`
}

OperatorStatus is the Custom Resource object which holds the current state of an operator. This object is used by operators to convey their state to the rest of the cluster. +genclient +k8s:deepcopy-gen=true +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*OperatorStatus) DeepCopy

func (in *OperatorStatus) DeepCopy() *OperatorStatus

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OperatorStatus.

func (*OperatorStatus) DeepCopyInto

func (in *OperatorStatus) DeepCopyInto(out *OperatorStatus)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*OperatorStatus) DeepCopyObject

func (in *OperatorStatus) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

type OperatorStatusCondition

type OperatorStatusCondition struct {
	// Type specifies the state of the operator's reconciliation functionality.
	Type OperatorStatusConditionType `json:"type"`

	// Message provides any additional information about the current condition.
	// This is only to be consumed by humans.
	Message string `json:"message"`
}

OperatorStatusCondition represents the state of the operator's reconciliation functionality.

type OperatorStatusConditionType

type OperatorStatusConditionType string

OperatorStatusConditionType is the state of the operator's reconciliation functionality.

const (
	// OperatorStatusConditionTypeWaiting indicates that the operator isn't
	// running its reconciliation functionality. This may be because a
	// dependency or other prerequisite hasn't been satisfied.
	OperatorStatusConditionTypeWaiting OperatorStatusConditionType = "Waiting"

	// OperatorStatusConditionTypeWorking indicates that the operator is
	// actively reconciling its operands.
	OperatorStatusConditionTypeWorking OperatorStatusConditionType = "Working"

	// OperatorStatusConditionTypeDone indicates that the operator has finished
	// reconciling its operands and is waiting for changes.
	OperatorStatusConditionTypeDone OperatorStatusConditionType = "Done"

	// OperatorStatusConditionTypeDegraded indicates that the operator has
	// encountered an error that is preventing it from working properly.
	OperatorStatusConditionTypeDegraded OperatorStatusConditionType = "Degraded"
)

type OperatorStatusList

type OperatorStatusList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata"`

	Items []OperatorStatus `json:"items"`
}

OperatorStatusList is a list of OperatorStatus resources. +k8s:deepcopy-gen=true +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*OperatorStatusList) DeepCopy

func (in *OperatorStatusList) DeepCopy() *OperatorStatusList

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OperatorStatusList.

func (*OperatorStatusList) DeepCopyInto

func (in *OperatorStatusList) DeepCopyInto(out *OperatorStatusList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*OperatorStatusList) DeepCopyObject

func (in *OperatorStatusList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL