Documentation ¶
Overview ¶
+k8s:deepcopy-gen=package +groupName=rio.cattle.io
+k8s:deepcopy-gen=package +groupName=rio.cattle.io
+k8s:deepcopy-gen=package +groupName=rio.cattle.io
Index ¶
- Variables
- func Kind(kind string) schema.GroupKind
- func Resource(resource string) schema.GroupResource
- type Abort
- type App
- type AppList
- type AppSpec
- type AppStatus
- type AutoscaleConfig
- type Container
- type ContainerPort
- type ContainerSecurityContext
- type DataMount
- type Destination
- type EnvVar
- type ExternalService
- type ExternalServiceList
- type ExternalServiceSpec
- type ExternalServiceStatus
- type Fault
- type GithubStatus
- type ImageBuild
- type Match
- type NamedContainer
- type Permission
- type PodConfig
- type PodDNSConfig
- type PodDNSConfigOption
- type Protocol
- type Question
- type Redirect
- type Retry
- type Revision
- type Rewrite
- type RolloutConfig
- type RouteSpec
- type RouteTraffic
- type Router
- type RouterList
- type RouterSpec
- type RouterStatus
- type ScaleStatus
- type Service
- type ServiceList
- type ServiceObservedWeight
- type ServiceRevision
- type ServiceScale
- type ServiceSource
- type ServiceSpec
- type ServiceStatus
- type Stack
- type StackBuild
- type StackList
- type StackSpec
- type StackStatus
- type StringMatch
- type SubQuestion
- type SystemServiceSpec
- type TemplateMeta
- type Volume
- type WeightedDestination
Constants ¶
This section is empty.
Variables ¶
var ( PendingCondition = condition.Cond("Pending") DeployedCondition = condition.Cond("Deployed") )
var ( AppResourceName = "apps" ExternalServiceResourceName = "externalservices" RouterResourceName = "routers" ServiceResourceName = "services" StackResourceName = "stacks" )
var ( SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes) AddToScheme = SchemeBuilder.AddToScheme )
var SchemeGroupVersion = schema.GroupVersion{Group: rio.GroupName, Version: "v1"}
SchemeGroupVersion is group version used to register these objects
var (
ServiceConditionImageReady = condition.Cond("ImageReady")
)
Functions ¶
func Resource ¶
func Resource(resource string) schema.GroupResource
Resource takes an unqualified resource and returns a Group qualified GroupResource
Types ¶
type Abort ¶
type Abort struct { // REQUIRED. HTTP status code to use to abort the Http request. HTTPStatus int `json:"httpStatus,omitempty"` }
func (*Abort) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Abort.
func (*Abort) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type App ¶
type App struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec AppSpec `json:"spec,omitempty"` Status AppStatus `json:"status,omitempty"` }
func (*App) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new App.
func (*App) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*App) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type AppList ¶
type AppList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata"` Items []App `json:"items"` }
AppList is a list of App resources
func (*AppList) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AppList.
func (*AppList) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*AppList) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type AppSpec ¶
type AppSpec struct {
Revisions []Revision `json:"revisions,omitempty"`
}
func (*AppSpec) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AppSpec.
func (*AppSpec) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AppStatus ¶
type AppStatus struct { PublicDomains []string `json:"publicDomains,omitempty"` Endpoints []string `json:"endpoints,omitempty"` Conditions []genericcondition.GenericCondition `json:"conditions,omitempty"` RevisionWeight map[string]ServiceObservedWeight `json:"revisionWeight,omitempty"` }
func (*AppStatus) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AppStatus.
func (*AppStatus) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AutoscaleConfig ¶
type AutoscaleConfig struct { // ContainerConcurrency specifies the maximum allowed in-flight (concurrent) requests per container of the Revision. Defaults to 0 which means unlimited concurrency. // This field replaces ConcurrencyModel. A value of 1 is equivalent to Single and 0 is equivalent to Multi. Concurrency *int `json:"concurrency,omitempty"` // The minimal scale Service can be scaled MinScale *int `json:"minScale,omitempty"` // The maximum scale Service can be scaled MaxScale *int `json:"maxScale,omitempty"` }
func (*AutoscaleConfig) DeepCopy ¶
func (in *AutoscaleConfig) DeepCopy() *AutoscaleConfig
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AutoscaleConfig.
func (*AutoscaleConfig) DeepCopyInto ¶
func (in *AutoscaleConfig) DeepCopyInto(out *AutoscaleConfig)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Container ¶
type Container struct { // Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets. Image string `json:"image,omitempty"` // ImageBuild Specify the build parameter Build *ImageBuild `json:"build,omitempty"` // Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. // Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. // The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. // Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell Command []string `json:"command,omitempty"` // Arguments to the entrypoint. The docker image's CMD is used if this is not provided. // Variable references $(VAR_NAME) are expanded using the container's environment. // If a variable cannot be resolved, the reference in the input string will be unchanged. // The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. // Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell Args []string `json:"args,omitempty"` // Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated. WorkingDir string `json:"workingDir,omitempty"` // List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. // Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Cannot be updated. Ports []ContainerPort `json:"ports,omitempty"` // List of environment variables to set in the container. Cannot be updated. Env []EnvVar `json:"env,omitempty"` // CPU, in cores. (500m = .5 cores) CPUs *resource.Quantity `json:"cpus,omitempty"` // Memory, in bytes. (500Gi = 500GiB = 500 * 1024 * 1024 * 1024) Memory *resource.Quantity `json:"memory,omitempty"` // Secrets Mounts Secrets []DataMount `json:"secrets,omitempty"` // Configmaps Mounts Configs []DataMount `json:"configs,omitempty"` // Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes LivenessProbe *v1.Probe `json:"livenessProbe,omitempty"` // Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes ReadinessProbe *v1.Probe `json:"readinessProbe,omitempty"` // Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images ImagePullPolicy v1.PullPolicy `json:"imagePullPolicy,omitempty"` // Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false. Stdin bool `json:"stdin,omitempty"` // Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. // If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false StdinOnce bool `json:"stdinOnce,omitempty"` // Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false. TTY bool `json:"tty,omitempty"` // Pod volumes to mount into the container's filesystem. Cannot be updated. Volumes []Volume `json:"volumes,omitempty"` SecurityContext *v1.SecurityContext `json:"securityContext,omitempty"` ContainerSecurityContext }
func (*Container) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Container.
func (*Container) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ContainerPort ¶
type ContainerPort struct { Name string `json:"name,omitempty"` InternalOnly bool `json:"internalOnly,omitempty"` Protocol Protocol `json:"protocol,omitempty"` Port int32 `json:"port"` TargetPort int32 `json:"targetPort,omitempty"` HostPort bool `json:"hostport,omitempty"` }
func (*ContainerPort) DeepCopy ¶
func (in *ContainerPort) DeepCopy() *ContainerPort
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContainerPort.
func (*ContainerPort) DeepCopyInto ¶
func (in *ContainerPort) DeepCopyInto(out *ContainerPort)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (ContainerPort) MaybeString ¶
func (c ContainerPort) MaybeString() interface{}
type ContainerSecurityContext ¶
type ContainerSecurityContext struct { // The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. // If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container RunAsUser *int64 `json:"runAsUser,omitempty"` // The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. // If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. RunAsGroup *int64 `json:"runAsGroup,omitempty"` // Whether this container has a read-only root filesystem. Default is false. ReadOnlyRootFilesystem *bool `json:"readOnlyRootFilesystem,omitempty"` }
ContainerSecurityContext holds pod-level security attributes and common container constants. Optional: Defaults to empty. See type description for default values of each field.
func (*ContainerSecurityContext) DeepCopy ¶
func (in *ContainerSecurityContext) DeepCopy() *ContainerSecurityContext
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContainerSecurityContext.
func (*ContainerSecurityContext) DeepCopyInto ¶
func (in *ContainerSecurityContext) DeepCopyInto(out *ContainerSecurityContext)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type DataMount ¶
type DataMount struct { Directory string `json:"directory,omitempty"` Name string `json:"name,omitempty"` File string `json:"file,omitempty"` Key string `json:"key,omitempty"` }
func (*DataMount) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataMount.
func (*DataMount) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Destination ¶
type Destination struct { // Destination Service Service string `json:"service,omitempty"` // Destination Namespace Namespace string `json:"namespace,omitempty"` // Destination Revision Revision string `json:"revision,omitempty"` // Destination Port Port *uint32 `json:"port,omitempty"` }
func (*Destination) DeepCopy ¶
func (in *Destination) DeepCopy() *Destination
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Destination.
func (*Destination) DeepCopyInto ¶
func (in *Destination) DeepCopyInto(out *Destination)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (Destination) String ¶
func (d Destination) String() string
type EnvVar ¶
type EnvVar struct { Name string `json:"name,omitempty"` Value string `json:"value,omitempty"` SecretName string `json:"secretName,omitempty"` ConfigMapName string `json:"configMapName,omitempty"` Key string `json:"key,omitempty"` }
func (*EnvVar) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EnvVar.
func (*EnvVar) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ExternalService ¶
type ExternalService struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ExternalServiceSpec `json:"spec,omitempty"` Status ExternalServiceStatus `json:"status,omitempty"` }
ExternalService creates a DNS record and route rules for any Service outside of the cluster, can be IPs or FQDN outside the mesh
func NewExternalService ¶
func NewExternalService(namespace, name string, obj ExternalService) *ExternalService
func (*ExternalService) DeepCopy ¶
func (in *ExternalService) DeepCopy() *ExternalService
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalService.
func (*ExternalService) DeepCopyInto ¶
func (in *ExternalService) DeepCopyInto(out *ExternalService)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ExternalService) DeepCopyObject ¶
func (in *ExternalService) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ExternalServiceList ¶
type ExternalServiceList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata"` Items []ExternalService `json:"items"` }
ExternalServiceList is a list of ExternalService resources
func (*ExternalServiceList) DeepCopy ¶
func (in *ExternalServiceList) DeepCopy() *ExternalServiceList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalServiceList.
func (*ExternalServiceList) DeepCopyInto ¶
func (in *ExternalServiceList) DeepCopyInto(out *ExternalServiceList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ExternalServiceList) DeepCopyObject ¶
func (in *ExternalServiceList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ExternalServiceSpec ¶
type ExternalServiceSpec struct { // External service located outside mesh, represented by IPs IPAddresses []string `json:"ipAddresses,omitempty"` // External service located outside mesh, represented by DNS FQDN string `json:"fqdn,omitempty"` // In-Mesh service name in another namespace Service string `json:"service,omitempty"` }
func (*ExternalServiceSpec) DeepCopy ¶
func (in *ExternalServiceSpec) DeepCopy() *ExternalServiceSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalServiceSpec.
func (*ExternalServiceSpec) DeepCopyInto ¶
func (in *ExternalServiceSpec) DeepCopyInto(out *ExternalServiceSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ExternalServiceStatus ¶
type ExternalServiceStatus struct { // Represents the latest available observations of a ExternalService's current state. Conditions []genericcondition.GenericCondition `json:"conditions,omitempty"` }
func (*ExternalServiceStatus) DeepCopy ¶
func (in *ExternalServiceStatus) DeepCopy() *ExternalServiceStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalServiceStatus.
func (*ExternalServiceStatus) DeepCopyInto ¶
func (in *ExternalServiceStatus) DeepCopyInto(out *ExternalServiceStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Fault ¶
type Fault struct { // Percentage of requests on which the delay will be injected. Percentage int `json:"percentage,omitempty" norman:"min=0,max=100"` // REQUIRED. Add a fixed delay before forwarding the request. Units: milliseconds DelayMillis int `json:"delayMillis,omitempty"` // Abort Http request attempts and return error codes back to downstream service, giving the impression that the upstream service is faulty. Abort Abort `json:"abort,omitempty"` }
func (*Fault) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Fault.
func (*Fault) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type GithubStatus ¶ added in v0.5.0
type GithubStatus struct {
PR string `json:"pr,omitempty"`
}
func (*GithubStatus) DeepCopy ¶ added in v0.5.0
func (in *GithubStatus) DeepCopy() *GithubStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GithubStatus.
func (*GithubStatus) DeepCopyInto ¶ added in v0.5.0
func (in *GithubStatus) DeepCopyInto(out *GithubStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ImageBuild ¶
type ImageBuild struct { // Repository url Repo string `json:"repo,omitempty"` // Repo Revision. Can be a git commit or tag Revision string `json:"revision,omitempty"` // Repo Branch. If specified, a gitmodule will be created to watch the repo and creating new revision if new commit or tag is pushed. Branch string `json:"branch,omitempty"` // Whether to only stage the new revision. If true, the new created service will not be allocating any traffic automatically. StageOnly bool `json:"stageOnly,omitempty"` // Specify the name of the Dockerfile in the Repo. Defaults to `Dockerfile`. DockerFile string `json:"dockerFile,omitempty"` // Specify the path of the Dockerfile in the Repo. Defaults to spec.BuildContext. DockerFilePath string `json:"dockerFilePath,omitempty"` // Specify build context. Defaults to "." BuildContext string `json:"buildContext,omitempty"` // Specify build args BuildArgs []string `json:"buildArgs,omitempty"` // Specify the build template. Defaults to `buildkit`. Template string `json:"template,omitempty"` // Specify the github secret name. Used to create Github webhook, the secret key has to be `accessToken` GithubSecretName string `json:"githubSecretName,omitempty"` // Specify secret name for checking our git resources GitSecretName string `json:"gitSecretName,omitempty"` // Specify custom registry to push the image instead of built-in one PushRegistry string `json:"pushRegistry,omitempty"` // Specify secret for pushing to custom registry PushRegistrySecretName string `json:"pushRegistrySecretName,omitempty"` // Specify image name instead of the one generated from service name, format: $registry/$imageName:$revision BuildImageName string `json:"buildImageName,omitempty"` // Whether to enable builds for pull requests EnablePR bool `json:"enablePr,omitempty"` // Build image with no cache NoCache bool `json:"noCache,omitempty"` // Push image Push bool `json:"push,omitempty"` // BuildTimeout describes how long the build can run BuildTimeout *metav1.Duration }
func (*ImageBuild) DeepCopy ¶
func (in *ImageBuild) DeepCopy() *ImageBuild
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageBuild.
func (*ImageBuild) DeepCopyInto ¶
func (in *ImageBuild) DeepCopyInto(out *ImageBuild)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Match ¶
type Match struct { //URI to match values are case-sensitive and formatted as follows: // // exact: "value" for exact string match // // prefix: "value" for prefix-based match // // regex: "value" for ECMAscript style regex-based match Path *StringMatch `json:"path,omitempty"` // URI Scheme values are case-sensitive and formatted as follows: // // exact: "value" for exact string match // // prefix: "value" for prefix-based match // // regex: "value" for ECMAscript style regex-based match Scheme *StringMatch `json:"scheme,omitempty"` // HTTP Method values are case-sensitive and formatted as follows: // // exact: "value" for exact string match // // prefix: "value" for prefix-based match // // regex: "value" for ECMAscript style regex-based match Method *StringMatch `json:"method,omitempty"` // The header keys must be lowercase and use hyphen as the separator, e.g. x-request-id. // // Header values are case-sensitive and formatted as follows: // // exact: "value" for exact string match // // prefix: "value" for prefix-based match // // regex: "value" for ECMAscript style regex-based match // // Note: The keys uri, scheme, method, and authority will be ignored. Headers map[string]StringMatch `json:"headers,omitempty"` // Cookies must be lowercase and use hyphen as the separator, e.g. x-request-id. // // Header values are case-sensitive and formatted as follows: // // exact: "value" for exact string match // // prefix: "value" for prefix-based match // // regex: "value" for ECMAscript style regex-based match // // Note: The keys uri, scheme, method, and authority will be ignored. Cookies map[string]StringMatch `json:"cookies,omitempty"` // Specifies the ports on the host that is being addressed. Many services only expose a single port or label ports with the protocols they support, in these cases it is not required to explicitly select the port. Port *int `json:"port,omitempty"` From *ServiceSource `json:"from,omitempty"` }
func (*Match) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Match.
func (*Match) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (Match) MaybeString ¶
func (m Match) MaybeString() interface{}
type NamedContainer ¶
type NamedContainer struct { // The name of the container Name string `json:"name,omitempty"` // List of initialization containers belonging to the pod. // Init containers are executed in order prior to containers being started. // If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. // The name for an init container or normal container must be unique among all containers. // Init containers may not have Lifecycle actions, Readiness probes, or Liveness probes. // The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. // Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/ Init bool `json:"init,omitempty"` Container }
func (*NamedContainer) DeepCopy ¶
func (in *NamedContainer) DeepCopy() *NamedContainer
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NamedContainer.
func (*NamedContainer) DeepCopyInto ¶
func (in *NamedContainer) DeepCopyInto(out *NamedContainer)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Permission ¶
type Permission struct { Role string `json:"role,omitempty"` Verbs []string `json:"verbs,omitempty"` APIGroup string `json:"apiGroup,omitempty"` Resource string `json:"resource,omitempty"` URL string `json:"url,omitempty"` ResourceName string `json:"resourceName,omitempty"` }
func (*Permission) DeepCopy ¶
func (in *Permission) DeepCopy() *Permission
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Permission.
func (*Permission) DeepCopyInto ¶
func (in *Permission) DeepCopyInto(out *Permission)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PodConfig ¶
type PodConfig struct { DisableServiceAccount bool `json:"disableServiceAccount,omitempty"` // List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated. Sidecars []NamedContainer `json:"containers,omitempty"` // Set DNS policy for the pod. Defaults to "ClusterFirst". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. // DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. // To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'. DNSPolicy v1.DNSPolicy `json:"dnsPolicy,omitempty"` // Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value. Hostname string `json:"hostname,omitempty"` // HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods. HostAliases []v1.HostAlias `json:"hostAliases,omitempty"` // Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false. HostNetwork bool `json:"hostNetwork,omitempty"` // Image pull secret ImagePullSecrets []v1.LocalObjectReference `json:"imagePullSecrets,omitempty"` *v1.Affinity PodDNSConfig Container }
func (*PodConfig) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PodConfig.
func (*PodConfig) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PodDNSConfig ¶
type PodDNSConfig struct { // A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed. Nameservers []string `json:"dnsNameservers,omitempty"` // A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed. Searches []string `json:"dnsSearches,omitempty"` // A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. // Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy. Options []PodDNSConfigOption `json:"dnsOptions,omitempty"` }
PodDNSConfig Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy.
func (*PodDNSConfig) DeepCopy ¶
func (in *PodDNSConfig) DeepCopy() *PodDNSConfig
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PodDNSConfig.
func (*PodDNSConfig) DeepCopyInto ¶
func (in *PodDNSConfig) DeepCopyInto(out *PodDNSConfig)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PodDNSConfigOption ¶
type PodDNSConfigOption struct { Name string `json:"name,omitempty"` Value *string `json:"value,omitempty"` }
func (*PodDNSConfigOption) DeepCopy ¶
func (in *PodDNSConfigOption) DeepCopy() *PodDNSConfigOption
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PodDNSConfigOption.
func (*PodDNSConfigOption) DeepCopyInto ¶
func (in *PodDNSConfigOption) DeepCopyInto(out *PodDNSConfigOption)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Question ¶
type Question struct { // The variable name to reference using ${...} syntax Variable string `json:"variable,omitempty"` // A friend name for the question Label string `json:"label,omitempty"` // A longer description of the question Description string `json:"description,omitempty"` // The field type: string, int, bool, enum. default is string Type string `json:"type,omitempty"` // The answer can not be blank Required bool `json:"required,omitempty"` // Default value of the answer if not specified by the user Default string `json:"default,omitempty"` // Group the question with questions in the same group (Most used by UI) Group string `json:"group,omitempty"` // Minimum length of the answer MinLength int `json:"minLength,omitempty"` // Maximum length of the answer MaxLength int `json:"maxLength,omitempty"` // Minimum value of an int answer Min int `json:"min,omitempty"` // Maximum value of an int answer Max int `json:"max,omitempty"` // An array of valid answers for type enum questions Options []string `json:"options,omitempty"` // Answer must be composed of only these characters ValidChars string `json:"validChars,omitempty"` // Answer must not have any of these characters InvalidChars string `json:"invalidChars,omitempty"` // A list of questions that are considered child questions Subquestions []SubQuestion `json:"subquestions,omitempty"` // Ask question only if this evaluates to true, more info on syntax below ShowIf string `json:"showIf,omitempty"` // Ask subquestions if this evaluates to true ShowSubquestionIf string `json:"showSubquestionIf,omitempty"` }
func (*Question) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Question.
func (*Question) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Redirect ¶
func (*Redirect) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Redirect.
func (*Redirect) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Retry ¶
type Retry struct { // REQUIRED. Number of retries for a given request. The interval between retries will be determined automatically (25ms+). // Actual number of retries attempted depends on the httpReqTimeout. Attempts int `json:"attempts,omitempty"` // Timeout per retry attempt for a given request. Units: milliseconds TimeoutMillis int `json:"timeoutMillis,omitempty"` }
func (*Retry) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Retry.
func (*Retry) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Revision ¶
type Revision struct { Public bool `json:"public,omitempty"` ServiceName string `json:"serviceName,omitempty"` Version string `json:"Version,omitempty"` AdjustedWeight int `json:"adjustedWeight,omitempty"` Weight int `json:"weight,omitempty"` Scale int `json:"scale,omitempty"` ScaleStatus *ScaleStatus `json:"scaleStatus,omitempty"` DeploymentReady bool `json:"deploymentReady,omitempty"` RolloutConfig }
func (*Revision) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Revision.
func (*Revision) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Rewrite ¶
func (*Rewrite) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Rewrite.
func (*Rewrite) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type RolloutConfig ¶
type RolloutConfig struct { // Whether to turn on Rollout(changing the weight gradually) Rollout bool `json:"rollout,omitempty"` // Increment Value each Rollout can scale up or down RolloutIncrement int `json:"rolloutIncrement,omitempty"` // Increment Interval between each Rollout RolloutInterval int `json:"rolloutInterval,omitempty"` }
RolloutConfig specifies the configuration when promoting a new revision
func (*RolloutConfig) DeepCopy ¶
func (in *RolloutConfig) DeepCopy() *RolloutConfig
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RolloutConfig.
func (*RolloutConfig) DeepCopyInto ¶
func (in *RolloutConfig) DeepCopyInto(out *RolloutConfig)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type RouteSpec ¶
type RouteSpec struct { //Match conditions to be satisfied for the rule to be activated. All conditions inside a single match block have AND semantics, while the list of match blocks have OR semantics. // The rule is matched if any one of the match blocks succeed. Matches []Match `json:"matches,omitempty"` // A http rule can either redirect or forward (default) traffic. The forwarding target can be one of several versions of a service (see glossary in beginning of document). // Weights associated with the service version determine the proportion of traffic it receives. To []WeightedDestination `json:"to,omitempty"` // A http rule can either redirect or forward (default) traffic. If traffic passthrough option is specified in the rule, route/redirect will be ignored. // The redirect primitive can be used to send a HTTP 301 redirect to a different URI or Authority. Redirect *Redirect `json:"redirect,omitempty"` // Rewrite HTTP URIs and Authority headers. Rewrite cannot be used with Redirect primitive. Rewrite will be performed before forwarding. Rewrite *Rewrite `json:"rewrite,omitempty"` //Header manipulation rules Headers *v1alpha3.HeaderOperations `json:"headers,omitempty"` RouteTraffic }
func (*RouteSpec) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RouteSpec.
func (*RouteSpec) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type RouteTraffic ¶
type RouteTraffic struct { // Fault injection policy to apply on HTTP traffic at the client side. Note that timeouts or retries will not be enabled when faults are enabled on the client side. Fault *Fault `json:"fault,omitempty"` // Mirror HTTP traffic to a another destination in addition to forwarding the requests to the intended destination. // Mirrored traffic is on a best effort basis where the sidecar/gateway will not wait for the mirrored cluster to respond before returning the response from the original destination. // Statistics will be generated for the mirrored destination. Mirror *Destination `json:"mirror,omitempty"` // Timeout for HTTP requests. TimeoutMillis *int `json:"timeoutMillis,omitempty"` // Retry policy for HTTP requests. Retry *Retry `json:"retry,omitempty"` }
func (*RouteTraffic) DeepCopy ¶
func (in *RouteTraffic) DeepCopy() *RouteTraffic
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RouteTraffic.
func (*RouteTraffic) DeepCopyInto ¶
func (in *RouteTraffic) DeepCopyInto(out *RouteTraffic)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Router ¶
type Router struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec RouterSpec `json:"spec,omitempty"` Status RouterStatus `json:"status,omitempty"` }
Router is a top level resource to create L7 routing to different services. It will create VirtualService, ServiceEntry and DestinationRules
func (*Router) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Router.
func (*Router) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Router) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type RouterList ¶
type RouterList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata"` Items []Router `json:"items"` }
RouterList is a list of Router resources
func (*RouterList) DeepCopy ¶
func (in *RouterList) DeepCopy() *RouterList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RouterList.
func (*RouterList) DeepCopyInto ¶
func (in *RouterList) DeepCopyInto(out *RouterList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*RouterList) DeepCopyObject ¶
func (in *RouterList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type RouterSpec ¶
type RouterSpec struct { // An ordered list of route rules for HTTP traffic. The first rule matching an incoming request is used. Routes []RouteSpec `json:"routes,omitempty"` }
func (*RouterSpec) DeepCopy ¶
func (in *RouterSpec) DeepCopy() *RouterSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RouterSpec.
func (*RouterSpec) DeepCopyInto ¶
func (in *RouterSpec) DeepCopyInto(out *RouterSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type RouterStatus ¶
type RouterStatus struct { // The list of publicedomains pointing to the router PublicDomains []string `json:"publicDomains,omitempty"` // The endpoint to access the router Endpoints []string `json:"endpoints,omitempty"` // Represents the latest available observations of a PublicDomain's current state. Conditions []genericcondition.GenericCondition `json:"conditions,omitempty"` }
func (*RouterStatus) DeepCopy ¶
func (in *RouterStatus) DeepCopy() *RouterStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RouterStatus.
func (*RouterStatus) DeepCopyInto ¶
func (in *RouterStatus) DeepCopyInto(out *RouterStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ScaleStatus ¶
type ScaleStatus struct { // Total number of ready pods targeted by this deployment. Ready int `json:"ready,omitempty"` // They may either be pods that are running but not yet available or pods that still have not been created. Unavailable int `json:"unavailable,omitempty"` // Total number of available pods (ready for at least minReadySeconds) targeted by this deployment. Available int `json:"available,omitempty"` // Total number of non-terminated pods targeted by this deployment that have the desired template spec. Updated int `json:"updated,omitempty"` }
func (*ScaleStatus) DeepCopy ¶
func (in *ScaleStatus) DeepCopy() *ScaleStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ScaleStatus.
func (*ScaleStatus) DeepCopyInto ¶
func (in *ScaleStatus) DeepCopyInto(out *ScaleStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Service ¶
type Service struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ServiceSpec `json:"spec,omitempty"` SystemSpec *SystemServiceSpec `json:"systemSpec,omitempty"` Status ServiceStatus `json:"status,omitempty"` }
Service acts as a top level resource for a container and its sidecarsm and routing resources. Each service represents an individual revision, group by Spec.App(defaults to Service.Name), and Spec.Version(defaults to v0)
func NewService ¶
func (*Service) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Service.
func (*Service) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Service) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ServiceList ¶
type ServiceList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata"` Items []Service `json:"items"` }
ServiceList is a list of Service resources
func (*ServiceList) DeepCopy ¶
func (in *ServiceList) DeepCopy() *ServiceList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceList.
func (*ServiceList) DeepCopyInto ¶
func (in *ServiceList) DeepCopyInto(out *ServiceList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ServiceList) DeepCopyObject ¶
func (in *ServiceList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ServiceObservedWeight ¶
type ServiceObservedWeight struct { LastWrite metav1.Time `json:"lastWrite,omitempty"` Weight int `json:"weight,omitempty"` ServiceName string `json:"serviceName,omitempty"` }
func (*ServiceObservedWeight) DeepCopy ¶
func (in *ServiceObservedWeight) DeepCopy() *ServiceObservedWeight
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceObservedWeight.
func (*ServiceObservedWeight) DeepCopyInto ¶
func (in *ServiceObservedWeight) DeepCopyInto(out *ServiceObservedWeight)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ServiceRevision ¶
type ServiceRevision struct { // Revision Version Version string `json:"version,omitempty"` // Revision Weight Weight int `json:"weight,omitempty"` // Revision App name App string `json:"app,omitempty"` }
ServiceRevision specifies the APP name, Version and Weight to uniquely identify each Revision
func (*ServiceRevision) DeepCopy ¶
func (in *ServiceRevision) DeepCopy() *ServiceRevision
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceRevision.
func (*ServiceRevision) DeepCopyInto ¶
func (in *ServiceRevision) DeepCopyInto(out *ServiceRevision)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ServiceScale ¶
type ServiceScale struct { // Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1. Scale *int `json:"scale,omitempty"` // The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). // This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. // Defaults to 25%. Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. // Once old pods have been killed, new ReplicaSet can be scaled up further, ensuring that total number of pods running at any time during the update is at most 130% of desired pods. // // +optional UpdateBatchSize int `json:"updateBatchSize,omitempty"` }
ServiceScale Specifies the scale parameters for Service
func (*ServiceScale) DeepCopy ¶
func (in *ServiceScale) DeepCopy() *ServiceScale
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceScale.
func (*ServiceScale) DeepCopyInto ¶
func (in *ServiceScale) DeepCopyInto(out *ServiceScale)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ServiceSource ¶
type ServiceSource struct { Service string `json:"service,omitempty"` Stack string `json:"stack,omitempty"` Revision string `json:"revision,omitempty"` }
func (*ServiceSource) DeepCopy ¶
func (in *ServiceSource) DeepCopy() *ServiceSource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceSource.
func (*ServiceSource) DeepCopyInto ¶
func (in *ServiceSource) DeepCopyInto(out *ServiceSource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (ServiceSource) String ¶
func (s ServiceSource) String() string
type ServiceSpec ¶
type ServiceSpec struct { ServiceScale ServiceRevision AutoscaleConfig RolloutConfig PodConfig Global bool `json:"global,omitempty"` // Whether to disable ServiceMesh for Service. If true, no mesh sidecar will be deployed along with the Service DisableServiceMesh bool `json:"disableServiceMesh,omitempty"` // Permissions to the Services. It will create corresponding ServiceAccounts, Roles and RoleBinding. Permissions []Permission `json:"permissions,omitempty"` // GlobalPermissions to the Services. It will create corresponding ServiceAccounts, ClusterRoles and ClusterRoleBinding. GlobalPermissions []Permission `json:"globalPermissions,omitempty"` }
ServiceSpec represents spec for Service
func (*ServiceSpec) DeepCopy ¶
func (in *ServiceSpec) DeepCopy() *ServiceSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceSpec.
func (*ServiceSpec) DeepCopyInto ¶
func (in *ServiceSpec) DeepCopyInto(out *ServiceSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ServiceStatus ¶
type ServiceStatus struct { // Most recently observed status of the Deployment. DeploymentStatus *appsv1.DeploymentStatus `json:"deploymentStatus,omitempty"` // The first observed commit for the build FirstRevision string `json:"firstRevision,omitempty"` // ScaleStatus for the Service ScaleStatus *ScaleStatus `json:"scaleStatus,omitempty"` // ObservedScale is calcaluted from autoscaling component to make sure pod has the desired load ObservedScale *int `json:"observedScale,omitempty"` // WeightOverride is the weight calculated from serviceset revision WeightOverride *int `json:"weightOverride,omitempty"` ContainerImages map[string]string `json:"containerImages,omitempty"` // Represents the latest available observations of a deployment's current state. Conditions []genericcondition.GenericCondition `json:"conditions,omitempty"` // The Endpoints to access the service Endpoints []string `json:"endpoints,omitempty"` // The list of publicdomains pointing to the service PublicDomains []string `json:"publicDomains,omitempty"` // gitwatcher name GitCommitName string `json:"gitCommitName,omitempty"` // log token to access build log BuildLogToken string `json:"buildLogToken,omitempty"` }
func (*ServiceStatus) DeepCopy ¶
func (in *ServiceStatus) DeepCopy() *ServiceStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceStatus.
func (*ServiceStatus) DeepCopyInto ¶
func (in *ServiceStatus) DeepCopyInto(out *ServiceStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Stack ¶ added in v0.3.0
type Stack struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec StackSpec `json:"spec,omitempty"` Status StackStatus `json:"status,omitempty"` }
func (*Stack) DeepCopy ¶ added in v0.3.0
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Stack.
func (*Stack) DeepCopyInto ¶ added in v0.3.0
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Stack) DeepCopyObject ¶ added in v0.3.0
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type StackBuild ¶ added in v0.4.0
type StackBuild struct { // Git repo url Repo string `json:"repo,omitempty"` // Git branch Branch string `json:"branch,omitempty"` // Git revision Revision string `json:"revision,omitempty"` // Git secret name for repository GitSecretName string `json:"gitSecretName,omitempty"` }
func (*StackBuild) DeepCopy ¶ added in v0.4.0
func (in *StackBuild) DeepCopy() *StackBuild
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StackBuild.
func (*StackBuild) DeepCopyInto ¶ added in v0.4.0
func (in *StackBuild) DeepCopyInto(out *StackBuild)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type StackList ¶ added in v0.3.0
type StackList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata"` Items []Stack `json:"items"` }
StackList is a list of Stack resources
func (*StackList) DeepCopy ¶ added in v0.3.0
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StackList.
func (*StackList) DeepCopyInto ¶ added in v0.3.0
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*StackList) DeepCopyObject ¶ added in v0.3.0
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type StackSpec ¶ added in v0.3.0
type StackSpec struct { // Stack build parameters that watches git repo Build *StackBuild `json:"build,omitempty"` // Stack template Template string `json:"template,omitempty"` // Stack images Images map[string]string `json:"images,omitempty"` // Stack answers Answers map[string]string `json:"answers,omitempty"` }
func (*StackSpec) DeepCopy ¶ added in v0.3.0
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StackSpec.
func (*StackSpec) DeepCopyInto ¶ added in v0.3.0
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type StackStatus ¶ added in v0.3.0
type StackStatus struct { // Observed commit for the build Revision string `json:"revision,omitempty"` Conditions []genericcondition.GenericCondition `json:"conditions,omitempty"` }
func (*StackStatus) DeepCopy ¶ added in v0.3.0
func (in *StackStatus) DeepCopy() *StackStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StackStatus.
func (*StackStatus) DeepCopyInto ¶ added in v0.3.0
func (in *StackStatus) DeepCopyInto(out *StackStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type StringMatch ¶
type StringMatch struct { Exact string `json:"exact,omitempty"` Prefix string `json:"prefix,omitempty"` Regexp string `json:"regexp,omitempty"` }
func (*StringMatch) DeepCopy ¶
func (in *StringMatch) DeepCopy() *StringMatch
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StringMatch.
func (*StringMatch) DeepCopyInto ¶
func (in *StringMatch) DeepCopyInto(out *StringMatch)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (StringMatch) String ¶
func (s StringMatch) String() string
type SubQuestion ¶
type SubQuestion struct { Variable string `json:"variable,omitempty"` Label string `json:"label,omitempty"` Description string `json:"description,omitempty"` Type string `json:"type,omitempty"` Required bool `json:"required,omitempty"` Default string `json:"default,omitempty"` Group string `json:"group,omitempty"` MinLength int `json:"minLength,omitempty"` MaxLength int `json:"maxLength,omitempty"` Min int `json:"min,omitempty"` Max int `json:"max,omitempty"` Options []string `json:"options,omitempty"` ValidChars string `json:"validChars,omitempty"` InvalidChars string `json:"invalidChars,omitempty"` ShowIf string `json:"showIf,omitempty"` }
func (*SubQuestion) DeepCopy ¶
func (in *SubQuestion) DeepCopy() *SubQuestion
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SubQuestion.
func (*SubQuestion) DeepCopyInto ¶
func (in *SubQuestion) DeepCopyInto(out *SubQuestion)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SystemServiceSpec ¶
type SystemServiceSpec struct { UpdateOrder string `json:"updateOrder,omitempty"` UpdateStrategy string `json:"updateStrategy,omitempty"` DeploymentStrategy string `json:"deploymentStrategy,omitempty"` VolumeTemplates []v1.PersistentVolumeClaim `json:"volumeClaimTemplates,omitempty"` PodSpec v1.PodSpec `json:"podSpec,omitempty"` }
func (*SystemServiceSpec) DeepCopy ¶
func (in *SystemServiceSpec) DeepCopy() *SystemServiceSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SystemServiceSpec.
func (*SystemServiceSpec) DeepCopyInto ¶
func (in *SystemServiceSpec) DeepCopyInto(out *SystemServiceSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TemplateMeta ¶
type TemplateMeta struct { Name string `json:"name,omitempty"` Version string `json:"version,omitempty"` IconURL string `json:"iconUrl,omitempty"` Readme string `json:"readme,omitempty"` Questions []Question `json:"questions,omitempty"` }
func (*TemplateMeta) DeepCopy ¶
func (in *TemplateMeta) DeepCopy() *TemplateMeta
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateMeta.
func (*TemplateMeta) DeepCopyInto ¶
func (in *TemplateMeta) DeepCopyInto(out *TemplateMeta)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Volume ¶
func (*Volume) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Volume.
func (*Volume) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type WeightedDestination ¶
type WeightedDestination struct { Destination // Weight for the Destination Weight int `json:"weight,omitempty"` }
func (*WeightedDestination) DeepCopy ¶
func (in *WeightedDestination) DeepCopy() *WeightedDestination
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WeightedDestination.
func (*WeightedDestination) DeepCopyInto ¶
func (in *WeightedDestination) DeepCopyInto(out *WeightedDestination)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (WeightedDestination) String ¶
func (w WeightedDestination) String() string