Documentation ¶
Overview ¶
Package v1beta2 contains API Schema definitions for the secrets v1beta2 API group +kubebuilder:object:generate=true +groupName=secrets.controllers.ridecell.io
Index ¶
Constants ¶
const ( EncryptedSecretStatusReady = "Ready" EncryptedSecretStatusError = "Error" )
const EncryptedSecretEmptyKey = "___empty_string___"
KMS doesn't allow encrypting an empty string so use a magic constant to represent it.
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "secrets.controllers.ridecell.io", Version: "v1beta2"} // SchemeBuilder is used to add go types to the GroupVersionKind scheme SchemeBuilder = &scheme.Builder{GroupVersion: GroupVersion} // AddToScheme adds the types in this group-version to the given scheme. AddToScheme = SchemeBuilder.AddToScheme )
Functions ¶
This section is empty.
Types ¶
type EncryptedSecret ¶
type EncryptedSecret struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Status EncryptedSecretStatus `json:"status,omitempty"` Data map[string]string `json:"data,omitempty"` }
+kubebuilder:object:root=true +kubebuilder:subresource:status +kubebuilder:printcolumn:name="Age",type="date",JSONPath=".metadata.creationTimestamp" +kubebuilder:printcolumn:name="Status",type=string,JSONPath=`.status.status` EncryptedSecret is the Schema for the encryptedsecrets API
func (*EncryptedSecret) DeepCopy ¶
func (in *EncryptedSecret) DeepCopy() *EncryptedSecret
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EncryptedSecret.
func (*EncryptedSecret) DeepCopyInto ¶
func (in *EncryptedSecret) DeepCopyInto(out *EncryptedSecret)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*EncryptedSecret) DeepCopyObject ¶
func (in *EncryptedSecret) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type EncryptedSecretList ¶
type EncryptedSecretList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []EncryptedSecret `json:"items"` }
EncryptedSecretList contains a list of EncryptedSecret
func (*EncryptedSecretList) DeepCopy ¶
func (in *EncryptedSecretList) DeepCopy() *EncryptedSecretList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EncryptedSecretList.
func (*EncryptedSecretList) DeepCopyInto ¶
func (in *EncryptedSecretList) DeepCopyInto(out *EncryptedSecretList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*EncryptedSecretList) DeepCopyObject ¶
func (in *EncryptedSecretList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type EncryptedSecretStatus ¶
type EncryptedSecretStatus struct { // INSERT ADDITIONAL STATUS FIELD - define observed state of cluster // Important: Run "make" to regenerate code after modifying this file Status string `json:"status"` Message string `json:"message"` }
EncryptedSecretStatus defines the observed state of EncryptedSecret
func (*EncryptedSecretStatus) DeepCopy ¶
func (in *EncryptedSecretStatus) DeepCopy() *EncryptedSecretStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EncryptedSecretStatus.
func (*EncryptedSecretStatus) DeepCopyInto ¶
func (in *EncryptedSecretStatus) DeepCopyInto(out *EncryptedSecretStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.