v1alpha1

package
v0.1.0-alpha.5 Latest Latest
Warning

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

Go to latest
Published: Mar 14, 2020 License: MIT Imports: 4 Imported by: 0

Documentation

Overview

Package v1alpha1 contains API Schema definitions for the k8s v1alpha1 API group +k8s:deepcopy-gen=package,register +groupName=k8s.linki.space

Package v1alpha1 contains API Schema definitions for the k8s v1alpha1 API group +k8s:deepcopy-gen=package,register +groupName=k8s.linki.space

Index

Constants

This section is empty.

Variables

View Source
var (
	// SchemeGroupVersion is group version used to register these objects
	SchemeGroupVersion = schema.GroupVersion{Group: "k8s.linki.space", Version: "v1alpha1"}

	// SchemeBuilder is used to add go types to the GroupVersionKind scheme
	SchemeBuilder = &scheme.Builder{GroupVersion: SchemeGroupVersion}
)

Functions

This section is empty.

Types

type EncryptedSecret

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

	Spec   EncryptedSecretSpec   `json:"spec,omitempty"`
	Status EncryptedSecretStatus `json:"status,omitempty"`
}

EncryptedSecret is the Schema for the encryptedsecrets API +kubebuilder:subresource:status +kubebuilder:resource:path=encryptedsecrets,scope=Namespaced

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 EncryptedSecretSpec

type EncryptedSecretSpec struct {

	// +kubebuilder:validation:Enum=AWS;GCP;Identity
	Provider string `json:"provider"`
	// +kubebuilder:validation:Optional
	KeyID string `json:"keyID"`
	// +kubebuilder:validation:Required
	Data map[string][]byte `json:"data"`
}

EncryptedSecretSpec defines the desired state of EncryptedSecret

func (*EncryptedSecretSpec) DeepCopy

func (in *EncryptedSecretSpec) DeepCopy() *EncryptedSecretSpec

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

func (*EncryptedSecretSpec) DeepCopyInto

func (in *EncryptedSecretSpec) DeepCopyInto(out *EncryptedSecretSpec)

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

type EncryptedSecretStatus

type EncryptedSecretStatus struct {
}

EncryptedSecretStatus defines the observed state of EncryptedSecret

func (*EncryptedSecretStatus) DeepCopy

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.

type ManagedSecret

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

	Spec   ManagedSecretSpec   `json:"spec,omitempty"`
	Status ManagedSecretStatus `json:"status,omitempty"`
}

ManagedSecret is the Schema for the managedsecrets API +kubebuilder:subresource:status +kubebuilder:resource:path=managedsecrets,scope=Namespaced

func (*ManagedSecret) DeepCopy

func (in *ManagedSecret) DeepCopy() *ManagedSecret

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

func (*ManagedSecret) DeepCopyInto

func (in *ManagedSecret) DeepCopyInto(out *ManagedSecret)

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

func (*ManagedSecret) DeepCopyObject

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

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

type ManagedSecretList

type ManagedSecretList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []ManagedSecret `json:"items"`
}

ManagedSecretList contains a list of ManagedSecret

func (*ManagedSecretList) DeepCopy

func (in *ManagedSecretList) DeepCopy() *ManagedSecretList

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

func (*ManagedSecretList) DeepCopyInto

func (in *ManagedSecretList) DeepCopyInto(out *ManagedSecretList)

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

func (*ManagedSecretList) DeepCopyObject

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

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

type ManagedSecretSpec

type ManagedSecretSpec struct {

	// +kubebuilder:validation:Enum=AWS;GCP;Identity
	Provider string `json:"provider"`
	// +kubebuilder:validation:Required
	Data map[string]string `json:"data"`
}

ManagedSecretSpec defines the desired state of ManagedSecret

func (*ManagedSecretSpec) DeepCopy

func (in *ManagedSecretSpec) DeepCopy() *ManagedSecretSpec

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

func (*ManagedSecretSpec) DeepCopyInto

func (in *ManagedSecretSpec) DeepCopyInto(out *ManagedSecretSpec)

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

type ManagedSecretStatus

type ManagedSecretStatus struct {
}

ManagedSecretStatus defines the observed state of ManagedSecret

func (*ManagedSecretStatus) DeepCopy

func (in *ManagedSecretStatus) DeepCopy() *ManagedSecretStatus

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

func (*ManagedSecretStatus) DeepCopyInto

func (in *ManagedSecretStatus) DeepCopyInto(out *ManagedSecretStatus)

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

Jump to

Keyboard shortcuts

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