Documentation ¶
Index ¶
Constants ¶
View Source
const APIVersionLatest = "serving.knative.dev/v1"
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ServingServiceCRD ¶
type ServingServiceCRD struct { //APIVersion CRD API version APIVersion string `yaml:"apiVersion"` //Kind kind of the object Kind string `yaml:"kind"` Metadata schema.Metadata `yaml:"metadata,omitempty"` Spec ServingServiceSpec `yaml:"spec"` }
ServingServiceCRD root level YAML definition for the object
type ServingServiceSpec ¶
type ServingServiceSpec struct {
ServingServiceSpecTemplate `yaml:"template"`
}
type ServingServiceSpecTemplate ¶
type ServingServiceSpecTemplate struct {
Template ServingServiceSpecTemplateSpec `yaml:"spec"`
}
type ServingServiceSpecTemplateSpec ¶
type ServingServiceSpecTemplateSpec struct { Containers []ServingSpecContainersContainerSpec `yaml:"containers"` Volumes []Volume `yaml:"volumes,omitempty"` }
type ServingSpecContainersContainerSpec ¶
type ServingSpecContainersContainerSpec struct { Image string `yaml:"image"` Env []EnvPair `yaml:"env,omitempty"` VolumeMounts []VolumeMount `yaml:"volumeMounts,omitempty"` }
type VolumeMount ¶
Click to show internal directories.
Click to hide internal directories.