v1alpha1

package
v0.0.0-...-7ec52c9 Latest Latest
Warning

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

Go to latest
Published: Oct 17, 2019 License: MIT Imports: 6 Imported by: 4

Documentation

Overview

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

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

Index

Constants

This section is empty.

Variables

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

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

Functions

Types

type JSFunction

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

	Spec   JSFunctionSpec   `json:"spec,omitempty"`
	Status JSFunctionStatus `json:"status,omitempty"`
}

JSFunction is the Schema for the jsfunctions API +k8s:openapi-gen=true +kubebuilder:subresource:status

func (*JSFunction) DeepCopy

func (in *JSFunction) DeepCopy() *JSFunction

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

func (*JSFunction) DeepCopyInto

func (in *JSFunction) DeepCopyInto(out *JSFunction)

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

func (*JSFunction) DeepCopyObject

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

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

type JSFunctionBuild

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

	Spec   JSFunctionBuildSpec   `json:"spec,omitempty"`
	Status JSFunctionBuildStatus `json:"status,omitempty"`
}

JSFunctionBuild is the Schema for the jsfunctionbuilds API +k8s:openapi-gen=true +kubebuilder:subresource:status

func (*JSFunctionBuild) DeepCopy

func (in *JSFunctionBuild) DeepCopy() *JSFunctionBuild

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

func (*JSFunctionBuild) DeepCopyInto

func (in *JSFunctionBuild) DeepCopyInto(out *JSFunctionBuild)

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

func (*JSFunctionBuild) DeepCopyObject

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

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

type JSFunctionBuildList

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

JSFunctionBuildList contains a list of JSFunctionBuild

func (*JSFunctionBuildList) DeepCopy

func (in *JSFunctionBuildList) DeepCopy() *JSFunctionBuildList

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

func (*JSFunctionBuildList) DeepCopyInto

func (in *JSFunctionBuildList) DeepCopyInto(out *JSFunctionBuildList)

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

func (*JSFunctionBuildList) DeepCopyObject

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

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

type JSFunctionBuildSpec

type JSFunctionBuildSpec struct {
	// INSERT ADDITIONAL SPEC FIELDS - desired state of cluster
	// Important: Run "operator-sdk generate k8s" to regenerate code after modifying this file
	// Add custom validation using kubebuilder tags: https://book.kubebuilder.io/beyond_basics/generating_crd.html
	Revision int32  `json:"revision"`
	Image    string `json:"image"`
}

JSFunctionBuildSpec defines the desired state of JSFunctionBuild +k8s:openapi-gen=true

func (*JSFunctionBuildSpec) DeepCopy

func (in *JSFunctionBuildSpec) DeepCopy() *JSFunctionBuildSpec

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

func (*JSFunctionBuildSpec) DeepCopyInto

func (in *JSFunctionBuildSpec) DeepCopyInto(out *JSFunctionBuildSpec)

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

type JSFunctionBuildStatus

type JSFunctionBuildStatus struct {
}

JSFunctionBuildStatus defines the observed state of JSFunctionBuild +k8s:openapi-gen=true

func (*JSFunctionBuildStatus) DeepCopy

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

func (*JSFunctionBuildStatus) DeepCopyInto

func (in *JSFunctionBuildStatus) DeepCopyInto(out *JSFunctionBuildStatus)

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

type JSFunctionList

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

JSFunctionList contains a list of JSFunction

func (*JSFunctionList) DeepCopy

func (in *JSFunctionList) DeepCopy() *JSFunctionList

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

func (*JSFunctionList) DeepCopyInto

func (in *JSFunctionList) DeepCopyInto(out *JSFunctionList)

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

func (*JSFunctionList) DeepCopyObject

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

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

type JSFunctionSpec

type JSFunctionSpec struct {
	Func    string `json:"func"`
	Package string `json:"package,omitempty"`
	Events  bool   `json:"events,omitempty"`
}

JSFunctionSpec defines the desired state of JSFunction +k8s:openapi-gen=true

func (*JSFunctionSpec) DeepCopy

func (in *JSFunctionSpec) DeepCopy() *JSFunctionSpec

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

func (*JSFunctionSpec) DeepCopyInto

func (in *JSFunctionSpec) DeepCopyInto(out *JSFunctionSpec)

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

type JSFunctionStatus

type JSFunctionStatus struct {
	Nodes []string `json:"nodes"`
}

JSFunctionStatus defines the observed state of JSFunction +k8s:openapi-gen=true

func (*JSFunctionStatus) DeepCopy

func (in *JSFunctionStatus) DeepCopy() *JSFunctionStatus

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

func (*JSFunctionStatus) DeepCopyInto

func (in *JSFunctionStatus) DeepCopyInto(out *JSFunctionStatus)

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