v1alpha1

package
v0.1.1 Latest Latest
Warning

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

Go to latest
Published: Oct 10, 2021 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Overview

Package v1alpha1 contains API Schema definitions for the installer v1alpha1 API group +kubebuilder:object:generate=true +groupName=installer.h3poteto.dev

Index

Constants

This section is empty.

Variables

View Source
var (
	// GroupVersion is group version used to register these objects
	GroupVersion = schema.GroupVersion{Group: "installer.h3poteto.dev", Version: "v1alpha1"}

	// 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 DaemonsetRef

type DaemonsetRef Ref

func (*DaemonsetRef) DeepCopy

func (in *DaemonsetRef) DeepCopy() *DaemonsetRef

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

func (*DaemonsetRef) DeepCopyInto

func (in *DaemonsetRef) DeepCopyInto(out *DaemonsetRef)

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

type EKSPodIdentityWebhook

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

	Spec   EKSPodIdentityWebhookSpec   `json:"spec,omitempty"`
	Status EKSPodIdentityWebhookStatus `json:"status,omitempty"`
}

EKSPodIdentityWebhook is the Schema for the ekspodidentitywebhooks API

func (*EKSPodIdentityWebhook) DeepCopy

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

func (*EKSPodIdentityWebhook) DeepCopyInto

func (in *EKSPodIdentityWebhook) DeepCopyInto(out *EKSPodIdentityWebhook)

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

func (*EKSPodIdentityWebhook) DeepCopyObject

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

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

type EKSPodIdentityWebhookList

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

EKSPodIdentityWebhookList contains a list of EKSPodIdentityWebhook

func (*EKSPodIdentityWebhookList) DeepCopy

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

func (*EKSPodIdentityWebhookList) DeepCopyInto

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

func (*EKSPodIdentityWebhookList) DeepCopyObject

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

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

type EKSPodIdentityWebhookSpec

type EKSPodIdentityWebhookSpec struct {

	// +kubebuilder:validation:Required
	// +kubebuilder:validation:Type:=string
	TokenAudience string `json:"tokenAudience"`
	// +kubebuilder:validation:Required
	// +kubebuilder:validation:Type:=string
	// +kubebuilder:default=default
	Namespace string `json:"namespace"`
}

EKSPodIdentityWebhookSpec defines the desired state of EKSPodIdentityWebhook

func (*EKSPodIdentityWebhookSpec) DeepCopy

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

func (*EKSPodIdentityWebhookSpec) DeepCopyInto

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

type EKSPodIdentityWebhookStatus

type EKSPodIdentityWebhookStatus struct {
	// +nullable
	PodIdentityWebhookSecret *SecretRef `json:"podIdentityWebhookSecret,omitempty"`
	// +nullable
	PodIdentityWebhookService *ServiceRef `json:"podIdentityWebhookService,omitempty"`
	// +nullable
	PodIdentityWebhookDaemonset *DaemonsetRef `json:"podIdentityWebhookDaemonset,omitempty"`
	// +nullable
	PodIdentityWebhookConfiguration *MutatingWebhookConfigurationRef `json:"podIdentityWebhookConfiguration,omitempty"`
	// +nullable
	PodIdentityWebhookServiceAccount *ServiceAccountRef `json:"podIdentityWebhookServiceAccount,omitempty"`
	// +kubebuilder:default=init
	Phase string `json:"phase"`
}

EKSPodIdentityWebhookStatus defines the observed state of EKSPodIdentityWebhook

func (*EKSPodIdentityWebhookStatus) DeepCopy

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

func (*EKSPodIdentityWebhookStatus) DeepCopyInto

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

type MutatingWebhookConfigurationRef

type MutatingWebhookConfigurationRef struct {
	// +kubebuilder:validation:Required
	// +kubebuilder:validation:Type=string
	Name string `json:"name"`
}

func (*MutatingWebhookConfigurationRef) DeepCopy

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

func (*MutatingWebhookConfigurationRef) DeepCopyInto

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

type Ref

type Ref struct {
	// +kubebuilder:validation:Required
	// +kubebuilder:validation:Type=string
	Namespace string `json:"namespace"`
	// +kubebuilder:validation:Required
	// +kubebuilder:validation:Type=string
	Name string `json:"name"`
}

func (*Ref) DeepCopy

func (in *Ref) DeepCopy() *Ref

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

func (*Ref) DeepCopyInto

func (in *Ref) DeepCopyInto(out *Ref)

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

type SecretRef

type SecretRef Ref

func (*SecretRef) DeepCopy

func (in *SecretRef) DeepCopy() *SecretRef

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

func (*SecretRef) DeepCopyInto

func (in *SecretRef) DeepCopyInto(out *SecretRef)

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

type ServiceAccountRef

type ServiceAccountRef Ref

func (*ServiceAccountRef) DeepCopy

func (in *ServiceAccountRef) DeepCopy() *ServiceAccountRef

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

func (*ServiceAccountRef) DeepCopyInto

func (in *ServiceAccountRef) DeepCopyInto(out *ServiceAccountRef)

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

type ServiceRef

type ServiceRef Ref

func (*ServiceRef) DeepCopy

func (in *ServiceRef) DeepCopy() *ServiceRef

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

func (*ServiceRef) DeepCopyInto

func (in *ServiceRef) DeepCopyInto(out *ServiceRef)

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