v1alpha1

package
v0.33.11 Latest Latest
Warning

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

Go to latest
Published: Feb 15, 2024 License: Apache-2.0 Imports: 21 Imported by: 28

Documentation

Overview

+k8s:openapi-gen=true +k8s:deepcopy-gen=package,register +k8s:conversion-gen=github.com/tilt-dev/tilt/pkg/apis/core +k8s:defaulter-gen=TypeMeta +groupName=tilt.dev

Index

Constants

View Source
const AnnotationButtonType = "tilt.dev/uibutton-type"

used by the backend to indicate to the frontend that this button is special

View Source
const AnnotationManagedBy = "tilt.dev/managed-by"

AnnotationManaged declares when an object is managed by a system that's not entirely expressed in apiserver objects.

View Source
const AnnotationManifest = "tilt.dev/resource"

AnnotationManifest identifies which manifest an object's logs should appear under.

View Source
const AnnotationSpanID = "tilt.dev/log-span-id"

An annotation on any object that identifies which span id its logs should appear under.

View Source
const AnnotationTargetID = "tilt.dev/target-id"

AnnotationTargetID is an internal Tilt target ID used for the build graph.

View Source
const (
	// ApplyConditionJobComplete means the apply was for a batch/v1.Job that has already
	// run to successful completion.
	//
	// Tilt primarily monitors Pods for resource runtime status, but no Pod
	// will be created for the Job in this scenario since it already ran in the
	// past, and it's possible that the Pod has been GC'd (e.g. due to cluster
	// settings or due to a Node being recycled). This condition allows Tilt to
	// bypass Pod monitoring for this resource.
	ApplyConditionJobComplete string = "JobComplete"
)
View Source
const ButtonTypeDisableToggle = "DisableToggle"
View Source
const ButtonTypeStopBuild = "StopBuild"
View Source
const ClusterNameDefault = "default"
View Source
const ClusterNameDocker = "docker"
View Source
const GroupName = "tilt.dev"

GroupName is the group name used in this package

View Source
const KubernetesApplyTimeoutDefault = 30 * time.Second
View Source
const OwnerKindTiltfile = "Tiltfile"

Denote that the Tiltfile is the owner.

View Source
const Version = "v1alpha1"

Variables

View Source
var (
	ErrInvalidLengthGenerated        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowGenerated          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupGenerated = fmt.Errorf("proto: unexpected end of group")
)
View Source
var AddToScheme = func(scheme *runtime.Scheme) error {
	metav1.AddToGroupVersion(scheme, schema.GroupVersion{
		Group:   GroupName,
		Version: Version,
	})

	objs := []runtime.Object{}
	for _, obj := range AllResourceObjects() {
		objs = append(objs, obj)
	}
	objs = append(objs, AllResourceLists()...)

	scheme.AddKnownTypes(schema.GroupVersion{
		Group:   GroupName,
		Version: Version,
	}, objs...)
	return nil
}
View Source
var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: Version}

Functions

func AllResourceLists

func AllResourceLists() []runtime.Object

func AllResourceObjects

func AllResourceObjects() []resource.Object

func NewScheme added in v0.19.0

func NewScheme() *runtime.Scheme

A new scheme with just this package's types.

func RegisterConversions added in v0.33.6

func RegisterConversions(s *runtime.Scheme) error

RegisterConversions adds conversion functions to the given scheme. Public to allow building arbitrary schemes.

func RegisterDefaults

func RegisterDefaults(scheme *runtime.Scheme) error

RegisterDefaults adds defaulters functions to the given scheme. Public to allow building arbitrary schemes. All generated defaulters are covering - they call all nested defaulters.

func Resource

func Resource(resource string) schema.GroupResource

Resource takes an unqualified resource and returns a Group qualified GroupResource

Types

type Cluster added in v0.23.3

type Cluster struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Spec   ClusterSpec   `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
	Status ClusterStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
}

Cluster defines any runtime for running containers, in the broadest sense of the word "runtime".

+k8s:openapi-gen=true

func (*Cluster) DeepCopy added in v0.23.3

func (in *Cluster) DeepCopy() *Cluster

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

func (*Cluster) DeepCopyInto added in v0.23.3

func (in *Cluster) DeepCopyInto(out *Cluster)

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

func (*Cluster) DeepCopyObject added in v0.23.3

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

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

func (*Cluster) Descriptor added in v0.23.3

func (*Cluster) Descriptor() ([]byte, []int)

func (*Cluster) GetGroupVersionResource added in v0.23.3

func (in *Cluster) GetGroupVersionResource() schema.GroupVersionResource

func (*Cluster) GetObjectMeta added in v0.23.3

func (in *Cluster) GetObjectMeta() *metav1.ObjectMeta

func (*Cluster) GetSingularName added in v0.33.0

func (in *Cluster) GetSingularName() string

func (*Cluster) GetSpec added in v0.23.4

func (in *Cluster) GetSpec() interface{}

func (*Cluster) GetStatus added in v0.23.3

func (in *Cluster) GetStatus() resource.StatusSubResource

func (*Cluster) IsStorageVersion added in v0.23.3

func (in *Cluster) IsStorageVersion() bool

func (*Cluster) Marshal added in v0.23.3

func (m *Cluster) Marshal() (dAtA []byte, err error)

func (*Cluster) MarshalTo added in v0.23.3

func (m *Cluster) MarshalTo(dAtA []byte) (int, error)

func (*Cluster) MarshalToSizedBuffer added in v0.23.3

func (m *Cluster) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Cluster) NamespaceScoped added in v0.23.3

func (in *Cluster) NamespaceScoped() bool

func (*Cluster) New added in v0.23.3

func (in *Cluster) New() runtime.Object

func (*Cluster) NewList added in v0.23.3

func (in *Cluster) NewList() runtime.Object

func (*Cluster) ProtoMessage added in v0.23.3

func (*Cluster) ProtoMessage()

func (*Cluster) Reset added in v0.23.3

func (m *Cluster) Reset()

func (*Cluster) Size added in v0.23.3

func (m *Cluster) Size() (n int)

func (*Cluster) String added in v0.23.3

func (this *Cluster) String() string

func (*Cluster) Unmarshal added in v0.23.3

func (m *Cluster) Unmarshal(dAtA []byte) error

func (*Cluster) Validate added in v0.23.3

func (in *Cluster) Validate(ctx context.Context) field.ErrorList

func (*Cluster) XXX_DiscardUnknown added in v0.23.3

func (m *Cluster) XXX_DiscardUnknown()

func (*Cluster) XXX_Marshal added in v0.23.3

func (m *Cluster) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Cluster) XXX_Merge added in v0.23.3

func (m *Cluster) XXX_Merge(src proto.Message)

func (*Cluster) XXX_Size added in v0.23.3

func (m *Cluster) XXX_Size() int

func (*Cluster) XXX_Unmarshal added in v0.23.3

func (m *Cluster) XXX_Unmarshal(b []byte) error

type ClusterConnection added in v0.23.3

type ClusterConnection struct {
	// Defines connection to a Kubernetes cluster.
	Kubernetes *KubernetesClusterConnection `json:"kubernetes,omitempty" protobuf:"bytes,1,opt,name=kubernetes"`

	// Defines connection to a Docker daemon.
	Docker *DockerClusterConnection `json:"docker,omitempty" protobuf:"bytes,2,opt,name=docker"`
}

Connection spec for an existing cluster.

func (*ClusterConnection) DeepCopy added in v0.23.3

func (in *ClusterConnection) DeepCopy() *ClusterConnection

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

func (*ClusterConnection) DeepCopyInto added in v0.23.3

func (in *ClusterConnection) DeepCopyInto(out *ClusterConnection)

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

func (*ClusterConnection) Descriptor added in v0.23.3

func (*ClusterConnection) Descriptor() ([]byte, []int)

func (*ClusterConnection) Marshal added in v0.23.3

func (m *ClusterConnection) Marshal() (dAtA []byte, err error)

func (*ClusterConnection) MarshalTo added in v0.23.3

func (m *ClusterConnection) MarshalTo(dAtA []byte) (int, error)

func (*ClusterConnection) MarshalToSizedBuffer added in v0.23.3

func (m *ClusterConnection) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ClusterConnection) ProtoMessage added in v0.23.3

func (*ClusterConnection) ProtoMessage()

func (*ClusterConnection) Reset added in v0.23.3

func (m *ClusterConnection) Reset()

func (*ClusterConnection) Size added in v0.23.3

func (m *ClusterConnection) Size() (n int)

func (*ClusterConnection) String added in v0.23.3

func (this *ClusterConnection) String() string

func (*ClusterConnection) Unmarshal added in v0.23.3

func (m *ClusterConnection) Unmarshal(dAtA []byte) error

func (*ClusterConnection) XXX_DiscardUnknown added in v0.23.3

func (m *ClusterConnection) XXX_DiscardUnknown()

func (*ClusterConnection) XXX_Marshal added in v0.23.3

func (m *ClusterConnection) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ClusterConnection) XXX_Merge added in v0.23.3

func (m *ClusterConnection) XXX_Merge(src proto.Message)

func (*ClusterConnection) XXX_Size added in v0.23.3

func (m *ClusterConnection) XXX_Size() int

func (*ClusterConnection) XXX_Unmarshal added in v0.23.3

func (m *ClusterConnection) XXX_Unmarshal(b []byte) error

type ClusterConnectionStatus added in v0.27.0

type ClusterConnectionStatus struct {
	// Defines connection to a Kubernetes cluster.
	Kubernetes *KubernetesClusterConnectionStatus `json:"kubernetes,omitempty" protobuf:"bytes,1,opt,name=kubernetes"`
}

Connection spec for an existing cluster.

func (*ClusterConnectionStatus) DeepCopy added in v0.27.0

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

func (*ClusterConnectionStatus) DeepCopyInto added in v0.27.0

func (in *ClusterConnectionStatus) DeepCopyInto(out *ClusterConnectionStatus)

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

func (*ClusterConnectionStatus) Descriptor added in v0.27.0

func (*ClusterConnectionStatus) Descriptor() ([]byte, []int)

func (*ClusterConnectionStatus) Marshal added in v0.27.0

func (m *ClusterConnectionStatus) Marshal() (dAtA []byte, err error)

func (*ClusterConnectionStatus) MarshalTo added in v0.27.0

func (m *ClusterConnectionStatus) MarshalTo(dAtA []byte) (int, error)

func (*ClusterConnectionStatus) MarshalToSizedBuffer added in v0.27.0

func (m *ClusterConnectionStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ClusterConnectionStatus) ProtoMessage added in v0.27.0

func (*ClusterConnectionStatus) ProtoMessage()

func (*ClusterConnectionStatus) Reset added in v0.27.0

func (m *ClusterConnectionStatus) Reset()

func (*ClusterConnectionStatus) Size added in v0.27.0

func (m *ClusterConnectionStatus) Size() (n int)

func (*ClusterConnectionStatus) String added in v0.27.0

func (this *ClusterConnectionStatus) String() string

func (*ClusterConnectionStatus) Unmarshal added in v0.27.0

func (m *ClusterConnectionStatus) Unmarshal(dAtA []byte) error

func (*ClusterConnectionStatus) XXX_DiscardUnknown added in v0.27.0

func (m *ClusterConnectionStatus) XXX_DiscardUnknown()

func (*ClusterConnectionStatus) XXX_Marshal added in v0.27.0

func (m *ClusterConnectionStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ClusterConnectionStatus) XXX_Merge added in v0.27.0

func (m *ClusterConnectionStatus) XXX_Merge(src proto.Message)

func (*ClusterConnectionStatus) XXX_Size added in v0.27.0

func (m *ClusterConnectionStatus) XXX_Size() int

func (*ClusterConnectionStatus) XXX_Unmarshal added in v0.27.0

func (m *ClusterConnectionStatus) XXX_Unmarshal(b []byte) error

type ClusterImageNeeds added in v0.27.1

type ClusterImageNeeds string

ClusterImageNeeds describes the ways that a cluster might need to access an image.

Defaults to "push".

const (
	// Make sure the image is pushed to the right registry
	// and accessible in the cluster.
	ClusterImageNeedsPush ClusterImageNeeds = "push"

	// The image is only needed as a base image for other
	// images that are needed in the cluster, so doesn't need to be pushed.
	ClusterImageNeedsBase ClusterImageNeeds = "base-image"
)

type ClusterList added in v0.23.3

type ClusterList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Items []Cluster `json:"items" protobuf:"bytes,2,rep,name=items"`
}

ClusterList +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*ClusterList) DeepCopy added in v0.23.3

func (in *ClusterList) DeepCopy() *ClusterList

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

func (*ClusterList) DeepCopyInto added in v0.23.3

func (in *ClusterList) DeepCopyInto(out *ClusterList)

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

func (*ClusterList) DeepCopyObject added in v0.23.3

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

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

func (*ClusterList) Descriptor added in v0.23.3

func (*ClusterList) Descriptor() ([]byte, []int)

func (*ClusterList) GetListMeta added in v0.23.3

func (in *ClusterList) GetListMeta() *metav1.ListMeta

func (*ClusterList) Marshal added in v0.23.3

func (m *ClusterList) Marshal() (dAtA []byte, err error)

func (*ClusterList) MarshalTo added in v0.23.3

func (m *ClusterList) MarshalTo(dAtA []byte) (int, error)

func (*ClusterList) MarshalToSizedBuffer added in v0.23.3

func (m *ClusterList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ClusterList) ProtoMessage added in v0.23.3

func (*ClusterList) ProtoMessage()

func (*ClusterList) Reset added in v0.23.3

func (m *ClusterList) Reset()

func (*ClusterList) Size added in v0.23.3

func (m *ClusterList) Size() (n int)

func (*ClusterList) String added in v0.23.3

func (this *ClusterList) String() string

func (*ClusterList) Unmarshal added in v0.23.3

func (m *ClusterList) Unmarshal(dAtA []byte) error

func (*ClusterList) XXX_DiscardUnknown added in v0.23.3

func (m *ClusterList) XXX_DiscardUnknown()

func (*ClusterList) XXX_Marshal added in v0.23.3

func (m *ClusterList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ClusterList) XXX_Merge added in v0.23.3

func (m *ClusterList) XXX_Merge(src proto.Message)

func (*ClusterList) XXX_Size added in v0.23.3

func (m *ClusterList) XXX_Size() int

func (*ClusterList) XXX_Unmarshal added in v0.23.3

func (m *ClusterList) XXX_Unmarshal(b []byte) error

type ClusterSpec added in v0.23.3

type ClusterSpec struct {
	// Connection spec for an existing cluster.
	Connection *ClusterConnection `json:"connection,omitempty" protobuf:"bytes,1,opt,name=connection"`

	// DefaultRegistry determines where images for this Cluster should
	// be pushed/pulled from if the Cluster itself does not provide local
	// registry hosting metadata.
	//
	// If not specified, no registry rewriting will occur, and the images will
	// be pushed/pulled to from the registry specified by the corresponding
	// image build directive (e.g. `docker_build` or `custom_build`).
	//
	// +optional
	DefaultRegistry *RegistryHosting `json:"defaultRegistry,omitempty" protobuf:"bytes,2,opt,name=defaultRegistry"`
}

ClusterSpec defines how to find the cluster we're running containers on.

Tilt currently supports connecting to an existing Kubernetes cluster or an existing Docker Daemon (for Docker Compose).

func (*ClusterSpec) DeepCopy added in v0.23.3

func (in *ClusterSpec) DeepCopy() *ClusterSpec

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

func (*ClusterSpec) DeepCopyInto added in v0.23.3

func (in *ClusterSpec) DeepCopyInto(out *ClusterSpec)

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

func (*ClusterSpec) Descriptor added in v0.23.3

func (*ClusterSpec) Descriptor() ([]byte, []int)

func (*ClusterSpec) Marshal added in v0.23.3

func (m *ClusterSpec) Marshal() (dAtA []byte, err error)

func (*ClusterSpec) MarshalTo added in v0.23.3

func (m *ClusterSpec) MarshalTo(dAtA []byte) (int, error)

func (*ClusterSpec) MarshalToSizedBuffer added in v0.23.3

func (m *ClusterSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ClusterSpec) ProtoMessage added in v0.23.3

func (*ClusterSpec) ProtoMessage()

func (*ClusterSpec) Reset added in v0.23.3

func (m *ClusterSpec) Reset()

func (*ClusterSpec) Size added in v0.23.3

func (m *ClusterSpec) Size() (n int)

func (*ClusterSpec) String added in v0.23.3

func (this *ClusterSpec) String() string

func (*ClusterSpec) Unmarshal added in v0.23.3

func (m *ClusterSpec) Unmarshal(dAtA []byte) error

func (*ClusterSpec) XXX_DiscardUnknown added in v0.23.3

func (m *ClusterSpec) XXX_DiscardUnknown()

func (*ClusterSpec) XXX_Marshal added in v0.23.3

func (m *ClusterSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ClusterSpec) XXX_Merge added in v0.23.3

func (m *ClusterSpec) XXX_Merge(src proto.Message)

func (*ClusterSpec) XXX_Size added in v0.23.3

func (m *ClusterSpec) XXX_Size() int

func (*ClusterSpec) XXX_Unmarshal added in v0.23.3

func (m *ClusterSpec) XXX_Unmarshal(b []byte) error

type ClusterStatus added in v0.23.3

type ClusterStatus struct {
	// The preferred chip architecture of the cluster.
	//
	// On Kubernetes, this will correspond to the kubernetes.io/arch annotation on
	// a node.
	//
	// On Docker, this will be the Architecture of the Docker daemon.
	//
	// Note that many clusters support multiple chipsets. This field doesn't intend
	// that this is the only architecture a cluster supports, only that it's one
	// of the architectures.
	Arch string `json:"arch,omitempty" protobuf:"bytes,1,opt,name=arch"`

	// An unrecoverable error connecting to the cluster.
	//
	// +optional
	Error string `json:"error,omitempty" protobuf:"bytes,2,opt,name=error"`

	// ConnectedAt indicates the time at which the cluster connection was established.
	//
	// Consumers can use this to detect when the underlying config has changed
	// and refresh their client/connection accordingly.
	//
	// +optional
	ConnectedAt *metav1.MicroTime `json:"connectedAt,omitempty" protobuf:"bytes,3,opt,name=connectedAt"`

	// Registry describes a local registry that developer tools can
	// connect to. A local registry allows clients to load images into the local
	// cluster by pushing to this registry.
	//
	// +optional
	Registry *RegistryHosting `json:"registry,omitempty" protobuf:"bytes,4,opt,name=registry"`

	// Connection status for an existing cluster.
	//
	// +optional
	Connection *ClusterConnectionStatus `json:"connection,omitempty" protobuf:"bytes,5,opt,name=connection"`

	// Version is a cluster-provided, human-readable version string.
	//
	// +optional
	Version string `json:"version,omitempty" protobuf:"bytes,6,opt,name=version"`
}

ClusterStatus defines the observed state of Cluster

func (ClusterStatus) CopyTo added in v0.23.3

func (*ClusterStatus) DeepCopy added in v0.23.3

func (in *ClusterStatus) DeepCopy() *ClusterStatus

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

func (*ClusterStatus) DeepCopyInto added in v0.23.3

func (in *ClusterStatus) DeepCopyInto(out *ClusterStatus)

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

func (*ClusterStatus) Descriptor added in v0.23.3

func (*ClusterStatus) Descriptor() ([]byte, []int)

func (*ClusterStatus) Marshal added in v0.23.3

func (m *ClusterStatus) Marshal() (dAtA []byte, err error)

func (*ClusterStatus) MarshalTo added in v0.23.3

func (m *ClusterStatus) MarshalTo(dAtA []byte) (int, error)

func (*ClusterStatus) MarshalToSizedBuffer added in v0.23.3

func (m *ClusterStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ClusterStatus) ProtoMessage added in v0.23.3

func (*ClusterStatus) ProtoMessage()

func (*ClusterStatus) Reset added in v0.23.3

func (m *ClusterStatus) Reset()

func (*ClusterStatus) Size added in v0.23.3

func (m *ClusterStatus) Size() (n int)

func (*ClusterStatus) String added in v0.23.3

func (this *ClusterStatus) String() string

func (*ClusterStatus) Unmarshal added in v0.23.3

func (m *ClusterStatus) Unmarshal(dAtA []byte) error

func (*ClusterStatus) XXX_DiscardUnknown added in v0.23.3

func (m *ClusterStatus) XXX_DiscardUnknown()

func (*ClusterStatus) XXX_Marshal added in v0.23.3

func (m *ClusterStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ClusterStatus) XXX_Merge added in v0.23.3

func (m *ClusterStatus) XXX_Merge(src proto.Message)

func (*ClusterStatus) XXX_Size added in v0.23.3

func (m *ClusterStatus) XXX_Size() int

func (*ClusterStatus) XXX_Unmarshal added in v0.23.3

func (m *ClusterStatus) XXX_Unmarshal(b []byte) error

type Cmd added in v0.18.11

type Cmd struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Spec   CmdSpec   `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
	Status CmdStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
}

Cmd represents a process on the host machine.

When the process exits, we will make a best-effort attempt (within OS limitations) to kill any spawned descendant processes.

+k8s:openapi-gen=true +tilt:starlark-gen=true

func (*Cmd) DeepCopy added in v0.18.11

func (in *Cmd) DeepCopy() *Cmd

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

func (*Cmd) DeepCopyInto added in v0.18.11

func (in *Cmd) DeepCopyInto(out *Cmd)

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

func (*Cmd) DeepCopyObject added in v0.18.11

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

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

func (*Cmd) Descriptor added in v0.20.0

func (*Cmd) Descriptor() ([]byte, []int)

func (*Cmd) GetGroupVersionResource added in v0.18.11

func (in *Cmd) GetGroupVersionResource() schema.GroupVersionResource

func (*Cmd) GetObjectMeta added in v0.18.11

func (in *Cmd) GetObjectMeta() *metav1.ObjectMeta

func (*Cmd) GetSingularName added in v0.33.0

func (in *Cmd) GetSingularName() string

func (*Cmd) GetSpec added in v0.21.1

func (in *Cmd) GetSpec() interface{}

func (*Cmd) GetStatus added in v0.18.11

func (in *Cmd) GetStatus() resource.StatusSubResource

func (*Cmd) IsStorageVersion added in v0.18.11

func (in *Cmd) IsStorageVersion() bool

func (*Cmd) Marshal added in v0.20.0

func (m *Cmd) Marshal() (dAtA []byte, err error)

func (*Cmd) MarshalTo added in v0.20.0

func (m *Cmd) MarshalTo(dAtA []byte) (int, error)

func (*Cmd) MarshalToSizedBuffer added in v0.20.0

func (m *Cmd) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Cmd) NamespaceScoped added in v0.18.11

func (in *Cmd) NamespaceScoped() bool

func (*Cmd) New added in v0.18.11

func (in *Cmd) New() runtime.Object

func (*Cmd) NewList added in v0.18.11

func (in *Cmd) NewList() runtime.Object

func (*Cmd) ProtoMessage added in v0.20.0

func (*Cmd) ProtoMessage()

func (*Cmd) Reset added in v0.20.0

func (m *Cmd) Reset()

func (*Cmd) Size added in v0.20.0

func (m *Cmd) Size() (n int)

func (*Cmd) String added in v0.20.0

func (this *Cmd) String() string

func (*Cmd) Unmarshal added in v0.20.0

func (m *Cmd) Unmarshal(dAtA []byte) error

func (*Cmd) Validate added in v0.18.11

func (in *Cmd) Validate(ctx context.Context) field.ErrorList

func (*Cmd) XXX_DiscardUnknown added in v0.20.0

func (m *Cmd) XXX_DiscardUnknown()

func (*Cmd) XXX_Marshal added in v0.20.0

func (m *Cmd) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Cmd) XXX_Merge added in v0.20.0

func (m *Cmd) XXX_Merge(src proto.Message)

func (*Cmd) XXX_Size added in v0.20.0

func (m *Cmd) XXX_Size() int

func (*Cmd) XXX_Unmarshal added in v0.20.0

func (m *Cmd) XXX_Unmarshal(b []byte) error

type CmdImage added in v0.23.5

type CmdImage struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Spec   CmdImageSpec   `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
	Status CmdImageStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
}

CmdImage describes an image to build with an arbitrary shell command. +k8s:openapi-gen=true

func (*CmdImage) DeepCopy added in v0.23.5

func (in *CmdImage) DeepCopy() *CmdImage

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

func (*CmdImage) DeepCopyInto added in v0.23.5

func (in *CmdImage) DeepCopyInto(out *CmdImage)

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

func (*CmdImage) DeepCopyObject added in v0.23.5

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

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

func (*CmdImage) Descriptor added in v0.23.5

func (*CmdImage) Descriptor() ([]byte, []int)

func (*CmdImage) GetGroupVersionResource added in v0.23.5

func (in *CmdImage) GetGroupVersionResource() schema.GroupVersionResource

func (*CmdImage) GetObjectMeta added in v0.23.5

func (in *CmdImage) GetObjectMeta() *metav1.ObjectMeta

func (*CmdImage) GetSingularName added in v0.33.0

func (in *CmdImage) GetSingularName() string

func (*CmdImage) GetSpec added in v0.23.5

func (in *CmdImage) GetSpec() interface{}

func (*CmdImage) GetStatus added in v0.23.5

func (in *CmdImage) GetStatus() resource.StatusSubResource

func (*CmdImage) IsStorageVersion added in v0.23.5

func (in *CmdImage) IsStorageVersion() bool

func (*CmdImage) Marshal added in v0.23.5

func (m *CmdImage) Marshal() (dAtA []byte, err error)

func (*CmdImage) MarshalTo added in v0.23.5

func (m *CmdImage) MarshalTo(dAtA []byte) (int, error)

func (*CmdImage) MarshalToSizedBuffer added in v0.23.5

func (m *CmdImage) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CmdImage) NamespaceScoped added in v0.23.5

func (in *CmdImage) NamespaceScoped() bool

func (*CmdImage) New added in v0.23.5

func (in *CmdImage) New() runtime.Object

func (*CmdImage) NewList added in v0.23.5

func (in *CmdImage) NewList() runtime.Object

func (*CmdImage) ProtoMessage added in v0.23.5

func (*CmdImage) ProtoMessage()

func (*CmdImage) Reset added in v0.23.5

func (m *CmdImage) Reset()

func (*CmdImage) Size added in v0.23.5

func (m *CmdImage) Size() (n int)

func (*CmdImage) String added in v0.23.5

func (this *CmdImage) String() string

func (*CmdImage) Unmarshal added in v0.23.5

func (m *CmdImage) Unmarshal(dAtA []byte) error

func (*CmdImage) Validate added in v0.23.5

func (in *CmdImage) Validate(ctx context.Context) field.ErrorList

func (*CmdImage) XXX_DiscardUnknown added in v0.23.5

func (m *CmdImage) XXX_DiscardUnknown()

func (*CmdImage) XXX_Marshal added in v0.23.5

func (m *CmdImage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CmdImage) XXX_Merge added in v0.23.5

func (m *CmdImage) XXX_Merge(src proto.Message)

func (*CmdImage) XXX_Size added in v0.23.5

func (m *CmdImage) XXX_Size() int

func (*CmdImage) XXX_Unmarshal added in v0.23.5

func (m *CmdImage) XXX_Unmarshal(b []byte) error

type CmdImageList added in v0.23.5

type CmdImageList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Items []CmdImage `json:"items" protobuf:"bytes,2,rep,name=items"`
}

CmdImageList +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*CmdImageList) DeepCopy added in v0.23.5

func (in *CmdImageList) DeepCopy() *CmdImageList

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

func (*CmdImageList) DeepCopyInto added in v0.23.5

func (in *CmdImageList) DeepCopyInto(out *CmdImageList)

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

func (*CmdImageList) DeepCopyObject added in v0.23.5

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

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

func (*CmdImageList) Descriptor added in v0.23.5

func (*CmdImageList) Descriptor() ([]byte, []int)

func (*CmdImageList) GetListMeta added in v0.23.5

func (in *CmdImageList) GetListMeta() *metav1.ListMeta

func (*CmdImageList) Marshal added in v0.23.5

func (m *CmdImageList) Marshal() (dAtA []byte, err error)

func (*CmdImageList) MarshalTo added in v0.23.5

func (m *CmdImageList) MarshalTo(dAtA []byte) (int, error)

func (*CmdImageList) MarshalToSizedBuffer added in v0.23.5

func (m *CmdImageList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CmdImageList) ProtoMessage added in v0.23.5

func (*CmdImageList) ProtoMessage()

func (*CmdImageList) Reset added in v0.23.5

func (m *CmdImageList) Reset()

func (*CmdImageList) Size added in v0.23.5

func (m *CmdImageList) Size() (n int)

func (*CmdImageList) String added in v0.23.5

func (this *CmdImageList) String() string

func (*CmdImageList) Unmarshal added in v0.23.5

func (m *CmdImageList) Unmarshal(dAtA []byte) error

func (*CmdImageList) XXX_DiscardUnknown added in v0.23.5

func (m *CmdImageList) XXX_DiscardUnknown()

func (*CmdImageList) XXX_Marshal added in v0.23.5

func (m *CmdImageList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CmdImageList) XXX_Merge added in v0.23.5

func (m *CmdImageList) XXX_Merge(src proto.Message)

func (*CmdImageList) XXX_Size added in v0.23.5

func (m *CmdImageList) XXX_Size() int

func (*CmdImageList) XXX_Unmarshal added in v0.23.5

func (m *CmdImageList) XXX_Unmarshal(b []byte) error

type CmdImageOutputMode added in v0.23.5

type CmdImageOutputMode string

CmdImageOutputMode describes places where the image may be written.

const (
	// Written to the Docker image store only.
	CmdImageOutputLocalDocker CmdImageOutputMode = "local-docker"

	// Written to the Docker image store and pushed to the remote
	// destination.
	CmdImageOutputLocalDockerAndRemote CmdImageOutputMode = "local-docker-and-remote"

	// Written directly to the remote destination.
	CmdImageOutputRemote CmdImageOutputMode = "remote"
)

type CmdImageSpec added in v0.23.5

type CmdImageSpec struct {
	// The named reference of the image.
	Ref string `json:"ref" protobuf:"bytes,7,opt,name=ref"`

	// Command-line arguments. Must have length at least 1.
	Args []string `json:"args,omitempty" protobuf:"bytes,1,rep,name=args"`

	// Process working directory.
	//
	// If the working directory is not specified, the command is run
	// in the default Tilt working directory.
	//
	// +optional
	// +tilt:local-path=true
	Dir string `json:"dir,omitempty" protobuf:"bytes,2,opt,name=dir"`

	// Additional environment variables for the build process.
	//
	// Expressed as a C-style array of strings of the form ["KEY1=VALUE1", "KEY2=VALUE2", ...].
	//
	// Environment variables are layered on top of the environment variables
	// that Tilt runs with.
	//
	// +optional
	Env []string `json:"env,omitempty" protobuf:"bytes,10,rep,name=env"`

	// Names of image maps that this build depends on.
	//
	// The controller will watch all the image maps, and rebuild the image
	// if any of the maps resolve to a new image.
	//
	// +optional
	ImageMaps []string `json:"imageMaps,omitempty" protobuf:"bytes,3,rep,name=imageMaps"`

	// Specifies where the image is built. If not specified, we assume the image
	// was built to the local Docker image store.
	OutputMode CmdImageOutputMode `json:"outputMode,omitempty" protobuf:"bytes,4,opt,name=outputMode,casttype=CmdImageOutputMode"`

	// Tag we expect the image to be built with (we use this to check that
	// the expected image+tag has been created).
	//
	// If empty, we create an expected tag at the beginning of CustomBuild (and
	// export $EXPECTED_REF=name:expected_tag )
	//
	// +optional
	OutputTag string `json:"outputTag,omitempty" protobuf:"bytes,5,opt,name=outputTag"`

	// Specifies a filepath where the cmd script prints the result image ref.
	//
	// Tilt will read it out when we're done to find the image.
	//
	// +optional
	// +tilt:local-path=true
	OutputsImageRefTo string `json:"outputsImageRefTo,omitempty" protobuf:"bytes,6,opt,name=outputsImageRefTo"`

	// The name of the cluster we're building for.
	//
	// We'll use the cluster to determine the architecture of the image to build,
	// and the registry to build it for.
	//
	// If no cluster is specified, assumes the default cluster.
	//
	// +optional
	Cluster string `json:"cluster,omitempty" protobuf:"bytes,8,opt,name=cluster"`

	// Whether the cluster needs access to the image.
	//
	// If not specified, assumes we have to push up to the cluster.
	//
	// +optional
	ClusterNeeds ClusterImageNeeds `json:"clusterNeeds,omitempty" protobuf:"bytes,9,opt,name=clusterNeeds,casttype=ClusterImageNeeds"`
}

CmdImageSpec describes how the custom script builds images and where it puts them.

func (*CmdImageSpec) DeepCopy added in v0.23.5

func (in *CmdImageSpec) DeepCopy() *CmdImageSpec

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

func (*CmdImageSpec) DeepCopyInto added in v0.23.5

func (in *CmdImageSpec) DeepCopyInto(out *CmdImageSpec)

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

func (*CmdImageSpec) Descriptor added in v0.23.5

func (*CmdImageSpec) Descriptor() ([]byte, []int)

func (*CmdImageSpec) Marshal added in v0.23.5

func (m *CmdImageSpec) Marshal() (dAtA []byte, err error)

func (*CmdImageSpec) MarshalTo added in v0.23.5

func (m *CmdImageSpec) MarshalTo(dAtA []byte) (int, error)

func (*CmdImageSpec) MarshalToSizedBuffer added in v0.23.5

func (m *CmdImageSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CmdImageSpec) ProtoMessage added in v0.23.5

func (*CmdImageSpec) ProtoMessage()

func (*CmdImageSpec) Reset added in v0.23.5

func (m *CmdImageSpec) Reset()

func (*CmdImageSpec) Size added in v0.23.5

func (m *CmdImageSpec) Size() (n int)

func (*CmdImageSpec) String added in v0.23.5

func (this *CmdImageSpec) String() string

func (*CmdImageSpec) Unmarshal added in v0.23.5

func (m *CmdImageSpec) Unmarshal(dAtA []byte) error

func (*CmdImageSpec) XXX_DiscardUnknown added in v0.23.5

func (m *CmdImageSpec) XXX_DiscardUnknown()

func (*CmdImageSpec) XXX_Marshal added in v0.23.5

func (m *CmdImageSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CmdImageSpec) XXX_Merge added in v0.23.5

func (m *CmdImageSpec) XXX_Merge(src proto.Message)

func (*CmdImageSpec) XXX_Size added in v0.23.5

func (m *CmdImageSpec) XXX_Size() int

func (*CmdImageSpec) XXX_Unmarshal added in v0.23.5

func (m *CmdImageSpec) XXX_Unmarshal(b []byte) error

type CmdImageStateBuilding added in v0.23.5

type CmdImageStateBuilding struct {
	// The reason why the image is building.
	// +optional
	Reason string `json:"reason,omitempty" protobuf:"bytes,1,opt,name=reason"`

	// Time when the build started.
	StartedAt metav1.MicroTime `json:"startedAt,omitempty" protobuf:"bytes,2,opt,name=startedAt"`
}

CmdImageStateBuilding expresses that an image build is in-progress.

func (*CmdImageStateBuilding) DeepCopy added in v0.23.5

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

func (*CmdImageStateBuilding) DeepCopyInto added in v0.23.5

func (in *CmdImageStateBuilding) DeepCopyInto(out *CmdImageStateBuilding)

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

func (*CmdImageStateBuilding) Descriptor added in v0.23.5

func (*CmdImageStateBuilding) Descriptor() ([]byte, []int)

func (*CmdImageStateBuilding) Marshal added in v0.23.5

func (m *CmdImageStateBuilding) Marshal() (dAtA []byte, err error)

func (*CmdImageStateBuilding) MarshalTo added in v0.23.5

func (m *CmdImageStateBuilding) MarshalTo(dAtA []byte) (int, error)

func (*CmdImageStateBuilding) MarshalToSizedBuffer added in v0.23.5

func (m *CmdImageStateBuilding) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CmdImageStateBuilding) ProtoMessage added in v0.23.5

func (*CmdImageStateBuilding) ProtoMessage()

func (*CmdImageStateBuilding) Reset added in v0.23.5

func (m *CmdImageStateBuilding) Reset()

func (*CmdImageStateBuilding) Size added in v0.23.5

func (m *CmdImageStateBuilding) Size() (n int)

func (*CmdImageStateBuilding) String added in v0.23.5

func (this *CmdImageStateBuilding) String() string

func (*CmdImageStateBuilding) Unmarshal added in v0.23.5

func (m *CmdImageStateBuilding) Unmarshal(dAtA []byte) error

func (*CmdImageStateBuilding) XXX_DiscardUnknown added in v0.23.5

func (m *CmdImageStateBuilding) XXX_DiscardUnknown()

func (*CmdImageStateBuilding) XXX_Marshal added in v0.23.5

func (m *CmdImageStateBuilding) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CmdImageStateBuilding) XXX_Merge added in v0.23.5

func (m *CmdImageStateBuilding) XXX_Merge(src proto.Message)

func (*CmdImageStateBuilding) XXX_Size added in v0.23.5

func (m *CmdImageStateBuilding) XXX_Size() int

func (*CmdImageStateBuilding) XXX_Unmarshal added in v0.23.5

func (m *CmdImageStateBuilding) XXX_Unmarshal(b []byte) error

type CmdImageStateCompleted added in v0.23.5

type CmdImageStateCompleted struct {
	// The reason why the image was built.
	// +optional
	Reason string `json:"reason,omitempty" protobuf:"bytes,1,opt,name=reason"`

	// Error message if the build failed.
	// +optional
	Error string `json:"error,omitempty" protobuf:"bytes,2,opt,name=error"`

	// Time when we started building an image.
	StartedAt metav1.MicroTime `json:"startedAt,omitempty" protobuf:"bytes,3,opt,name=startedAt"`

	// Time when we finished building an image
	FinishedAt metav1.MicroTime `json:"finishedAt,omitempty" protobuf:"bytes,4,opt,name=finishedAt"`
}

CmdImageStateCompleted expresses when the image build is finished and no new images need to be built.

func (*CmdImageStateCompleted) DeepCopy added in v0.23.5

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

func (*CmdImageStateCompleted) DeepCopyInto added in v0.23.5

func (in *CmdImageStateCompleted) DeepCopyInto(out *CmdImageStateCompleted)

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

func (*CmdImageStateCompleted) Descriptor added in v0.23.5

func (*CmdImageStateCompleted) Descriptor() ([]byte, []int)

func (*CmdImageStateCompleted) Marshal added in v0.23.5

func (m *CmdImageStateCompleted) Marshal() (dAtA []byte, err error)

func (*CmdImageStateCompleted) MarshalTo added in v0.23.5

func (m *CmdImageStateCompleted) MarshalTo(dAtA []byte) (int, error)

func (*CmdImageStateCompleted) MarshalToSizedBuffer added in v0.23.5

func (m *CmdImageStateCompleted) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CmdImageStateCompleted) ProtoMessage added in v0.23.5

func (*CmdImageStateCompleted) ProtoMessage()

func (*CmdImageStateCompleted) Reset added in v0.23.5

func (m *CmdImageStateCompleted) Reset()

func (*CmdImageStateCompleted) Size added in v0.23.5

func (m *CmdImageStateCompleted) Size() (n int)

func (*CmdImageStateCompleted) String added in v0.23.5

func (this *CmdImageStateCompleted) String() string

func (*CmdImageStateCompleted) Unmarshal added in v0.23.5

func (m *CmdImageStateCompleted) Unmarshal(dAtA []byte) error

func (*CmdImageStateCompleted) XXX_DiscardUnknown added in v0.23.5

func (m *CmdImageStateCompleted) XXX_DiscardUnknown()

func (*CmdImageStateCompleted) XXX_Marshal added in v0.23.5

func (m *CmdImageStateCompleted) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CmdImageStateCompleted) XXX_Merge added in v0.23.5

func (m *CmdImageStateCompleted) XXX_Merge(src proto.Message)

func (*CmdImageStateCompleted) XXX_Size added in v0.23.5

func (m *CmdImageStateCompleted) XXX_Size() int

func (*CmdImageStateCompleted) XXX_Unmarshal added in v0.23.5

func (m *CmdImageStateCompleted) XXX_Unmarshal(b []byte) error

type CmdImageStateWaiting added in v0.23.5

type CmdImageStateWaiting struct {
	// (brief) reason the image build is waiting.
	// +optional
	Reason string `json:"reason,omitempty" protobuf:"bytes,1,opt,name=reason"`
}

CmdImageStateWaiting expresses what we're waiting on to build an image.

func (*CmdImageStateWaiting) DeepCopy added in v0.23.5

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

func (*CmdImageStateWaiting) DeepCopyInto added in v0.23.5

func (in *CmdImageStateWaiting) DeepCopyInto(out *CmdImageStateWaiting)

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

func (*CmdImageStateWaiting) Descriptor added in v0.23.5

func (*CmdImageStateWaiting) Descriptor() ([]byte, []int)

func (*CmdImageStateWaiting) Marshal added in v0.23.5

func (m *CmdImageStateWaiting) Marshal() (dAtA []byte, err error)

func (*CmdImageStateWaiting) MarshalTo added in v0.23.5

func (m *CmdImageStateWaiting) MarshalTo(dAtA []byte) (int, error)

func (*CmdImageStateWaiting) MarshalToSizedBuffer added in v0.23.5

func (m *CmdImageStateWaiting) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CmdImageStateWaiting) ProtoMessage added in v0.23.5

func (*CmdImageStateWaiting) ProtoMessage()

func (*CmdImageStateWaiting) Reset added in v0.23.5

func (m *CmdImageStateWaiting) Reset()

func (*CmdImageStateWaiting) Size added in v0.23.5

func (m *CmdImageStateWaiting) Size() (n int)

func (*CmdImageStateWaiting) String added in v0.23.5

func (this *CmdImageStateWaiting) String() string

func (*CmdImageStateWaiting) Unmarshal added in v0.23.5

func (m *CmdImageStateWaiting) Unmarshal(dAtA []byte) error

func (*CmdImageStateWaiting) XXX_DiscardUnknown added in v0.23.5

func (m *CmdImageStateWaiting) XXX_DiscardUnknown()

func (*CmdImageStateWaiting) XXX_Marshal added in v0.23.5

func (m *CmdImageStateWaiting) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CmdImageStateWaiting) XXX_Merge added in v0.23.5

func (m *CmdImageStateWaiting) XXX_Merge(src proto.Message)

func (*CmdImageStateWaiting) XXX_Size added in v0.23.5

func (m *CmdImageStateWaiting) XXX_Size() int

func (*CmdImageStateWaiting) XXX_Unmarshal added in v0.23.5

func (m *CmdImageStateWaiting) XXX_Unmarshal(b []byte) error

type CmdImageStatus added in v0.23.5

type CmdImageStatus struct {
	// A fully-qualified image reference of a built image, as seen from the local
	// network.
	//
	// Usually includes a name and an immutable tag.
	//
	// NB: If we're building to a particular registry, this may
	// have a different hostname from the Spec `Ref` field.
	//
	// +optional
	Ref string `json:"ref,omitempty" protobuf:"bytes,1,opt,name=ref"`

	// Details about a waiting image build.
	// +optional
	Waiting *CmdImageStateWaiting `json:"waiting,omitempty" protobuf:"bytes,2,opt,name=waiting"`

	// Details about a building image.
	// +optional
	Building *CmdImageStateBuilding `json:"building,omitempty" protobuf:"bytes,3,opt,name=building"`

	// Details about a finished image build.
	// +optional
	Completed *CmdImageStateCompleted `json:"completed,omitempty" protobuf:"bytes,4,opt,name=completed"`
}

CmdImageStatus describes the result of the image build.

func (CmdImageStatus) CopyTo added in v0.23.5

func (*CmdImageStatus) DeepCopy added in v0.23.5

func (in *CmdImageStatus) DeepCopy() *CmdImageStatus

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

func (*CmdImageStatus) DeepCopyInto added in v0.23.5

func (in *CmdImageStatus) DeepCopyInto(out *CmdImageStatus)

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

func (*CmdImageStatus) Descriptor added in v0.23.5

func (*CmdImageStatus) Descriptor() ([]byte, []int)

func (*CmdImageStatus) Marshal added in v0.23.5

func (m *CmdImageStatus) Marshal() (dAtA []byte, err error)

func (*CmdImageStatus) MarshalTo added in v0.23.5

func (m *CmdImageStatus) MarshalTo(dAtA []byte) (int, error)

func (*CmdImageStatus) MarshalToSizedBuffer added in v0.23.5

func (m *CmdImageStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CmdImageStatus) ProtoMessage added in v0.23.5

func (*CmdImageStatus) ProtoMessage()

func (*CmdImageStatus) Reset added in v0.23.5

func (m *CmdImageStatus) Reset()

func (*CmdImageStatus) Size added in v0.23.5

func (m *CmdImageStatus) Size() (n int)

func (*CmdImageStatus) String added in v0.23.5

func (this *CmdImageStatus) String() string

func (*CmdImageStatus) Unmarshal added in v0.23.5

func (m *CmdImageStatus) Unmarshal(dAtA []byte) error

func (*CmdImageStatus) XXX_DiscardUnknown added in v0.23.5

func (m *CmdImageStatus) XXX_DiscardUnknown()

func (*CmdImageStatus) XXX_Marshal added in v0.23.5

func (m *CmdImageStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CmdImageStatus) XXX_Merge added in v0.23.5

func (m *CmdImageStatus) XXX_Merge(src proto.Message)

func (*CmdImageStatus) XXX_Size added in v0.23.5

func (m *CmdImageStatus) XXX_Size() int

func (*CmdImageStatus) XXX_Unmarshal added in v0.23.5

func (m *CmdImageStatus) XXX_Unmarshal(b []byte) error

type CmdList added in v0.18.11

type CmdList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Items []Cmd `json:"items" protobuf:"bytes,2,rep,name=items"`
}

CmdList +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*CmdList) DeepCopy added in v0.18.11

func (in *CmdList) DeepCopy() *CmdList

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

func (*CmdList) DeepCopyInto added in v0.18.11

func (in *CmdList) DeepCopyInto(out *CmdList)

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

func (*CmdList) DeepCopyObject added in v0.18.11

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

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

func (*CmdList) Descriptor added in v0.20.0

func (*CmdList) Descriptor() ([]byte, []int)

func (*CmdList) GetListMeta added in v0.18.11

func (in *CmdList) GetListMeta() *metav1.ListMeta

func (*CmdList) Marshal added in v0.20.0

func (m *CmdList) Marshal() (dAtA []byte, err error)

func (*CmdList) MarshalTo added in v0.20.0

func (m *CmdList) MarshalTo(dAtA []byte) (int, error)

func (*CmdList) MarshalToSizedBuffer added in v0.20.0

func (m *CmdList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CmdList) ProtoMessage added in v0.20.0

func (*CmdList) ProtoMessage()

func (*CmdList) Reset added in v0.20.0

func (m *CmdList) Reset()

func (*CmdList) Size added in v0.20.0

func (m *CmdList) Size() (n int)

func (*CmdList) String added in v0.20.0

func (this *CmdList) String() string

func (*CmdList) Unmarshal added in v0.20.0

func (m *CmdList) Unmarshal(dAtA []byte) error

func (*CmdList) XXX_DiscardUnknown added in v0.20.0

func (m *CmdList) XXX_DiscardUnknown()

func (*CmdList) XXX_Marshal added in v0.20.0

func (m *CmdList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CmdList) XXX_Merge added in v0.20.0

func (m *CmdList) XXX_Merge(src proto.Message)

func (*CmdList) XXX_Size added in v0.20.0

func (m *CmdList) XXX_Size() int

func (*CmdList) XXX_Unmarshal added in v0.20.0

func (m *CmdList) XXX_Unmarshal(b []byte) error

type CmdSpec added in v0.18.11

type CmdSpec struct {
	// Command-line arguments. Must have length at least 1.
	Args []string `json:"args,omitempty" protobuf:"bytes,1,rep,name=args"`

	// Process working directory.
	//
	// If the working directory is not specified, the command is run
	// in the default Tilt working directory.
	//
	// +optional
	// +tilt:local-path=true
	Dir string `json:"dir,omitempty" protobuf:"bytes,2,opt,name=dir"`

	// Additional variables process environment.
	//
	// Expressed as a C-style array of strings of the form ["KEY1=VALUE1", "KEY2=VALUE2", ...].
	//
	// Environment variables are layered on top of the environment variables
	// that Tilt runs with.
	//
	// +optional
	Env []string `json:"env,omitempty" protobuf:"bytes,3,rep,name=env"`

	// Periodic probe of service readiness.
	//
	// +optional
	ReadinessProbe *Probe `json:"readinessProbe,omitempty" protobuf:"bytes,4,opt,name=readinessProbe"`

	// Indicates objects that can trigger a restart of this command.
	//
	// When a restart is triggered, Tilt will try to gracefully shutdown any
	// currently running process, waiting for it to exit before starting a new
	// process. If the process doesn't shutdown within the allotted time, Tilt
	// will kill the process abruptly.
	//
	// Restarts can happen even if the command is already done.
	//
	// Logs of the current process after the restart are discarded.
	RestartOn *RestartOnSpec `json:"restartOn,omitempty" protobuf:"bytes,5,opt,name=restartOn"`

	// Indicates objects that can trigger a start/restart of this command.
	//
	// Restarts behave the same as RestartOn. The key difference is that
	// a Cmd with any StartOn triggers will not have its command run until its
	// StartOn is satisfied.
	StartOn *StartOnSpec `json:"startOn,omitempty" protobuf:"bytes,6,opt,name=startOn"`

	// Specifies how to disable this.
	//
	// +optional
	DisableSource *DisableSource `json:"disableSource,omitempty" protobuf:"bytes,7,opt,name=disableSource"`
}

CmdSpec defines how to run a local command.

func (*CmdSpec) DeepCopy added in v0.18.11

func (in *CmdSpec) DeepCopy() *CmdSpec

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

func (*CmdSpec) DeepCopyInto added in v0.18.11

func (in *CmdSpec) DeepCopyInto(out *CmdSpec)

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

func (*CmdSpec) Descriptor added in v0.20.0

func (*CmdSpec) Descriptor() ([]byte, []int)

func (*CmdSpec) Marshal added in v0.20.0

func (m *CmdSpec) Marshal() (dAtA []byte, err error)

func (*CmdSpec) MarshalTo added in v0.20.0

func (m *CmdSpec) MarshalTo(dAtA []byte) (int, error)

func (*CmdSpec) MarshalToSizedBuffer added in v0.20.0

func (m *CmdSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CmdSpec) ProtoMessage added in v0.20.0

func (*CmdSpec) ProtoMessage()

func (*CmdSpec) Reset added in v0.20.0

func (m *CmdSpec) Reset()

func (*CmdSpec) Size added in v0.20.0

func (m *CmdSpec) Size() (n int)

func (*CmdSpec) String added in v0.20.0

func (this *CmdSpec) String() string

func (*CmdSpec) Unmarshal added in v0.20.0

func (m *CmdSpec) Unmarshal(dAtA []byte) error

func (*CmdSpec) XXX_DiscardUnknown added in v0.20.0

func (m *CmdSpec) XXX_DiscardUnknown()

func (*CmdSpec) XXX_Marshal added in v0.20.0

func (m *CmdSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CmdSpec) XXX_Merge added in v0.20.0

func (m *CmdSpec) XXX_Merge(src proto.Message)

func (*CmdSpec) XXX_Size added in v0.20.0

func (m *CmdSpec) XXX_Size() int

func (*CmdSpec) XXX_Unmarshal added in v0.20.0

func (m *CmdSpec) XXX_Unmarshal(b []byte) error

type CmdStateRunning added in v0.18.11

type CmdStateRunning struct {
	// The process id of the command.
	PID int32 `json:"pid" protobuf:"varint,1,opt,name=pid"`

	// Time at which the command was last started.
	StartedAt metav1.MicroTime `json:"startedAt,omitempty" protobuf:"bytes,2,opt,name=startedAt"`
}

CmdStateRunning is a running state of a local command.

func (*CmdStateRunning) DeepCopy added in v0.18.11

func (in *CmdStateRunning) DeepCopy() *CmdStateRunning

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

func (*CmdStateRunning) DeepCopyInto added in v0.18.11

func (in *CmdStateRunning) DeepCopyInto(out *CmdStateRunning)

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

func (*CmdStateRunning) Descriptor added in v0.20.0

func (*CmdStateRunning) Descriptor() ([]byte, []int)

func (*CmdStateRunning) Marshal added in v0.20.0

func (m *CmdStateRunning) Marshal() (dAtA []byte, err error)

func (*CmdStateRunning) MarshalTo added in v0.20.0

func (m *CmdStateRunning) MarshalTo(dAtA []byte) (int, error)

func (*CmdStateRunning) MarshalToSizedBuffer added in v0.20.0

func (m *CmdStateRunning) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CmdStateRunning) ProtoMessage added in v0.20.0

func (*CmdStateRunning) ProtoMessage()

func (*CmdStateRunning) Reset added in v0.20.0

func (m *CmdStateRunning) Reset()

func (*CmdStateRunning) Size added in v0.20.0

func (m *CmdStateRunning) Size() (n int)

func (*CmdStateRunning) String added in v0.20.0

func (this *CmdStateRunning) String() string

func (*CmdStateRunning) Unmarshal added in v0.20.0

func (m *CmdStateRunning) Unmarshal(dAtA []byte) error

func (*CmdStateRunning) XXX_DiscardUnknown added in v0.20.0

func (m *CmdStateRunning) XXX_DiscardUnknown()

func (*CmdStateRunning) XXX_Marshal added in v0.20.0

func (m *CmdStateRunning) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CmdStateRunning) XXX_Merge added in v0.20.0

func (m *CmdStateRunning) XXX_Merge(src proto.Message)

func (*CmdStateRunning) XXX_Size added in v0.20.0

func (m *CmdStateRunning) XXX_Size() int

func (*CmdStateRunning) XXX_Unmarshal added in v0.20.0

func (m *CmdStateRunning) XXX_Unmarshal(b []byte) error

type CmdStateTerminated added in v0.18.11

type CmdStateTerminated struct {
	// The process id of the command.
	PID int32 `json:"pid" protobuf:"varint,1,opt,name=pid"`

	// Exit status from the last termination of the command
	ExitCode int32 `json:"exitCode" protobuf:"varint,2,opt,name=exitCode"`

	// Time at which previous execution of the command started
	StartedAt metav1.MicroTime `json:"startedAt,omitempty" protobuf:"bytes,3,opt,name=startedAt"`

	// Time at which the command last terminated
	FinishedAt metav1.MicroTime `json:"finishedAt,omitempty" protobuf:"bytes,4,opt,name=finishedAt"`

	// (brief) reason the process is terminated
	// +optional
	Reason string `json:"reason,omitempty" protobuf:"bytes,5,opt,name=reason"`
}

CmdStateTerminated is a terminated state of a local command.

func (*CmdStateTerminated) DeepCopy added in v0.18.11

func (in *CmdStateTerminated) DeepCopy() *CmdStateTerminated

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

func (*CmdStateTerminated) DeepCopyInto added in v0.18.11

func (in *CmdStateTerminated) DeepCopyInto(out *CmdStateTerminated)

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

func (*CmdStateTerminated) Descriptor added in v0.20.0

func (*CmdStateTerminated) Descriptor() ([]byte, []int)

func (*CmdStateTerminated) Marshal added in v0.20.0

func (m *CmdStateTerminated) Marshal() (dAtA []byte, err error)

func (*CmdStateTerminated) MarshalTo added in v0.20.0

func (m *CmdStateTerminated) MarshalTo(dAtA []byte) (int, error)

func (*CmdStateTerminated) MarshalToSizedBuffer added in v0.20.0

func (m *CmdStateTerminated) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CmdStateTerminated) ProtoMessage added in v0.20.0

func (*CmdStateTerminated) ProtoMessage()

func (*CmdStateTerminated) Reset added in v0.20.0

func (m *CmdStateTerminated) Reset()

func (*CmdStateTerminated) Size added in v0.20.0

func (m *CmdStateTerminated) Size() (n int)

func (*CmdStateTerminated) String added in v0.20.0

func (this *CmdStateTerminated) String() string

func (*CmdStateTerminated) Unmarshal added in v0.20.0

func (m *CmdStateTerminated) Unmarshal(dAtA []byte) error

func (*CmdStateTerminated) XXX_DiscardUnknown added in v0.20.0

func (m *CmdStateTerminated) XXX_DiscardUnknown()

func (*CmdStateTerminated) XXX_Marshal added in v0.20.0

func (m *CmdStateTerminated) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CmdStateTerminated) XXX_Merge added in v0.20.0

func (m *CmdStateTerminated) XXX_Merge(src proto.Message)

func (*CmdStateTerminated) XXX_Size added in v0.20.0

func (m *CmdStateTerminated) XXX_Size() int

func (*CmdStateTerminated) XXX_Unmarshal added in v0.20.0

func (m *CmdStateTerminated) XXX_Unmarshal(b []byte) error

type CmdStateWaiting added in v0.18.11

type CmdStateWaiting struct {
	// (brief) reason the process is not yet running.
	// +optional
	Reason string `json:"reason,omitempty" protobuf:"bytes,1,opt,name=reason"`
}

CmdStateWaiting is a waiting state of a local command.

func (*CmdStateWaiting) DeepCopy added in v0.18.11

func (in *CmdStateWaiting) DeepCopy() *CmdStateWaiting

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

func (*CmdStateWaiting) DeepCopyInto added in v0.18.11

func (in *CmdStateWaiting) DeepCopyInto(out *CmdStateWaiting)

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

func (*CmdStateWaiting) Descriptor added in v0.20.0

func (*CmdStateWaiting) Descriptor() ([]byte, []int)

func (*CmdStateWaiting) Marshal added in v0.20.0

func (m *CmdStateWaiting) Marshal() (dAtA []byte, err error)

func (*CmdStateWaiting) MarshalTo added in v0.20.0

func (m *CmdStateWaiting) MarshalTo(dAtA []byte) (int, error)

func (*CmdStateWaiting) MarshalToSizedBuffer added in v0.20.0

func (m *CmdStateWaiting) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CmdStateWaiting) ProtoMessage added in v0.20.0

func (*CmdStateWaiting) ProtoMessage()

func (*CmdStateWaiting) Reset added in v0.20.0

func (m *CmdStateWaiting) Reset()

func (*CmdStateWaiting) Size added in v0.20.0

func (m *CmdStateWaiting) Size() (n int)

func (*CmdStateWaiting) String added in v0.20.0

func (this *CmdStateWaiting) String() string

func (*CmdStateWaiting) Unmarshal added in v0.20.0

func (m *CmdStateWaiting) Unmarshal(dAtA []byte) error

func (*CmdStateWaiting) XXX_DiscardUnknown added in v0.20.0

func (m *CmdStateWaiting) XXX_DiscardUnknown()

func (*CmdStateWaiting) XXX_Marshal added in v0.20.0

func (m *CmdStateWaiting) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CmdStateWaiting) XXX_Merge added in v0.20.0

func (m *CmdStateWaiting) XXX_Merge(src proto.Message)

func (*CmdStateWaiting) XXX_Size added in v0.20.0

func (m *CmdStateWaiting) XXX_Size() int

func (*CmdStateWaiting) XXX_Unmarshal added in v0.20.0

func (m *CmdStateWaiting) XXX_Unmarshal(b []byte) error

type CmdStatus added in v0.18.11

type CmdStatus struct {
	// Details about a waiting process.
	// +optional
	Waiting *CmdStateWaiting `json:"waiting,omitempty" protobuf:"bytes,1,opt,name=waiting"`

	// Details about a running process.
	// +optional
	Running *CmdStateRunning `json:"running,omitempty" protobuf:"bytes,2,opt,name=running"`

	// Details about a terminated process.
	// +optional
	Terminated *CmdStateTerminated `json:"terminated,omitempty" protobuf:"bytes,3,opt,name=terminated"`

	// Specifies whether the command has passed its readiness probe.
	//
	// Terminating the command does not change its Ready state.
	//
	// Is always true when no readiness probe is defined.
	//
	// +optional
	Ready bool `json:"ready,omitempty" protobuf:"varint,4,opt,name=ready"`

	// Details about whether/why this is disabled.
	// +optional
	DisableStatus *DisableStatus `json:"disableStatus,omitempty" protobuf:"bytes,5,opt,name=disableStatus"`
}

CmdStatus defines the observed state of Cmd

Based loosely on ContainerStatus in Kubernetes

func (CmdStatus) CopyTo added in v0.18.11

func (*CmdStatus) DeepCopy added in v0.18.11

func (in *CmdStatus) DeepCopy() *CmdStatus

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

func (*CmdStatus) DeepCopyInto added in v0.18.11

func (in *CmdStatus) DeepCopyInto(out *CmdStatus)

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

func (*CmdStatus) Descriptor added in v0.20.0

func (*CmdStatus) Descriptor() ([]byte, []int)

func (*CmdStatus) Marshal added in v0.20.0

func (m *CmdStatus) Marshal() (dAtA []byte, err error)

func (*CmdStatus) MarshalTo added in v0.20.0

func (m *CmdStatus) MarshalTo(dAtA []byte) (int, error)

func (*CmdStatus) MarshalToSizedBuffer added in v0.20.0

func (m *CmdStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CmdStatus) ProtoMessage added in v0.20.0

func (*CmdStatus) ProtoMessage()

func (*CmdStatus) Reset added in v0.20.0

func (m *CmdStatus) Reset()

func (*CmdStatus) Size added in v0.20.0

func (m *CmdStatus) Size() (n int)

func (*CmdStatus) String added in v0.20.0

func (this *CmdStatus) String() string

func (*CmdStatus) Unmarshal added in v0.20.0

func (m *CmdStatus) Unmarshal(dAtA []byte) error

func (*CmdStatus) XXX_DiscardUnknown added in v0.20.0

func (m *CmdStatus) XXX_DiscardUnknown()

func (*CmdStatus) XXX_Marshal added in v0.20.0

func (m *CmdStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CmdStatus) XXX_Merge added in v0.20.0

func (m *CmdStatus) XXX_Merge(src proto.Message)

func (*CmdStatus) XXX_Size added in v0.20.0

func (m *CmdStatus) XXX_Size() int

func (*CmdStatus) XXX_Unmarshal added in v0.20.0

func (m *CmdStatus) XXX_Unmarshal(b []byte) error

type ComponentType added in v0.20.5

type ComponentType string
const (
	ComponentTypeResource ComponentType = "Resource"
	ComponentTypeGlobal   ComponentType = "Global"
)

type ConfigMap added in v0.22.4

type ConfigMap struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// Data contains the configuration data.
	// Each key must consist of alphanumeric characters, '-', '_' or '.'.
	// +optional
	Data map[string]string `json:"data,omitempty" protobuf:"bytes,2,rep,name=data"`
}

ConfigMap stores unstructured data that other controllers can read and write.

Useful for sharing data from one system and subscribing to it from another.

+k8s:openapi-gen=true +tilt:starlark-gen=true

func (*ConfigMap) DeepCopy added in v0.22.4

func (in *ConfigMap) DeepCopy() *ConfigMap

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

func (*ConfigMap) DeepCopyInto added in v0.22.4

func (in *ConfigMap) DeepCopyInto(out *ConfigMap)

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

func (*ConfigMap) DeepCopyObject added in v0.22.4

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

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

func (*ConfigMap) Descriptor added in v0.22.4

func (*ConfigMap) Descriptor() ([]byte, []int)

func (*ConfigMap) GetGroupVersionResource added in v0.22.4

func (in *ConfigMap) GetGroupVersionResource() schema.GroupVersionResource

func (*ConfigMap) GetObjectMeta added in v0.22.4

func (in *ConfigMap) GetObjectMeta() *metav1.ObjectMeta

func (*ConfigMap) GetSingularName added in v0.33.0

func (in *ConfigMap) GetSingularName() string

func (*ConfigMap) GetSpec added in v0.22.10

func (in *ConfigMap) GetSpec() interface{}

func (*ConfigMap) IsStorageVersion added in v0.22.4

func (in *ConfigMap) IsStorageVersion() bool

func (*ConfigMap) Marshal added in v0.22.4

func (m *ConfigMap) Marshal() (dAtA []byte, err error)

func (*ConfigMap) MarshalTo added in v0.22.4

func (m *ConfigMap) MarshalTo(dAtA []byte) (int, error)

func (*ConfigMap) MarshalToSizedBuffer added in v0.22.4

func (m *ConfigMap) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ConfigMap) NamespaceScoped added in v0.22.4

func (in *ConfigMap) NamespaceScoped() bool

func (*ConfigMap) New added in v0.22.4

func (in *ConfigMap) New() runtime.Object

func (*ConfigMap) NewList added in v0.22.4

func (in *ConfigMap) NewList() runtime.Object

func (*ConfigMap) ProtoMessage added in v0.22.4

func (*ConfigMap) ProtoMessage()

func (*ConfigMap) Reset added in v0.22.4

func (m *ConfigMap) Reset()

func (*ConfigMap) ShortNames added in v0.22.4

func (in *ConfigMap) ShortNames() []string

func (*ConfigMap) Size added in v0.22.4

func (m *ConfigMap) Size() (n int)

func (*ConfigMap) String added in v0.22.4

func (this *ConfigMap) String() string

func (*ConfigMap) Unmarshal added in v0.22.4

func (m *ConfigMap) Unmarshal(dAtA []byte) error

func (*ConfigMap) Validate added in v0.22.4

func (in *ConfigMap) Validate(ctx context.Context) field.ErrorList

func (*ConfigMap) XXX_DiscardUnknown added in v0.22.4

func (m *ConfigMap) XXX_DiscardUnknown()

func (*ConfigMap) XXX_Marshal added in v0.22.4

func (m *ConfigMap) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ConfigMap) XXX_Merge added in v0.22.4

func (m *ConfigMap) XXX_Merge(src proto.Message)

func (*ConfigMap) XXX_Size added in v0.22.4

func (m *ConfigMap) XXX_Size() int

func (*ConfigMap) XXX_Unmarshal added in v0.22.4

func (m *ConfigMap) XXX_Unmarshal(b []byte) error

type ConfigMapDisableSource added in v0.22.8

type ConfigMapDisableSource struct {
	// The name of the ConfigMap
	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`

	// The key where the enable/disable state is stored.
	Key string `json:"key" protobuf:"bytes,2,opt,name=key"`
}

Specifies a ConfigMap to control a DisableSource

func (*ConfigMapDisableSource) DeepCopy added in v0.22.8

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

func (*ConfigMapDisableSource) DeepCopyInto added in v0.22.8

func (in *ConfigMapDisableSource) DeepCopyInto(out *ConfigMapDisableSource)

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

func (*ConfigMapDisableSource) Descriptor added in v0.22.8

func (*ConfigMapDisableSource) Descriptor() ([]byte, []int)

func (*ConfigMapDisableSource) Marshal added in v0.22.8

func (m *ConfigMapDisableSource) Marshal() (dAtA []byte, err error)

func (*ConfigMapDisableSource) MarshalTo added in v0.22.8

func (m *ConfigMapDisableSource) MarshalTo(dAtA []byte) (int, error)

func (*ConfigMapDisableSource) MarshalToSizedBuffer added in v0.22.8

func (m *ConfigMapDisableSource) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ConfigMapDisableSource) ProtoMessage added in v0.22.8

func (*ConfigMapDisableSource) ProtoMessage()

func (*ConfigMapDisableSource) Reset added in v0.22.8

func (m *ConfigMapDisableSource) Reset()

func (*ConfigMapDisableSource) Size added in v0.22.8

func (m *ConfigMapDisableSource) Size() (n int)

func (*ConfigMapDisableSource) String added in v0.22.8

func (this *ConfigMapDisableSource) String() string

func (*ConfigMapDisableSource) Unmarshal added in v0.22.8

func (m *ConfigMapDisableSource) Unmarshal(dAtA []byte) error

func (*ConfigMapDisableSource) XXX_DiscardUnknown added in v0.22.8

func (m *ConfigMapDisableSource) XXX_DiscardUnknown()

func (*ConfigMapDisableSource) XXX_Marshal added in v0.22.8

func (m *ConfigMapDisableSource) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ConfigMapDisableSource) XXX_Merge added in v0.22.8

func (m *ConfigMapDisableSource) XXX_Merge(src proto.Message)

func (*ConfigMapDisableSource) XXX_Size added in v0.22.8

func (m *ConfigMapDisableSource) XXX_Size() int

func (*ConfigMapDisableSource) XXX_Unmarshal added in v0.22.8

func (m *ConfigMapDisableSource) XXX_Unmarshal(b []byte) error

type ConfigMapList added in v0.22.4

type ConfigMapList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Items []ConfigMap `json:"items" protobuf:"bytes,2,rep,name=items"`
}

ConfigMapList +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*ConfigMapList) DeepCopy added in v0.22.4

func (in *ConfigMapList) DeepCopy() *ConfigMapList

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

func (*ConfigMapList) DeepCopyInto added in v0.22.4

func (in *ConfigMapList) DeepCopyInto(out *ConfigMapList)

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

func (*ConfigMapList) DeepCopyObject added in v0.22.4

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

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

func (*ConfigMapList) Descriptor added in v0.22.4

func (*ConfigMapList) Descriptor() ([]byte, []int)

func (*ConfigMapList) GetListMeta added in v0.22.4

func (in *ConfigMapList) GetListMeta() *metav1.ListMeta

func (*ConfigMapList) Marshal added in v0.22.4

func (m *ConfigMapList) Marshal() (dAtA []byte, err error)

func (*ConfigMapList) MarshalTo added in v0.22.4

func (m *ConfigMapList) MarshalTo(dAtA []byte) (int, error)

func (*ConfigMapList) MarshalToSizedBuffer added in v0.22.4

func (m *ConfigMapList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ConfigMapList) ProtoMessage added in v0.22.4

func (*ConfigMapList) ProtoMessage()

func (*ConfigMapList) Reset added in v0.22.4

func (m *ConfigMapList) Reset()

func (*ConfigMapList) Size added in v0.22.4

func (m *ConfigMapList) Size() (n int)

func (*ConfigMapList) String added in v0.22.4

func (this *ConfigMapList) String() string

func (*ConfigMapList) Unmarshal added in v0.22.4

func (m *ConfigMapList) Unmarshal(dAtA []byte) error

func (*ConfigMapList) XXX_DiscardUnknown added in v0.22.4

func (m *ConfigMapList) XXX_DiscardUnknown()

func (*ConfigMapList) XXX_Marshal added in v0.22.4

func (m *ConfigMapList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ConfigMapList) XXX_Merge added in v0.22.4

func (m *ConfigMapList) XXX_Merge(src proto.Message)

func (*ConfigMapList) XXX_Size added in v0.22.4

func (m *ConfigMapList) XXX_Size() int

func (*ConfigMapList) XXX_Unmarshal added in v0.22.4

func (m *ConfigMapList) XXX_Unmarshal(b []byte) error

type ConfigMapStateSource added in v0.22.12

type ConfigMapStateSource struct {
	// Name of the ConfigMap
	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`

	// Key within the ConfigMap
	Key string `json:"key" protobuf:"bytes,2,opt,name=key"`

	// ConfigMap value corresponding to the button's "on" state.
	// If not specified, "true" will be used.
	// +optional
	OnValue string `json:"onValue,omitempty" protobuf:"bytes,3,opt,name=onValue"`

	// ConfigMap value corresponding to the button's "off" state
	// If not specified, "false" will be used.
	OffValue string `json:"offValue,omitempty" protobuf:"bytes,4,opt,name=offValue"`
}

Describes how a ToggleButton's state is stored in a ConfigMap. The ConfigMap must be created separately - the ToggleButton will not automatically create it.

func (*ConfigMapStateSource) DeepCopy added in v0.22.12

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

func (*ConfigMapStateSource) DeepCopyInto added in v0.22.12

func (in *ConfigMapStateSource) DeepCopyInto(out *ConfigMapStateSource)

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

func (*ConfigMapStateSource) Descriptor added in v0.22.12

func (*ConfigMapStateSource) Descriptor() ([]byte, []int)

func (*ConfigMapStateSource) Marshal added in v0.22.12

func (m *ConfigMapStateSource) Marshal() (dAtA []byte, err error)

func (*ConfigMapStateSource) MarshalTo added in v0.22.12

func (m *ConfigMapStateSource) MarshalTo(dAtA []byte) (int, error)

func (*ConfigMapStateSource) MarshalToSizedBuffer added in v0.22.12

func (m *ConfigMapStateSource) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ConfigMapStateSource) ProtoMessage added in v0.22.12

func (*ConfigMapStateSource) ProtoMessage()

func (*ConfigMapStateSource) Reset added in v0.22.12

func (m *ConfigMapStateSource) Reset()

func (*ConfigMapStateSource) Size added in v0.22.12

func (m *ConfigMapStateSource) Size() (n int)

func (*ConfigMapStateSource) String added in v0.22.12

func (this *ConfigMapStateSource) String() string

func (*ConfigMapStateSource) Unmarshal added in v0.22.12

func (m *ConfigMapStateSource) Unmarshal(dAtA []byte) error

func (*ConfigMapStateSource) XXX_DiscardUnknown added in v0.22.12

func (m *ConfigMapStateSource) XXX_DiscardUnknown()

func (*ConfigMapStateSource) XXX_Marshal added in v0.22.12

func (m *ConfigMapStateSource) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ConfigMapStateSource) XXX_Merge added in v0.22.12

func (m *ConfigMapStateSource) XXX_Merge(src proto.Message)

func (*ConfigMapStateSource) XXX_Size added in v0.22.12

func (m *ConfigMapStateSource) XXX_Size() int

func (*ConfigMapStateSource) XXX_Unmarshal added in v0.22.12

func (m *ConfigMapStateSource) XXX_Unmarshal(b []byte) error

type Container added in v0.19.7

type Container struct {
	// Name is the name of the container as defined in Kubernetes.
	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
	// ID is the normalized container ID (the `docker://` prefix is stripped).
	ID string `json:"id" protobuf:"bytes,2,opt,name=id"`
	// Ready is true if the container is passing readiness checks (or has none defined).
	Ready bool `json:"ready" protobuf:"varint,3,opt,name=ready"`
	// Image is the image the container is running.
	Image string `json:"image" protobuf:"bytes,4,opt,name=image"`
	// Restarts is the number of times the container has restarted.
	//
	// This includes restarts before the Tilt daemon was started if the container was already running.
	Restarts int32 `json:"restarts" protobuf:"varint,5,opt,name=restarts"`
	// State provides details about the container's current condition.
	State ContainerState `json:"state" protobuf:"bytes,6,opt,name=state"`
	// Ports are exposed ports as extracted from the Pod spec.
	//
	// This is added by Tilt for convenience when managing port forwards.
	Ports []int32 `json:"ports" protobuf:"varint,7,rep,name=ports"`
}

Container is an init or application container within a pod.

The Tilt API representation mirrors the Kubernetes API very closely. Irrelevant data is not included, and some fields might be simplified.

There might also be Tilt-specific status fields.

func (*Container) DeepCopy added in v0.19.7

func (in *Container) DeepCopy() *Container

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

func (*Container) DeepCopyInto added in v0.19.7

func (in *Container) DeepCopyInto(out *Container)

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

func (*Container) Descriptor added in v0.20.0

func (*Container) Descriptor() ([]byte, []int)

func (*Container) Marshal added in v0.20.0

func (m *Container) Marshal() (dAtA []byte, err error)

func (*Container) MarshalTo added in v0.20.0

func (m *Container) MarshalTo(dAtA []byte) (int, error)

func (*Container) MarshalToSizedBuffer added in v0.20.0

func (m *Container) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Container) ProtoMessage added in v0.20.0

func (*Container) ProtoMessage()

func (*Container) Reset added in v0.20.0

func (m *Container) Reset()

func (*Container) Size added in v0.20.0

func (m *Container) Size() (n int)

func (*Container) String added in v0.20.0

func (this *Container) String() string

func (*Container) Unmarshal added in v0.20.0

func (m *Container) Unmarshal(dAtA []byte) error

func (*Container) XXX_DiscardUnknown added in v0.20.0

func (m *Container) XXX_DiscardUnknown()

func (*Container) XXX_Marshal added in v0.20.0

func (m *Container) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Container) XXX_Merge added in v0.20.0

func (m *Container) XXX_Merge(src proto.Message)

func (*Container) XXX_Size added in v0.20.0

func (m *Container) XXX_Size() int

func (*Container) XXX_Unmarshal added in v0.20.0

func (m *Container) XXX_Unmarshal(b []byte) error

type ContainerLogStreamStatus added in v0.19.3

type ContainerLogStreamStatus struct {
	// The name of the container.
	Name string `json:"name,omitempty" protobuf:"bytes,1,opt,name=name"`

	// True when the stream is set up and streaming logs properly.
	//
	// +optional
	Active bool `json:"active,omitempty" protobuf:"varint,2,opt,name=active"`

	// True when the logs are done stream and the container is terminated.
	//
	// +optional
	Terminated bool `json:"terminated,omitempty" protobuf:"varint,3,opt,name=terminated"`

	// The last error message encountered while streaming.
	//
	// Empty when the stream is actively streaming or successfully terminated.
	//
	// +optional
	Error string `json:"error,omitempty" protobuf:"bytes,4,opt,name=error"`
}

ContainerLogStreamStatus defines the current status of each individual container log stream.

func (*ContainerLogStreamStatus) DeepCopy added in v0.19.3

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

func (*ContainerLogStreamStatus) DeepCopyInto added in v0.19.3

func (in *ContainerLogStreamStatus) DeepCopyInto(out *ContainerLogStreamStatus)

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

func (*ContainerLogStreamStatus) Descriptor added in v0.20.0

func (*ContainerLogStreamStatus) Descriptor() ([]byte, []int)

func (*ContainerLogStreamStatus) Marshal added in v0.20.0

func (m *ContainerLogStreamStatus) Marshal() (dAtA []byte, err error)

func (*ContainerLogStreamStatus) MarshalTo added in v0.20.0

func (m *ContainerLogStreamStatus) MarshalTo(dAtA []byte) (int, error)

func (*ContainerLogStreamStatus) MarshalToSizedBuffer added in v0.20.0

func (m *ContainerLogStreamStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ContainerLogStreamStatus) ProtoMessage added in v0.20.0

func (*ContainerLogStreamStatus) ProtoMessage()

func (*ContainerLogStreamStatus) Reset added in v0.20.0

func (m *ContainerLogStreamStatus) Reset()

func (*ContainerLogStreamStatus) Size added in v0.20.0

func (m *ContainerLogStreamStatus) Size() (n int)

func (*ContainerLogStreamStatus) String added in v0.20.0

func (this *ContainerLogStreamStatus) String() string

func (*ContainerLogStreamStatus) Unmarshal added in v0.20.0

func (m *ContainerLogStreamStatus) Unmarshal(dAtA []byte) error

func (*ContainerLogStreamStatus) XXX_DiscardUnknown added in v0.20.0

func (m *ContainerLogStreamStatus) XXX_DiscardUnknown()

func (*ContainerLogStreamStatus) XXX_Marshal added in v0.20.0

func (m *ContainerLogStreamStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ContainerLogStreamStatus) XXX_Merge added in v0.20.0

func (m *ContainerLogStreamStatus) XXX_Merge(src proto.Message)

func (*ContainerLogStreamStatus) XXX_Size added in v0.20.0

func (m *ContainerLogStreamStatus) XXX_Size() int

func (*ContainerLogStreamStatus) XXX_Unmarshal added in v0.20.0

func (m *ContainerLogStreamStatus) XXX_Unmarshal(b []byte) error

type ContainerState added in v0.19.7

type ContainerState struct {
	// Waiting provides details about a container that is not yet running.
	Waiting *ContainerStateWaiting `json:"waiting" protobuf:"bytes,1,opt,name=waiting"`
	// Running provides details about a currently executing container.
	Running *ContainerStateRunning `json:"running" protobuf:"bytes,2,opt,name=running"`
	// Terminated provides details about an exited container.
	Terminated *ContainerStateTerminated `json:"terminated" protobuf:"bytes,3,opt,name=terminated"`
}

ContainerState holds a possible state of container.

Only one of its members may be specified. If none of them is specified, the default one is ContainerStateWaiting.

func (*ContainerState) DeepCopy added in v0.19.7

func (in *ContainerState) DeepCopy() *ContainerState

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

func (*ContainerState) DeepCopyInto added in v0.19.7

func (in *ContainerState) DeepCopyInto(out *ContainerState)

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

func (*ContainerState) Descriptor added in v0.20.0

func (*ContainerState) Descriptor() ([]byte, []int)

func (*ContainerState) Marshal added in v0.20.0

func (m *ContainerState) Marshal() (dAtA []byte, err error)

func (*ContainerState) MarshalTo added in v0.20.0

func (m *ContainerState) MarshalTo(dAtA []byte) (int, error)

func (*ContainerState) MarshalToSizedBuffer added in v0.20.0

func (m *ContainerState) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ContainerState) ProtoMessage added in v0.20.0

func (*ContainerState) ProtoMessage()

func (*ContainerState) Reset added in v0.20.0

func (m *ContainerState) Reset()

func (*ContainerState) Size added in v0.20.0

func (m *ContainerState) Size() (n int)

func (*ContainerState) String added in v0.20.0

func (this *ContainerState) String() string

func (*ContainerState) Unmarshal added in v0.20.0

func (m *ContainerState) Unmarshal(dAtA []byte) error

func (*ContainerState) XXX_DiscardUnknown added in v0.20.0

func (m *ContainerState) XXX_DiscardUnknown()

func (*ContainerState) XXX_Marshal added in v0.20.0

func (m *ContainerState) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ContainerState) XXX_Merge added in v0.20.0

func (m *ContainerState) XXX_Merge(src proto.Message)

func (*ContainerState) XXX_Size added in v0.20.0

func (m *ContainerState) XXX_Size() int

func (*ContainerState) XXX_Unmarshal added in v0.20.0

func (m *ContainerState) XXX_Unmarshal(b []byte) error

type ContainerStateRunning added in v0.19.7

type ContainerStateRunning struct {
	// StartedAt is the time the container began running.
	StartedAt metav1.Time `json:"startedAt" protobuf:"bytes,1,opt,name=startedAt"`
}

ContainerStateRunning is a running state of a container.

func (*ContainerStateRunning) DeepCopy added in v0.19.7

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

func (*ContainerStateRunning) DeepCopyInto added in v0.19.7

func (in *ContainerStateRunning) DeepCopyInto(out *ContainerStateRunning)

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

func (*ContainerStateRunning) Descriptor added in v0.20.0

func (*ContainerStateRunning) Descriptor() ([]byte, []int)

func (*ContainerStateRunning) Marshal added in v0.20.0

func (m *ContainerStateRunning) Marshal() (dAtA []byte, err error)

func (*ContainerStateRunning) MarshalTo added in v0.20.0

func (m *ContainerStateRunning) MarshalTo(dAtA []byte) (int, error)

func (*ContainerStateRunning) MarshalToSizedBuffer added in v0.20.0

func (m *ContainerStateRunning) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ContainerStateRunning) ProtoMessage added in v0.20.0

func (*ContainerStateRunning) ProtoMessage()

func (*ContainerStateRunning) Reset added in v0.20.0

func (m *ContainerStateRunning) Reset()

func (*ContainerStateRunning) Size added in v0.20.0

func (m *ContainerStateRunning) Size() (n int)

func (*ContainerStateRunning) String added in v0.20.0

func (this *ContainerStateRunning) String() string

func (*ContainerStateRunning) Unmarshal added in v0.20.0

func (m *ContainerStateRunning) Unmarshal(dAtA []byte) error

func (*ContainerStateRunning) XXX_DiscardUnknown added in v0.20.0

func (m *ContainerStateRunning) XXX_DiscardUnknown()

func (*ContainerStateRunning) XXX_Marshal added in v0.20.0

func (m *ContainerStateRunning) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ContainerStateRunning) XXX_Merge added in v0.20.0

func (m *ContainerStateRunning) XXX_Merge(src proto.Message)

func (*ContainerStateRunning) XXX_Size added in v0.20.0

func (m *ContainerStateRunning) XXX_Size() int

func (*ContainerStateRunning) XXX_Unmarshal added in v0.20.0

func (m *ContainerStateRunning) XXX_Unmarshal(b []byte) error

type ContainerStateTerminated added in v0.19.7

type ContainerStateTerminated struct {
	// StartedAt is the time the container began running.
	StartedAt metav1.Time `json:"startedAt" protobuf:"bytes,1,opt,name=startedAt"`
	// FinishedAt is the time the container stopped running.
	FinishedAt metav1.Time `json:"finishedAt" protobuf:"bytes,2,opt,name=finishedAt"`
	// Reason is a (brief) reason the container stopped running.
	Reason string `json:"reason,omitempty" protobuf:"bytes,3,opt,name=reason"`
	// ExitCode is the exit status from the termination of the container.
	//
	// Any non-zero value indicates an error during termination.
	ExitCode int32 `json:"exitCode" protobuf:"varint,4,opt,name=exitCode"`
}

ContainerStateTerminated is a terminated state of a container.

func (*ContainerStateTerminated) DeepCopy added in v0.19.7

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

func (*ContainerStateTerminated) DeepCopyInto added in v0.19.7

func (in *ContainerStateTerminated) DeepCopyInto(out *ContainerStateTerminated)

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

func (*ContainerStateTerminated) Descriptor added in v0.20.0

func (*ContainerStateTerminated) Descriptor() ([]byte, []int)

func (*ContainerStateTerminated) Marshal added in v0.20.0

func (m *ContainerStateTerminated) Marshal() (dAtA []byte, err error)

func (*ContainerStateTerminated) MarshalTo added in v0.20.0

func (m *ContainerStateTerminated) MarshalTo(dAtA []byte) (int, error)

func (*ContainerStateTerminated) MarshalToSizedBuffer added in v0.20.0

func (m *ContainerStateTerminated) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ContainerStateTerminated) ProtoMessage added in v0.20.0

func (*ContainerStateTerminated) ProtoMessage()

func (*ContainerStateTerminated) Reset added in v0.20.0

func (m *ContainerStateTerminated) Reset()

func (*ContainerStateTerminated) Size added in v0.20.0

func (m *ContainerStateTerminated) Size() (n int)

func (*ContainerStateTerminated) String added in v0.20.0

func (this *ContainerStateTerminated) String() string

func (*ContainerStateTerminated) Unmarshal added in v0.20.0

func (m *ContainerStateTerminated) Unmarshal(dAtA []byte) error

func (*ContainerStateTerminated) XXX_DiscardUnknown added in v0.20.0

func (m *ContainerStateTerminated) XXX_DiscardUnknown()

func (*ContainerStateTerminated) XXX_Marshal added in v0.20.0

func (m *ContainerStateTerminated) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ContainerStateTerminated) XXX_Merge added in v0.20.0

func (m *ContainerStateTerminated) XXX_Merge(src proto.Message)

func (*ContainerStateTerminated) XXX_Size added in v0.20.0

func (m *ContainerStateTerminated) XXX_Size() int

func (*ContainerStateTerminated) XXX_Unmarshal added in v0.20.0

func (m *ContainerStateTerminated) XXX_Unmarshal(b []byte) error

type ContainerStateWaiting added in v0.19.7

type ContainerStateWaiting struct {
	// Reason is a (brief) reason the container is not yet running.
	Reason string `json:"reason" protobuf:"bytes,1,opt,name=reason"`
}

ContainerStateWaiting is a waiting state of a container.

func (*ContainerStateWaiting) DeepCopy added in v0.19.7

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

func (*ContainerStateWaiting) DeepCopyInto added in v0.19.7

func (in *ContainerStateWaiting) DeepCopyInto(out *ContainerStateWaiting)

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

func (*ContainerStateWaiting) Descriptor added in v0.20.0

func (*ContainerStateWaiting) Descriptor() ([]byte, []int)

func (*ContainerStateWaiting) Marshal added in v0.20.0

func (m *ContainerStateWaiting) Marshal() (dAtA []byte, err error)

func (*ContainerStateWaiting) MarshalTo added in v0.20.0

func (m *ContainerStateWaiting) MarshalTo(dAtA []byte) (int, error)

func (*ContainerStateWaiting) MarshalToSizedBuffer added in v0.20.0

func (m *ContainerStateWaiting) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ContainerStateWaiting) ProtoMessage added in v0.20.0

func (*ContainerStateWaiting) ProtoMessage()

func (*ContainerStateWaiting) Reset added in v0.20.0

func (m *ContainerStateWaiting) Reset()

func (*ContainerStateWaiting) Size added in v0.20.0

func (m *ContainerStateWaiting) Size() (n int)

func (*ContainerStateWaiting) String added in v0.20.0

func (this *ContainerStateWaiting) String() string

func (*ContainerStateWaiting) Unmarshal added in v0.20.0

func (m *ContainerStateWaiting) Unmarshal(dAtA []byte) error

func (*ContainerStateWaiting) XXX_DiscardUnknown added in v0.20.0

func (m *ContainerStateWaiting) XXX_DiscardUnknown()

func (*ContainerStateWaiting) XXX_Marshal added in v0.20.0

func (m *ContainerStateWaiting) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ContainerStateWaiting) XXX_Merge added in v0.20.0

func (m *ContainerStateWaiting) XXX_Merge(src proto.Message)

func (*ContainerStateWaiting) XXX_Size added in v0.20.0

func (m *ContainerStateWaiting) XXX_Size() int

func (*ContainerStateWaiting) XXX_Unmarshal added in v0.20.0

func (m *ContainerStateWaiting) XXX_Unmarshal(b []byte) error

type DisableResourceStatus added in v0.22.8

type DisableResourceStatus struct {
	// How many of the resource's sources are enabled.
	EnabledCount int32 `json:"enabledCount" protobuf:"varint,1,opt,name=enabledCount"`

	// How many of the resource's sources are disabled.
	DisabledCount int32 `json:"disabledCount" protobuf:"varint,2,opt,name=disabledCount"`

	// Whether this is currently disabled (if known)
	State DisableState `json:"state" protobuf:"bytes,4,opt,name=state,casttype=DisableState"`

	// All unique sources that control the resource's objects' disable status.
	Sources []DisableSource `json:"sources" protobuf:"bytes,3,rep,name=sources"`
}

Aggregated disable status of DisableSources that belong to a resource.

func (*DisableResourceStatus) DeepCopy added in v0.22.8

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

func (*DisableResourceStatus) DeepCopyInto added in v0.22.8

func (in *DisableResourceStatus) DeepCopyInto(out *DisableResourceStatus)

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

func (*DisableResourceStatus) Descriptor added in v0.22.8

func (*DisableResourceStatus) Descriptor() ([]byte, []int)

func (*DisableResourceStatus) Marshal added in v0.22.8

func (m *DisableResourceStatus) Marshal() (dAtA []byte, err error)

func (*DisableResourceStatus) MarshalTo added in v0.22.8

func (m *DisableResourceStatus) MarshalTo(dAtA []byte) (int, error)

func (*DisableResourceStatus) MarshalToSizedBuffer added in v0.22.8

func (m *DisableResourceStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DisableResourceStatus) ProtoMessage added in v0.22.8

func (*DisableResourceStatus) ProtoMessage()

func (*DisableResourceStatus) Reset added in v0.22.8

func (m *DisableResourceStatus) Reset()

func (*DisableResourceStatus) Size added in v0.22.8

func (m *DisableResourceStatus) Size() (n int)

func (*DisableResourceStatus) String added in v0.22.8

func (this *DisableResourceStatus) String() string

func (*DisableResourceStatus) Unmarshal added in v0.22.8

func (m *DisableResourceStatus) Unmarshal(dAtA []byte) error

func (*DisableResourceStatus) XXX_DiscardUnknown added in v0.22.8

func (m *DisableResourceStatus) XXX_DiscardUnknown()

func (*DisableResourceStatus) XXX_Marshal added in v0.22.8

func (m *DisableResourceStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DisableResourceStatus) XXX_Merge added in v0.22.8

func (m *DisableResourceStatus) XXX_Merge(src proto.Message)

func (*DisableResourceStatus) XXX_Size added in v0.22.8

func (m *DisableResourceStatus) XXX_Size() int

func (*DisableResourceStatus) XXX_Unmarshal added in v0.22.8

func (m *DisableResourceStatus) XXX_Unmarshal(b []byte) error

type DisableSource added in v0.22.8

type DisableSource struct {
	// Disabled by single ConfigMap value.
	ConfigMap *ConfigMapDisableSource `json:"configMap,omitempty" protobuf:"bytes,2,opt,name=configMap"`

	// Disabled by multiple ConfigMap values, which must all be set to disabled
	// to disable the object.
	EveryConfigMap []ConfigMapDisableSource `json:"everyConfigMap,omitempty" protobuf:"bytes,3,rep,name=everyConfigMap"`
}

Points at a thing that can control whether something is disabled

func (*DisableSource) DeepCopy added in v0.22.8

func (in *DisableSource) DeepCopy() *DisableSource

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

func (*DisableSource) DeepCopyInto added in v0.22.8

func (in *DisableSource) DeepCopyInto(out *DisableSource)

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

func (*DisableSource) Descriptor added in v0.22.8

func (*DisableSource) Descriptor() ([]byte, []int)

func (*DisableSource) Marshal added in v0.22.8

func (m *DisableSource) Marshal() (dAtA []byte, err error)

func (*DisableSource) MarshalTo added in v0.22.8

func (m *DisableSource) MarshalTo(dAtA []byte) (int, error)

func (*DisableSource) MarshalToSizedBuffer added in v0.22.8

func (m *DisableSource) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DisableSource) ProtoMessage added in v0.22.8

func (*DisableSource) ProtoMessage()

func (*DisableSource) Reset added in v0.22.8

func (m *DisableSource) Reset()

func (*DisableSource) Size added in v0.22.8

func (m *DisableSource) Size() (n int)

func (*DisableSource) String added in v0.22.8

func (this *DisableSource) String() string

func (*DisableSource) Unmarshal added in v0.22.8

func (m *DisableSource) Unmarshal(dAtA []byte) error

func (*DisableSource) XXX_DiscardUnknown added in v0.22.8

func (m *DisableSource) XXX_DiscardUnknown()

func (*DisableSource) XXX_Marshal added in v0.22.8

func (m *DisableSource) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DisableSource) XXX_Merge added in v0.22.8

func (m *DisableSource) XXX_Merge(src proto.Message)

func (*DisableSource) XXX_Size added in v0.22.8

func (m *DisableSource) XXX_Size() int

func (*DisableSource) XXX_Unmarshal added in v0.22.8

func (m *DisableSource) XXX_Unmarshal(b []byte) error

type DisableState added in v0.23.9

type DisableState string

Indicates what is known about whether this is disabled. Possible values: "" - the status is not known "Enabled" - this is enabled "Disabled" - this is disabled "Error" - the status was not determined due to a potentially nonephemeral error (e.g., misconfiguration)

const (
	DisableStatePending  DisableState = ""
	DisableStateEnabled  DisableState = "Enabled"
	DisableStateDisabled DisableState = "Disabled"
	DisableStateError    DisableState = "Error"
)

type DisableStatus added in v0.22.8

type DisableStatus struct {
	// Whether this is currently disabled. Deprecated in favor of `State`.
	Disabled bool `json:"disabled" protobuf:"varint,1,opt,name=disabled"`
	// The last time this status was updated.
	LastUpdateTime metav1.Time `json:"lastUpdateTime" protobuf:"bytes,2,opt,name=lastUpdateTime"`
	// The reason this status was updated.
	Reason string `json:"reason" protobuf:"bytes,3,opt,name=reason"`
	// Whether this is currently disabled (if known)
	State DisableState `json:"state" protobuf:"bytes,4,opt,name=state,casttype=DisableState"`
}

func (*DisableStatus) DeepCopy added in v0.22.8

func (in *DisableStatus) DeepCopy() *DisableStatus

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

func (*DisableStatus) DeepCopyInto added in v0.22.8

func (in *DisableStatus) DeepCopyInto(out *DisableStatus)

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

func (*DisableStatus) Descriptor added in v0.22.8

func (*DisableStatus) Descriptor() ([]byte, []int)

func (*DisableStatus) Marshal added in v0.22.8

func (m *DisableStatus) Marshal() (dAtA []byte, err error)

func (*DisableStatus) MarshalTo added in v0.22.8

func (m *DisableStatus) MarshalTo(dAtA []byte) (int, error)

func (*DisableStatus) MarshalToSizedBuffer added in v0.22.8

func (m *DisableStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DisableStatus) ProtoMessage added in v0.22.8

func (*DisableStatus) ProtoMessage()

func (*DisableStatus) Reset added in v0.22.8

func (m *DisableStatus) Reset()

func (*DisableStatus) Size added in v0.22.8

func (m *DisableStatus) Size() (n int)

func (*DisableStatus) String added in v0.22.8

func (this *DisableStatus) String() string

func (*DisableStatus) Unmarshal added in v0.22.8

func (m *DisableStatus) Unmarshal(dAtA []byte) error

func (*DisableStatus) XXX_DiscardUnknown added in v0.22.8

func (m *DisableStatus) XXX_DiscardUnknown()

func (*DisableStatus) XXX_Marshal added in v0.22.8

func (m *DisableStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DisableStatus) XXX_Merge added in v0.22.8

func (m *DisableStatus) XXX_Merge(src proto.Message)

func (*DisableStatus) XXX_Size added in v0.22.8

func (m *DisableStatus) XXX_Size() int

func (*DisableStatus) XXX_Unmarshal added in v0.22.8

func (m *DisableStatus) XXX_Unmarshal(b []byte) error

type DockerClusterConnection added in v0.23.3

type DockerClusterConnection struct {
	// The docker host to use.
	//
	// If not specified, will read the DOCKER_HOST env or use the default docker
	// host.
	Host string `json:"host,omitempty" protobuf:"bytes,1,opt,name=host"`
}

func (*DockerClusterConnection) DeepCopy added in v0.23.3

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

func (*DockerClusterConnection) DeepCopyInto added in v0.23.3

func (in *DockerClusterConnection) DeepCopyInto(out *DockerClusterConnection)

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

func (*DockerClusterConnection) Descriptor added in v0.23.3

func (*DockerClusterConnection) Descriptor() ([]byte, []int)

func (*DockerClusterConnection) Marshal added in v0.23.3

func (m *DockerClusterConnection) Marshal() (dAtA []byte, err error)

func (*DockerClusterConnection) MarshalTo added in v0.23.3

func (m *DockerClusterConnection) MarshalTo(dAtA []byte) (int, error)

func (*DockerClusterConnection) MarshalToSizedBuffer added in v0.23.3

func (m *DockerClusterConnection) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DockerClusterConnection) ProtoMessage added in v0.23.3

func (*DockerClusterConnection) ProtoMessage()

func (*DockerClusterConnection) Reset added in v0.23.3

func (m *DockerClusterConnection) Reset()

func (*DockerClusterConnection) Size added in v0.23.3

func (m *DockerClusterConnection) Size() (n int)

func (*DockerClusterConnection) String added in v0.23.3

func (this *DockerClusterConnection) String() string

func (*DockerClusterConnection) Unmarshal added in v0.23.3

func (m *DockerClusterConnection) Unmarshal(dAtA []byte) error

func (*DockerClusterConnection) XXX_DiscardUnknown added in v0.23.3

func (m *DockerClusterConnection) XXX_DiscardUnknown()

func (*DockerClusterConnection) XXX_Marshal added in v0.23.3

func (m *DockerClusterConnection) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DockerClusterConnection) XXX_Merge added in v0.23.3

func (m *DockerClusterConnection) XXX_Merge(src proto.Message)

func (*DockerClusterConnection) XXX_Size added in v0.23.3

func (m *DockerClusterConnection) XXX_Size() int

func (*DockerClusterConnection) XXX_Unmarshal added in v0.23.3

func (m *DockerClusterConnection) XXX_Unmarshal(b []byte) error

type DockerComposeLogStream added in v0.28.0

type DockerComposeLogStream struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Spec   DockerComposeLogStreamSpec   `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
	Status DockerComposeLogStreamStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
}

DockerComposeLogStream +k8s:openapi-gen=true

func (*DockerComposeLogStream) DeepCopy added in v0.28.0

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

func (*DockerComposeLogStream) DeepCopyInto added in v0.28.0

func (in *DockerComposeLogStream) DeepCopyInto(out *DockerComposeLogStream)

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

func (*DockerComposeLogStream) DeepCopyObject added in v0.28.0

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

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

func (*DockerComposeLogStream) Descriptor added in v0.28.0

func (*DockerComposeLogStream) Descriptor() ([]byte, []int)

func (*DockerComposeLogStream) GetGroupVersionResource added in v0.28.0

func (in *DockerComposeLogStream) GetGroupVersionResource() schema.GroupVersionResource

func (*DockerComposeLogStream) GetObjectMeta added in v0.28.0

func (in *DockerComposeLogStream) GetObjectMeta() *metav1.ObjectMeta

func (*DockerComposeLogStream) GetSingularName added in v0.33.0

func (in *DockerComposeLogStream) GetSingularName() string

func (*DockerComposeLogStream) GetStatus added in v0.28.0

func (*DockerComposeLogStream) IsStorageVersion added in v0.28.0

func (in *DockerComposeLogStream) IsStorageVersion() bool

func (*DockerComposeLogStream) Marshal added in v0.28.0

func (m *DockerComposeLogStream) Marshal() (dAtA []byte, err error)

func (*DockerComposeLogStream) MarshalTo added in v0.28.0

func (m *DockerComposeLogStream) MarshalTo(dAtA []byte) (int, error)

func (*DockerComposeLogStream) MarshalToSizedBuffer added in v0.28.0

func (m *DockerComposeLogStream) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DockerComposeLogStream) NamespaceScoped added in v0.28.0

func (in *DockerComposeLogStream) NamespaceScoped() bool

func (*DockerComposeLogStream) New added in v0.28.0

func (*DockerComposeLogStream) NewList added in v0.28.0

func (in *DockerComposeLogStream) NewList() runtime.Object

func (*DockerComposeLogStream) ProtoMessage added in v0.28.0

func (*DockerComposeLogStream) ProtoMessage()

func (*DockerComposeLogStream) Reset added in v0.28.0

func (m *DockerComposeLogStream) Reset()

func (*DockerComposeLogStream) ShortNames added in v0.28.0

func (in *DockerComposeLogStream) ShortNames() []string

func (*DockerComposeLogStream) Size added in v0.28.0

func (m *DockerComposeLogStream) Size() (n int)

func (*DockerComposeLogStream) String added in v0.28.0

func (this *DockerComposeLogStream) String() string

func (*DockerComposeLogStream) Unmarshal added in v0.28.0

func (m *DockerComposeLogStream) Unmarshal(dAtA []byte) error

func (*DockerComposeLogStream) Validate added in v0.28.0

func (*DockerComposeLogStream) XXX_DiscardUnknown added in v0.28.0

func (m *DockerComposeLogStream) XXX_DiscardUnknown()

func (*DockerComposeLogStream) XXX_Marshal added in v0.28.0

func (m *DockerComposeLogStream) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DockerComposeLogStream) XXX_Merge added in v0.28.0

func (m *DockerComposeLogStream) XXX_Merge(src proto.Message)

func (*DockerComposeLogStream) XXX_Size added in v0.28.0

func (m *DockerComposeLogStream) XXX_Size() int

func (*DockerComposeLogStream) XXX_Unmarshal added in v0.28.0

func (m *DockerComposeLogStream) XXX_Unmarshal(b []byte) error

type DockerComposeLogStreamList added in v0.28.0

type DockerComposeLogStreamList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Items []DockerComposeLogStream `json:"items" protobuf:"bytes,2,rep,name=items"`
}

DockerComposeLogStreamList +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*DockerComposeLogStreamList) DeepCopy added in v0.28.0

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

func (*DockerComposeLogStreamList) DeepCopyInto added in v0.28.0

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

func (*DockerComposeLogStreamList) DeepCopyObject added in v0.28.0

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

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

func (*DockerComposeLogStreamList) Descriptor added in v0.28.0

func (*DockerComposeLogStreamList) Descriptor() ([]byte, []int)

func (*DockerComposeLogStreamList) GetListMeta added in v0.28.0

func (in *DockerComposeLogStreamList) GetListMeta() *metav1.ListMeta

func (*DockerComposeLogStreamList) Marshal added in v0.28.0

func (m *DockerComposeLogStreamList) Marshal() (dAtA []byte, err error)

func (*DockerComposeLogStreamList) MarshalTo added in v0.28.0

func (m *DockerComposeLogStreamList) MarshalTo(dAtA []byte) (int, error)

func (*DockerComposeLogStreamList) MarshalToSizedBuffer added in v0.28.0

func (m *DockerComposeLogStreamList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DockerComposeLogStreamList) ProtoMessage added in v0.28.0

func (*DockerComposeLogStreamList) ProtoMessage()

func (*DockerComposeLogStreamList) Reset added in v0.28.0

func (m *DockerComposeLogStreamList) Reset()

func (*DockerComposeLogStreamList) Size added in v0.28.0

func (m *DockerComposeLogStreamList) Size() (n int)

func (*DockerComposeLogStreamList) String added in v0.28.0

func (this *DockerComposeLogStreamList) String() string

func (*DockerComposeLogStreamList) Unmarshal added in v0.28.0

func (m *DockerComposeLogStreamList) Unmarshal(dAtA []byte) error

func (*DockerComposeLogStreamList) XXX_DiscardUnknown added in v0.28.0

func (m *DockerComposeLogStreamList) XXX_DiscardUnknown()

func (*DockerComposeLogStreamList) XXX_Marshal added in v0.28.0

func (m *DockerComposeLogStreamList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DockerComposeLogStreamList) XXX_Merge added in v0.28.0

func (m *DockerComposeLogStreamList) XXX_Merge(src proto.Message)

func (*DockerComposeLogStreamList) XXX_Size added in v0.28.0

func (m *DockerComposeLogStreamList) XXX_Size() int

func (*DockerComposeLogStreamList) XXX_Unmarshal added in v0.28.0

func (m *DockerComposeLogStreamList) XXX_Unmarshal(b []byte) error

type DockerComposeLogStreamSpec added in v0.28.0

type DockerComposeLogStreamSpec struct {
	// The name of the service to stream from.
	Service string `json:"service" protobuf:"bytes,1,opt,name=service"`

	// A specification of the project the service belongs to.
	//
	// Each service spec keeps its own copy of the project spec.
	Project DockerComposeProject `json:"project" protobuf:"bytes,2,opt,name=project"`
}

DockerComposeLogStreamSpec defines the desired state of DockerComposeLogStream

func (*DockerComposeLogStreamSpec) DeepCopy added in v0.28.0

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

func (*DockerComposeLogStreamSpec) DeepCopyInto added in v0.28.0

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

func (*DockerComposeLogStreamSpec) Descriptor added in v0.28.0

func (*DockerComposeLogStreamSpec) Descriptor() ([]byte, []int)

func (*DockerComposeLogStreamSpec) Marshal added in v0.28.0

func (m *DockerComposeLogStreamSpec) Marshal() (dAtA []byte, err error)

func (*DockerComposeLogStreamSpec) MarshalTo added in v0.28.0

func (m *DockerComposeLogStreamSpec) MarshalTo(dAtA []byte) (int, error)

func (*DockerComposeLogStreamSpec) MarshalToSizedBuffer added in v0.28.0

func (m *DockerComposeLogStreamSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DockerComposeLogStreamSpec) ProtoMessage added in v0.28.0

func (*DockerComposeLogStreamSpec) ProtoMessage()

func (*DockerComposeLogStreamSpec) Reset added in v0.28.0

func (m *DockerComposeLogStreamSpec) Reset()

func (*DockerComposeLogStreamSpec) Size added in v0.28.0

func (m *DockerComposeLogStreamSpec) Size() (n int)

func (*DockerComposeLogStreamSpec) String added in v0.28.0

func (this *DockerComposeLogStreamSpec) String() string

func (*DockerComposeLogStreamSpec) Unmarshal added in v0.28.0

func (m *DockerComposeLogStreamSpec) Unmarshal(dAtA []byte) error

func (*DockerComposeLogStreamSpec) XXX_DiscardUnknown added in v0.28.0

func (m *DockerComposeLogStreamSpec) XXX_DiscardUnknown()

func (*DockerComposeLogStreamSpec) XXX_Marshal added in v0.28.0

func (m *DockerComposeLogStreamSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DockerComposeLogStreamSpec) XXX_Merge added in v0.28.0

func (m *DockerComposeLogStreamSpec) XXX_Merge(src proto.Message)

func (*DockerComposeLogStreamSpec) XXX_Size added in v0.28.0

func (m *DockerComposeLogStreamSpec) XXX_Size() int

func (*DockerComposeLogStreamSpec) XXX_Unmarshal added in v0.28.0

func (m *DockerComposeLogStreamSpec) XXX_Unmarshal(b []byte) error

type DockerComposeLogStreamStatus added in v0.28.0

type DockerComposeLogStreamStatus struct {
	// When we last started the log streamer.
	StartedAt metav1.MicroTime `json:"startedAt,omitempty" protobuf:"bytes,1,opt,name=startedAt"`

	// Contains an error message when the log streamer is in an error state.
	Error string `json:"error,omitempty" protobuf:"bytes,2,opt,name=error"`
}

DockerComposeLogStreamStatus defines the observed state of DockerComposeLogStream

func (DockerComposeLogStreamStatus) CopyTo added in v0.28.0

func (*DockerComposeLogStreamStatus) DeepCopy added in v0.28.0

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

func (*DockerComposeLogStreamStatus) DeepCopyInto added in v0.28.0

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

func (*DockerComposeLogStreamStatus) Descriptor added in v0.28.0

func (*DockerComposeLogStreamStatus) Descriptor() ([]byte, []int)

func (*DockerComposeLogStreamStatus) Marshal added in v0.28.0

func (m *DockerComposeLogStreamStatus) Marshal() (dAtA []byte, err error)

func (*DockerComposeLogStreamStatus) MarshalTo added in v0.28.0

func (m *DockerComposeLogStreamStatus) MarshalTo(dAtA []byte) (int, error)

func (*DockerComposeLogStreamStatus) MarshalToSizedBuffer added in v0.28.0

func (m *DockerComposeLogStreamStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DockerComposeLogStreamStatus) ProtoMessage added in v0.28.0

func (*DockerComposeLogStreamStatus) ProtoMessage()

func (*DockerComposeLogStreamStatus) Reset added in v0.28.0

func (m *DockerComposeLogStreamStatus) Reset()

func (*DockerComposeLogStreamStatus) Size added in v0.28.0

func (m *DockerComposeLogStreamStatus) Size() (n int)

func (*DockerComposeLogStreamStatus) String added in v0.28.0

func (this *DockerComposeLogStreamStatus) String() string

func (*DockerComposeLogStreamStatus) Unmarshal added in v0.28.0

func (m *DockerComposeLogStreamStatus) Unmarshal(dAtA []byte) error

func (*DockerComposeLogStreamStatus) XXX_DiscardUnknown added in v0.28.0

func (m *DockerComposeLogStreamStatus) XXX_DiscardUnknown()

func (*DockerComposeLogStreamStatus) XXX_Marshal added in v0.28.0

func (m *DockerComposeLogStreamStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DockerComposeLogStreamStatus) XXX_Merge added in v0.28.0

func (m *DockerComposeLogStreamStatus) XXX_Merge(src proto.Message)

func (*DockerComposeLogStreamStatus) XXX_Size added in v0.28.0

func (m *DockerComposeLogStreamStatus) XXX_Size() int

func (*DockerComposeLogStreamStatus) XXX_Unmarshal added in v0.28.0

func (m *DockerComposeLogStreamStatus) XXX_Unmarshal(b []byte) error

type DockerComposeProject added in v0.25.3

type DockerComposeProject struct {
	// Configuration files to load.
	//
	// If both ConfigPaths and ProjectPath/YAML are specified,
	// the YAML is the source of truth, and the ConfigPaths
	// are used to print diagnostic information.
	ConfigPaths []string `json:"configPaths,omitempty" protobuf:"bytes,1,rep,name=configPaths"`

	// The base path of the docker-compose project.
	//
	// Expressed in docker-compose as --project-directory.
	//
	// When used on the command-line, the Docker Compose spec mandates that this
	// must be the directory of the first yaml file.  All additional yaml files are
	// evaluated relative to this project path.
	ProjectPath string `json:"projectPath,omitempty" protobuf:"bytes,2,opt,name=projectPath"`

	// The docker-compose config YAML.
	//
	// Usually contains multiple services.
	//
	// If you have multiple docker-compose.yaml files, you can combine them into a
	// single YAML with `docker-compose -f file1.yaml -f file2.yaml config`.
	YAML string `json:"yaml,omitempty" protobuf:"bytes,3,opt,name=yaml"`

	// The docker-compose project name.
	//
	// If omitted, the default is to use the NormalizedName of the ProjectPath
	// base name.
	Name string `json:"name,omitempty" protobuf:"bytes,4,opt,name=name"`

	// Path to an env file to use. Passed to docker-compose as `--env-file FILE`.
	EnvFile string `json:"envFile,omitempty" protobuf:"bytes,5,opt,name=envFile"`

	// Optional docker-compose profiles to use.
	//
	// Services with defined profiles will only be included if their profile matches
	// one in this list.
	Profiles []string `json:"profiles,omitempty" protobuf:"bytes,6,rep,name=profiles"`
}

func (*DockerComposeProject) DeepCopy added in v0.25.3

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

func (*DockerComposeProject) DeepCopyInto added in v0.25.3

func (in *DockerComposeProject) DeepCopyInto(out *DockerComposeProject)

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

func (*DockerComposeProject) Descriptor added in v0.25.3

func (*DockerComposeProject) Descriptor() ([]byte, []int)

func (*DockerComposeProject) Marshal added in v0.25.3

func (m *DockerComposeProject) Marshal() (dAtA []byte, err error)

func (*DockerComposeProject) MarshalTo added in v0.25.3

func (m *DockerComposeProject) MarshalTo(dAtA []byte) (int, error)

func (*DockerComposeProject) MarshalToSizedBuffer added in v0.25.3

func (m *DockerComposeProject) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DockerComposeProject) ProtoMessage added in v0.25.3

func (*DockerComposeProject) ProtoMessage()

func (*DockerComposeProject) Reset added in v0.25.3

func (m *DockerComposeProject) Reset()

func (*DockerComposeProject) Size added in v0.25.3

func (m *DockerComposeProject) Size() (n int)

func (*DockerComposeProject) String added in v0.25.3

func (this *DockerComposeProject) String() string

func (*DockerComposeProject) Unmarshal added in v0.25.3

func (m *DockerComposeProject) Unmarshal(dAtA []byte) error

func (*DockerComposeProject) XXX_DiscardUnknown added in v0.25.3

func (m *DockerComposeProject) XXX_DiscardUnknown()

func (*DockerComposeProject) XXX_Marshal added in v0.25.3

func (m *DockerComposeProject) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DockerComposeProject) XXX_Merge added in v0.25.3

func (m *DockerComposeProject) XXX_Merge(src proto.Message)

func (*DockerComposeProject) XXX_Size added in v0.25.3

func (m *DockerComposeProject) XXX_Size() int

func (*DockerComposeProject) XXX_Unmarshal added in v0.25.3

func (m *DockerComposeProject) XXX_Unmarshal(b []byte) error

type DockerComposeService added in v0.25.3

type DockerComposeService struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Spec   DockerComposeServiceSpec   `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
	Status DockerComposeServiceStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
}

DockerComposeService represents a container orchestrated by Docker Compose.

+k8s:openapi-gen=true

func (*DockerComposeService) DeepCopy added in v0.25.3

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

func (*DockerComposeService) DeepCopyInto added in v0.25.3

func (in *DockerComposeService) DeepCopyInto(out *DockerComposeService)

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

func (*DockerComposeService) DeepCopyObject added in v0.25.3

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

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

func (*DockerComposeService) Descriptor added in v0.25.3

func (*DockerComposeService) Descriptor() ([]byte, []int)

func (*DockerComposeService) GetGroupVersionResource added in v0.25.3

func (in *DockerComposeService) GetGroupVersionResource() schema.GroupVersionResource

func (*DockerComposeService) GetObjectMeta added in v0.25.3

func (in *DockerComposeService) GetObjectMeta() *metav1.ObjectMeta

func (*DockerComposeService) GetSingularName added in v0.33.0

func (in *DockerComposeService) GetSingularName() string

func (*DockerComposeService) GetSpec added in v0.26.0

func (in *DockerComposeService) GetSpec() interface{}

func (*DockerComposeService) GetStatus added in v0.25.3

func (*DockerComposeService) IsStorageVersion added in v0.25.3

func (in *DockerComposeService) IsStorageVersion() bool

func (*DockerComposeService) Marshal added in v0.25.3

func (m *DockerComposeService) Marshal() (dAtA []byte, err error)

func (*DockerComposeService) MarshalTo added in v0.25.3

func (m *DockerComposeService) MarshalTo(dAtA []byte) (int, error)

func (*DockerComposeService) MarshalToSizedBuffer added in v0.25.3

func (m *DockerComposeService) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DockerComposeService) NamespaceScoped added in v0.25.3

func (in *DockerComposeService) NamespaceScoped() bool

func (*DockerComposeService) New added in v0.25.3

func (*DockerComposeService) NewList added in v0.25.3

func (in *DockerComposeService) NewList() runtime.Object

func (*DockerComposeService) ProtoMessage added in v0.25.3

func (*DockerComposeService) ProtoMessage()

func (*DockerComposeService) Reset added in v0.25.3

func (m *DockerComposeService) Reset()

func (*DockerComposeService) ShortNames added in v0.25.3

func (in *DockerComposeService) ShortNames() []string

func (*DockerComposeService) Size added in v0.25.3

func (m *DockerComposeService) Size() (n int)

func (*DockerComposeService) String added in v0.25.3

func (this *DockerComposeService) String() string

func (*DockerComposeService) Unmarshal added in v0.25.3

func (m *DockerComposeService) Unmarshal(dAtA []byte) error

func (*DockerComposeService) Validate added in v0.25.3

func (*DockerComposeService) XXX_DiscardUnknown added in v0.25.3

func (m *DockerComposeService) XXX_DiscardUnknown()

func (*DockerComposeService) XXX_Marshal added in v0.25.3

func (m *DockerComposeService) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DockerComposeService) XXX_Merge added in v0.25.3

func (m *DockerComposeService) XXX_Merge(src proto.Message)

func (*DockerComposeService) XXX_Size added in v0.25.3

func (m *DockerComposeService) XXX_Size() int

func (*DockerComposeService) XXX_Unmarshal added in v0.25.3

func (m *DockerComposeService) XXX_Unmarshal(b []byte) error

type DockerComposeServiceList added in v0.25.3

type DockerComposeServiceList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Items []DockerComposeService `json:"items" protobuf:"bytes,2,rep,name=items"`
}

DockerComposeServiceList +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*DockerComposeServiceList) DeepCopy added in v0.25.3

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

func (*DockerComposeServiceList) DeepCopyInto added in v0.25.3

func (in *DockerComposeServiceList) DeepCopyInto(out *DockerComposeServiceList)

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

func (*DockerComposeServiceList) DeepCopyObject added in v0.25.3

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

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

func (*DockerComposeServiceList) Descriptor added in v0.25.3

func (*DockerComposeServiceList) Descriptor() ([]byte, []int)

func (*DockerComposeServiceList) GetListMeta added in v0.25.3

func (in *DockerComposeServiceList) GetListMeta() *metav1.ListMeta

func (*DockerComposeServiceList) Marshal added in v0.25.3

func (m *DockerComposeServiceList) Marshal() (dAtA []byte, err error)

func (*DockerComposeServiceList) MarshalTo added in v0.25.3

func (m *DockerComposeServiceList) MarshalTo(dAtA []byte) (int, error)

func (*DockerComposeServiceList) MarshalToSizedBuffer added in v0.25.3

func (m *DockerComposeServiceList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DockerComposeServiceList) ProtoMessage added in v0.25.3

func (*DockerComposeServiceList) ProtoMessage()

func (*DockerComposeServiceList) Reset added in v0.25.3

func (m *DockerComposeServiceList) Reset()

func (*DockerComposeServiceList) Size added in v0.25.3

func (m *DockerComposeServiceList) Size() (n int)

func (*DockerComposeServiceList) String added in v0.25.3

func (this *DockerComposeServiceList) String() string

func (*DockerComposeServiceList) Unmarshal added in v0.25.3

func (m *DockerComposeServiceList) Unmarshal(dAtA []byte) error

func (*DockerComposeServiceList) XXX_DiscardUnknown added in v0.25.3

func (m *DockerComposeServiceList) XXX_DiscardUnknown()

func (*DockerComposeServiceList) XXX_Marshal added in v0.25.3

func (m *DockerComposeServiceList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DockerComposeServiceList) XXX_Merge added in v0.25.3

func (m *DockerComposeServiceList) XXX_Merge(src proto.Message)

func (*DockerComposeServiceList) XXX_Size added in v0.25.3

func (m *DockerComposeServiceList) XXX_Size() int

func (*DockerComposeServiceList) XXX_Unmarshal added in v0.25.3

func (m *DockerComposeServiceList) XXX_Unmarshal(b []byte) error

type DockerComposeServiceSpec added in v0.25.3

type DockerComposeServiceSpec struct {
	// The name of the service to create.
	Service string `json:"service" protobuf:"bytes,1,opt,name=service"`

	// A specification of the project the service belongs to.
	//
	// Each service spec keeps its own copy of the project spec.
	Project DockerComposeProject `json:"project" protobuf:"bytes,2,opt,name=project"`

	// The image maps that this deploy depends on.
	ImageMaps []string `json:"imageMaps,omitempty" protobuf:"bytes,3,rep,name=imageMaps"`

	// Specifies how to disable this.
	//
	// +optional
	DisableSource *DisableSource `json:"disableSource,omitempty" protobuf:"bytes,4,opt,name=disableSource"`
}

DockerComposeServiceSpec defines the desired state a Docker Compose container.

func (*DockerComposeServiceSpec) DeepCopy added in v0.25.3

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

func (*DockerComposeServiceSpec) DeepCopyInto added in v0.25.3

func (in *DockerComposeServiceSpec) DeepCopyInto(out *DockerComposeServiceSpec)

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

func (*DockerComposeServiceSpec) Descriptor added in v0.25.3

func (*DockerComposeServiceSpec) Descriptor() ([]byte, []int)

func (*DockerComposeServiceSpec) Marshal added in v0.25.3

func (m *DockerComposeServiceSpec) Marshal() (dAtA []byte, err error)

func (*DockerComposeServiceSpec) MarshalTo added in v0.25.3

func (m *DockerComposeServiceSpec) MarshalTo(dAtA []byte) (int, error)

func (*DockerComposeServiceSpec) MarshalToSizedBuffer added in v0.25.3

func (m *DockerComposeServiceSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DockerComposeServiceSpec) ProtoMessage added in v0.25.3

func (*DockerComposeServiceSpec) ProtoMessage()

func (*DockerComposeServiceSpec) Reset added in v0.25.3

func (m *DockerComposeServiceSpec) Reset()

func (*DockerComposeServiceSpec) Size added in v0.25.3

func (m *DockerComposeServiceSpec) Size() (n int)

func (*DockerComposeServiceSpec) String added in v0.25.3

func (this *DockerComposeServiceSpec) String() string

func (*DockerComposeServiceSpec) Unmarshal added in v0.25.3

func (m *DockerComposeServiceSpec) Unmarshal(dAtA []byte) error

func (*DockerComposeServiceSpec) XXX_DiscardUnknown added in v0.25.3

func (m *DockerComposeServiceSpec) XXX_DiscardUnknown()

func (*DockerComposeServiceSpec) XXX_Marshal added in v0.25.3

func (m *DockerComposeServiceSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DockerComposeServiceSpec) XXX_Merge added in v0.25.3

func (m *DockerComposeServiceSpec) XXX_Merge(src proto.Message)

func (*DockerComposeServiceSpec) XXX_Size added in v0.25.3

func (m *DockerComposeServiceSpec) XXX_Size() int

func (*DockerComposeServiceSpec) XXX_Unmarshal added in v0.25.3

func (m *DockerComposeServiceSpec) XXX_Unmarshal(b []byte) error

type DockerComposeServiceStatus added in v0.25.3

type DockerComposeServiceStatus struct {
	// Details about whether/why this is disabled.
	// +optional
	DisableStatus *DisableStatus `json:"disableStatus,omitempty" protobuf:"bytes,1,opt,name=disableStatus"`

	// How docker binds container ports to the host network for this service.
	// +optional
	PortBindings []DockerPortBinding `json:"portBindings,omitempty" protobuf:"bytes,2,rep,name=portBindings"`

	// Current state of the container for this service.
	// +optional
	ContainerState *DockerContainerState `json:"containerState,omitempty" protobuf:"bytes,3,opt,name=containerState"`

	// Current container ID.
	// +optional
	ContainerID string `json:"containerID,omitempty" protobuf:"bytes,4,opt,name=containerID"`

	// Current container name.
	// +optional
	ContainerName string `json:"containerName,omitempty" protobuf:"bytes,8,opt,name=containerName"`

	// An error bringing up the container.
	//
	// +optional
	ApplyError string `json:"applyError,omitempty" protobuf:"bytes,5,opt,name=applyError"`

	// Timestamp of when we last started bringing up this service in Docker Compose.
	//
	// +optional
	LastApplyStartTime metav1.MicroTime `json:"lastApplyStartTime,omitempty" protobuf:"bytes,6,opt,name=lastApplyStartTime"`

	// Timestamp of when we last finished bringing up this service in Docker Compose.
	//
	// When populated, must be equal or after the LastApplyStartTime field.
	//
	// +optional
	LastApplyFinishTime metav1.MicroTime `json:"lastApplyFinishTime,omitempty" protobuf:"bytes,7,opt,name=lastApplyFinishTime"`
}

DockerComposeServiceStatus defines the observed state of DockerComposeService, continuing to watch the container after it starts.

func (DockerComposeServiceStatus) CopyTo added in v0.25.3

func (*DockerComposeServiceStatus) DeepCopy added in v0.25.3

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

func (*DockerComposeServiceStatus) DeepCopyInto added in v0.25.3

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

func (*DockerComposeServiceStatus) Descriptor added in v0.25.3

func (*DockerComposeServiceStatus) Descriptor() ([]byte, []int)

func (*DockerComposeServiceStatus) Marshal added in v0.25.3

func (m *DockerComposeServiceStatus) Marshal() (dAtA []byte, err error)

func (*DockerComposeServiceStatus) MarshalTo added in v0.25.3

func (m *DockerComposeServiceStatus) MarshalTo(dAtA []byte) (int, error)

func (*DockerComposeServiceStatus) MarshalToSizedBuffer added in v0.25.3

func (m *DockerComposeServiceStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DockerComposeServiceStatus) ProtoMessage added in v0.25.3

func (*DockerComposeServiceStatus) ProtoMessage()

func (*DockerComposeServiceStatus) Reset added in v0.25.3

func (m *DockerComposeServiceStatus) Reset()

func (*DockerComposeServiceStatus) Size added in v0.25.3

func (m *DockerComposeServiceStatus) Size() (n int)

func (*DockerComposeServiceStatus) String added in v0.25.3

func (this *DockerComposeServiceStatus) String() string

func (*DockerComposeServiceStatus) Unmarshal added in v0.25.3

func (m *DockerComposeServiceStatus) Unmarshal(dAtA []byte) error

func (*DockerComposeServiceStatus) XXX_DiscardUnknown added in v0.25.3

func (m *DockerComposeServiceStatus) XXX_DiscardUnknown()

func (*DockerComposeServiceStatus) XXX_Marshal added in v0.25.3

func (m *DockerComposeServiceStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DockerComposeServiceStatus) XXX_Merge added in v0.25.3

func (m *DockerComposeServiceStatus) XXX_Merge(src proto.Message)

func (*DockerComposeServiceStatus) XXX_Size added in v0.25.3

func (m *DockerComposeServiceStatus) XXX_Size() int

func (*DockerComposeServiceStatus) XXX_Unmarshal added in v0.25.3

func (m *DockerComposeServiceStatus) XXX_Unmarshal(b []byte) error

type DockerContainerState added in v0.26.0

type DockerContainerState struct {
	// String representation of the container state.
	// Can be one of "created", "running", "paused", "restarting", "removing", "exited", or "dead".
	// +optional
	Status string `json:"status,omitempty" protobuf:"bytes,1,opt,name=status"`

	// Whether the container is running.
	// +optional
	Running bool `json:"running,omitempty" protobuf:"varint,2,opt,name=running"`

	// Whether the container is in an error state.
	// +optional
	Error string `json:"error,omitempty" protobuf:"bytes,3,opt,name=error"`

	// The exit code, if the container has exited.
	// +optional
	ExitCode int32 `json:"exitCode,omitempty" protobuf:"varint,4,opt,name=exitCode"`

	// When the container process started.
	// +optional
	StartedAt metav1.MicroTime `json:"startedAt,omitempty" protobuf:"bytes,5,opt,name=startedAt"`

	// When the container process finished.
	// +optional
	FinishedAt metav1.MicroTime `json:"finishedAt,omitempty" protobuf:"bytes,6,opt,name=finishedAt"`
}

State of a standalone container in Docker.

An apiserver-compatible representation of this struct: https://pkg.go.dev/github.com/docker/docker/api/types#ContainerState

func (*DockerContainerState) DeepCopy added in v0.26.0

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

func (*DockerContainerState) DeepCopyInto added in v0.26.0

func (in *DockerContainerState) DeepCopyInto(out *DockerContainerState)

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

func (*DockerContainerState) Descriptor added in v0.26.0

func (*DockerContainerState) Descriptor() ([]byte, []int)

func (*DockerContainerState) Marshal added in v0.26.0

func (m *DockerContainerState) Marshal() (dAtA []byte, err error)

func (*DockerContainerState) MarshalTo added in v0.26.0

func (m *DockerContainerState) MarshalTo(dAtA []byte) (int, error)

func (*DockerContainerState) MarshalToSizedBuffer added in v0.26.0

func (m *DockerContainerState) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DockerContainerState) ProtoMessage added in v0.26.0

func (*DockerContainerState) ProtoMessage()

func (*DockerContainerState) Reset added in v0.26.0

func (m *DockerContainerState) Reset()

func (*DockerContainerState) Size added in v0.26.0

func (m *DockerContainerState) Size() (n int)

func (*DockerContainerState) String added in v0.26.0

func (this *DockerContainerState) String() string

func (*DockerContainerState) Unmarshal added in v0.26.0

func (m *DockerContainerState) Unmarshal(dAtA []byte) error

func (*DockerContainerState) XXX_DiscardUnknown added in v0.26.0

func (m *DockerContainerState) XXX_DiscardUnknown()

func (*DockerContainerState) XXX_Marshal added in v0.26.0

func (m *DockerContainerState) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DockerContainerState) XXX_Merge added in v0.26.0

func (m *DockerContainerState) XXX_Merge(src proto.Message)

func (*DockerContainerState) XXX_Size added in v0.26.0

func (m *DockerContainerState) XXX_Size() int

func (*DockerContainerState) XXX_Unmarshal added in v0.26.0

func (m *DockerContainerState) XXX_Unmarshal(b []byte) error

type DockerImage added in v0.23.0

type DockerImage struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Spec   DockerImageSpec   `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
	Status DockerImageStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
}

DockerImage describes an image to build with Docker. +k8s:openapi-gen=true

func (*DockerImage) DeepCopy added in v0.23.0

func (in *DockerImage) DeepCopy() *DockerImage

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

func (*DockerImage) DeepCopyInto added in v0.23.0

func (in *DockerImage) DeepCopyInto(out *DockerImage)

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

func (*DockerImage) DeepCopyObject added in v0.23.0

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

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

func (*DockerImage) Descriptor added in v0.23.0

func (*DockerImage) Descriptor() ([]byte, []int)

func (*DockerImage) GetGroupVersionResource added in v0.23.0

func (in *DockerImage) GetGroupVersionResource() schema.GroupVersionResource

func (*DockerImage) GetObjectMeta added in v0.23.0

func (in *DockerImage) GetObjectMeta() *metav1.ObjectMeta

func (*DockerImage) GetSingularName added in v0.33.0

func (in *DockerImage) GetSingularName() string

func (*DockerImage) GetSpec added in v0.23.1

func (in *DockerImage) GetSpec() interface{}

func (*DockerImage) GetStatus added in v0.23.0

func (in *DockerImage) GetStatus() resource.StatusSubResource

func (*DockerImage) IsStorageVersion added in v0.23.0

func (in *DockerImage) IsStorageVersion() bool

func (*DockerImage) Marshal added in v0.23.0

func (m *DockerImage) Marshal() (dAtA []byte, err error)

func (*DockerImage) MarshalTo added in v0.23.0

func (m *DockerImage) MarshalTo(dAtA []byte) (int, error)

func (*DockerImage) MarshalToSizedBuffer added in v0.23.0

func (m *DockerImage) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DockerImage) NamespaceScoped added in v0.23.0

func (in *DockerImage) NamespaceScoped() bool

func (*DockerImage) New added in v0.23.0

func (in *DockerImage) New() runtime.Object

func (*DockerImage) NewList added in v0.23.0

func (in *DockerImage) NewList() runtime.Object

func (*DockerImage) ProtoMessage added in v0.23.0

func (*DockerImage) ProtoMessage()

func (*DockerImage) Reset added in v0.23.0

func (m *DockerImage) Reset()

func (*DockerImage) Size added in v0.23.0

func (m *DockerImage) Size() (n int)

func (*DockerImage) String added in v0.23.0

func (this *DockerImage) String() string

func (*DockerImage) Unmarshal added in v0.23.0

func (m *DockerImage) Unmarshal(dAtA []byte) error

func (*DockerImage) Validate added in v0.23.0

func (in *DockerImage) Validate(ctx context.Context) field.ErrorList

func (*DockerImage) XXX_DiscardUnknown added in v0.23.0

func (m *DockerImage) XXX_DiscardUnknown()

func (*DockerImage) XXX_Marshal added in v0.23.0

func (m *DockerImage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DockerImage) XXX_Merge added in v0.23.0

func (m *DockerImage) XXX_Merge(src proto.Message)

func (*DockerImage) XXX_Size added in v0.23.0

func (m *DockerImage) XXX_Size() int

func (*DockerImage) XXX_Unmarshal added in v0.23.0

func (m *DockerImage) XXX_Unmarshal(b []byte) error

type DockerImageList added in v0.23.0

type DockerImageList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Items []DockerImage `json:"items" protobuf:"bytes,2,rep,name=items"`
}

DockerImageList +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*DockerImageList) DeepCopy added in v0.23.0

func (in *DockerImageList) DeepCopy() *DockerImageList

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

func (*DockerImageList) DeepCopyInto added in v0.23.0

func (in *DockerImageList) DeepCopyInto(out *DockerImageList)

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

func (*DockerImageList) DeepCopyObject added in v0.23.0

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

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

func (*DockerImageList) Descriptor added in v0.23.0

func (*DockerImageList) Descriptor() ([]byte, []int)

func (*DockerImageList) GetListMeta added in v0.23.0

func (in *DockerImageList) GetListMeta() *metav1.ListMeta

func (*DockerImageList) Marshal added in v0.23.0

func (m *DockerImageList) Marshal() (dAtA []byte, err error)

func (*DockerImageList) MarshalTo added in v0.23.0

func (m *DockerImageList) MarshalTo(dAtA []byte) (int, error)

func (*DockerImageList) MarshalToSizedBuffer added in v0.23.0

func (m *DockerImageList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DockerImageList) ProtoMessage added in v0.23.0

func (*DockerImageList) ProtoMessage()

func (*DockerImageList) Reset added in v0.23.0

func (m *DockerImageList) Reset()

func (*DockerImageList) Size added in v0.23.0

func (m *DockerImageList) Size() (n int)

func (*DockerImageList) String added in v0.23.0

func (this *DockerImageList) String() string

func (*DockerImageList) Unmarshal added in v0.23.0

func (m *DockerImageList) Unmarshal(dAtA []byte) error

func (*DockerImageList) XXX_DiscardUnknown added in v0.23.0

func (m *DockerImageList) XXX_DiscardUnknown()

func (*DockerImageList) XXX_Marshal added in v0.23.0

func (m *DockerImageList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DockerImageList) XXX_Merge added in v0.23.0

func (m *DockerImageList) XXX_Merge(src proto.Message)

func (*DockerImageList) XXX_Size added in v0.23.0

func (m *DockerImageList) XXX_Size() int

func (*DockerImageList) XXX_Unmarshal added in v0.23.0

func (m *DockerImageList) XXX_Unmarshal(b []byte) error

type DockerImageSpec added in v0.23.0

type DockerImageSpec struct {
	// The named reference of the image.
	Ref string `json:"ref" protobuf:"bytes,12,opt,name=ref"`

	// Dockerfile contains the complete contents of the Dockerfile.
	//
	// TODO(nick): We should also support referencing the Dockerfile as a path.
	//
	// +optional
	DockerfileContents string `json:"dockerfileContents,omitempty" protobuf:"bytes,1,opt,name=dockerfileContents"`

	// Context specifies the Docker build context.
	//
	// Must be an absolute path on the local filesystem.
	//
	// +tilt:local-path=true
	Context string `json:"context,omitempty" protobuf:"bytes,2,opt,name=context"`

	// Ignores are filters on the Docker build context.
	//
	// The DockerImage controller will NOT read ignores from .dockerignore files.
	// Instead, all filters must be expressed in this field, which covers
	// .dockerignore files, ignore= lists in the tiltfile, only= lists in the
	// tiltfile, and more.
	ContextIgnores []IgnoreDef `json:"contextIgnores,omitempty" protobuf:"bytes,16,rep,name=contextIgnores"`

	// Args specifies the build arguments to the Dockerfile.
	//
	// Equivalent to `--build-arg` in the docker CLI.
	//
	// Each item should take the form "KEY" or "KEY=VALUE".
	//
	// +optional
	Args []string `json:"args,omitempty" protobuf:"bytes,3,rep,name=args"`

	// Target specifies the name of the stage in the Dockerfile to build.
	//
	// Equivalent to `--target` in the docker CLI.
	//
	// +optional
	Target string `json:"target,omitempty" protobuf:"bytes,4,opt,name=target"`

	// Pass SSH secrets to docker so it can clone private repos.
	//
	// https://docs.docker.com/develop/develop-images/build_enhancements/#using-ssh-to-access-private-data-in-builds
	//
	// Equivalent to `--ssh` in the docker CLI.
	//
	// +optional
	SSHAgentConfigs []string `json:"sshAgentConfigs,omitempty" protobuf:"bytes,5,rep,name=sshAgentConfigs"`

	// Pass secrets to docker.
	//
	// https://docs.docker.com/develop/develop-images/build_enhancements/#new-docker-build-secret-information
	//
	// Equivalent to `--secret` in the Docker CLI.
	//
	// +optional
	Secrets []string `json:"secrets,omitempty" protobuf:"bytes,6,rep,name=secrets"`

	// Set the networking mode for the RUN instructions in the docker build.
	//
	// Equivalent to `--network` in the Docker CLI.
	//
	// +optional
	Network string `json:"network,omitempty" protobuf:"bytes,7,opt,name=network"`

	// Always attempt to pull a new version of the base image.
	//
	// Equivalent to `--pull` in the Docker CLI.
	//
	// +optional
	Pull bool `json:"pull,omitempty" protobuf:"varint,8,opt,name=pull"`

	// Images to use as cache sources.
	//
	// Equivalent to `--cache-from` in the Docker CLI.
	CacheFrom []string `json:"cacheFrom,omitempty" protobuf:"bytes,9,rep,name=cacheFrom"`

	// Platform specifies architecture information for target image.
	//
	// https://docs.docker.com/desktop/multi-arch/
	//
	// Equivalent to `--platform` in the Docker CLI.
	Platform string `json:"platform,omitempty" protobuf:"bytes,10,opt,name=platform"`

	// By default, Tilt creates a new temporary image reference for each build.
	// The user can also specify their own reference, to integrate with other tooling
	// (like build IDs for Jenkins build pipelines)
	//
	// Equivalent to the docker build --tag flag.
	//
	// +optional
	ExtraTags []string `json:"extraTags,omitempty" protobuf:"bytes,11,rep,name=extraTags"`

	// Names of image maps that this build depends on.
	//
	// The controller will watch all the image maps, rebuild the image if any of
	// the maps resolve to a new image, and inject them into the dockerfile.
	//
	// +optional
	ImageMaps []string `json:"imageMaps,omitempty" protobuf:"bytes,13,rep,name=imageMaps"`

	// The name of the cluster we're building for.
	//
	// We'll use the cluster to determine the architecture of the image to build,
	// and the registry to build it for.
	//
	// If no cluster is specified, assumes the default cluster.
	//
	// +optional
	Cluster string `json:"cluster,omitempty" protobuf:"bytes,14,opt,name=cluster"`

	// Whether the cluster needs access to the image.
	//
	// If not specified, assumes we have to push up to the cluster.
	//
	// +optional
	ClusterNeeds ClusterImageNeeds `json:"clusterNeeds,omitempty" protobuf:"bytes,15,opt,name=clusterNeeds,casttype=ClusterImageNeeds"`

	// Other hosts to be added into a container’s /etc/hosts file
	//
	// https://docs.docker.com/engine/reference/commandline/build/#add-host
	//
	// Equivalent to `--add-host` in the Docker CLI.
	ExtraHosts []string `json:"extraHosts,omitempty" protobuf:"bytes,17,opt,name=extraHosts"`
}

DockerImageSpec describes how to build a Docker image with `docker_build`.

Most fields of this spec directly correspond to the Docker CLI.

func (*DockerImageSpec) DeepCopy added in v0.23.0

func (in *DockerImageSpec) DeepCopy() *DockerImageSpec

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

func (*DockerImageSpec) DeepCopyInto added in v0.23.0

func (in *DockerImageSpec) DeepCopyInto(out *DockerImageSpec)

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

func (*DockerImageSpec) Descriptor added in v0.23.0

func (*DockerImageSpec) Descriptor() ([]byte, []int)

func (*DockerImageSpec) Marshal added in v0.23.0

func (m *DockerImageSpec) Marshal() (dAtA []byte, err error)

func (*DockerImageSpec) MarshalTo added in v0.23.0

func (m *DockerImageSpec) MarshalTo(dAtA []byte) (int, error)

func (*DockerImageSpec) MarshalToSizedBuffer added in v0.23.0

func (m *DockerImageSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DockerImageSpec) ProtoMessage added in v0.23.0

func (*DockerImageSpec) ProtoMessage()

func (*DockerImageSpec) Reset added in v0.23.0

func (m *DockerImageSpec) Reset()

func (*DockerImageSpec) Size added in v0.23.0

func (m *DockerImageSpec) Size() (n int)

func (*DockerImageSpec) String added in v0.23.0

func (this *DockerImageSpec) String() string

func (*DockerImageSpec) Unmarshal added in v0.23.0

func (m *DockerImageSpec) Unmarshal(dAtA []byte) error

func (*DockerImageSpec) XXX_DiscardUnknown added in v0.23.0

func (m *DockerImageSpec) XXX_DiscardUnknown()

func (*DockerImageSpec) XXX_Marshal added in v0.23.0

func (m *DockerImageSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DockerImageSpec) XXX_Merge added in v0.23.0

func (m *DockerImageSpec) XXX_Merge(src proto.Message)

func (*DockerImageSpec) XXX_Size added in v0.23.0

func (m *DockerImageSpec) XXX_Size() int

func (*DockerImageSpec) XXX_Unmarshal added in v0.23.0

func (m *DockerImageSpec) XXX_Unmarshal(b []byte) error

type DockerImageStageStatus added in v0.23.1

type DockerImageStageStatus struct {
	// A human-readable name of the stage.
	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`

	// Whether Buildkit was able to cache the stage based on inputs.
	// +optional
	Cached bool `json:"cached,omitempty" protobuf:"varint,2,opt,name=cached"`

	// The timestamp when we started working on the stage.
	// +optional
	StartedAt *metav1.MicroTime `json:"startedAt,omitempty" protobuf:"bytes,6,opt,name=startedAt"`

	// The timetsamp when we completed the work on the stage.
	// +optional
	FinishedAt *metav1.MicroTime `json:"finishedAt,omitempty" protobuf:"bytes,7,opt,name=finishedAt"`

	// Error message if the stage failed. If empty, the stage succeeded.
	// +optional
	Error string `json:"error,omitempty" protobuf:"bytes,5,opt,name=error"`
}

DockerImageStageStatus gives detailed report of each stage of the most recent image build.

Most stages are derived from Buildkit's StatusResponse https://github.com/moby/buildkit/blob/35fcb28a009d6454b2915a5c8084b25ad851cf38/api/services/control/control.proto#L108 but Tilt may synthesize its own stages for the steps it owns.

Stages may be executed in parallel.

func (*DockerImageStageStatus) DeepCopy added in v0.23.1

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

func (*DockerImageStageStatus) DeepCopyInto added in v0.23.1

func (in *DockerImageStageStatus) DeepCopyInto(out *DockerImageStageStatus)

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

func (*DockerImageStageStatus) Descriptor added in v0.23.1

func (*DockerImageStageStatus) Descriptor() ([]byte, []int)

func (*DockerImageStageStatus) Marshal added in v0.23.1

func (m *DockerImageStageStatus) Marshal() (dAtA []byte, err error)

func (*DockerImageStageStatus) MarshalTo added in v0.23.1

func (m *DockerImageStageStatus) MarshalTo(dAtA []byte) (int, error)

func (*DockerImageStageStatus) MarshalToSizedBuffer added in v0.23.1

func (m *DockerImageStageStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DockerImageStageStatus) ProtoMessage added in v0.23.1

func (*DockerImageStageStatus) ProtoMessage()

func (*DockerImageStageStatus) Reset added in v0.23.1

func (m *DockerImageStageStatus) Reset()

func (*DockerImageStageStatus) Size added in v0.23.1

func (m *DockerImageStageStatus) Size() (n int)

func (*DockerImageStageStatus) String added in v0.23.1

func (this *DockerImageStageStatus) String() string

func (*DockerImageStageStatus) Unmarshal added in v0.23.1

func (m *DockerImageStageStatus) Unmarshal(dAtA []byte) error

func (*DockerImageStageStatus) XXX_DiscardUnknown added in v0.23.1

func (m *DockerImageStageStatus) XXX_DiscardUnknown()

func (*DockerImageStageStatus) XXX_Marshal added in v0.23.1

func (m *DockerImageStageStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DockerImageStageStatus) XXX_Merge added in v0.23.1

func (m *DockerImageStageStatus) XXX_Merge(src proto.Message)

func (*DockerImageStageStatus) XXX_Size added in v0.23.1

func (m *DockerImageStageStatus) XXX_Size() int

func (*DockerImageStageStatus) XXX_Unmarshal added in v0.23.1

func (m *DockerImageStageStatus) XXX_Unmarshal(b []byte) error

type DockerImageStateBuilding added in v0.23.1

type DockerImageStateBuilding struct {
	// The reason why the image is building.
	// +optional
	Reason string `json:"reason,omitempty" protobuf:"bytes,1,opt,name=reason"`

	// Time when the build started.
	StartedAt metav1.MicroTime `json:"startedAt,omitempty" protobuf:"bytes,2,opt,name=startedAt"`
}

DockerImageStateBuilding expresses that an image build is in-progress.

func (*DockerImageStateBuilding) DeepCopy added in v0.23.1

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

func (*DockerImageStateBuilding) DeepCopyInto added in v0.23.1

func (in *DockerImageStateBuilding) DeepCopyInto(out *DockerImageStateBuilding)

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

func (*DockerImageStateBuilding) Descriptor added in v0.23.1

func (*DockerImageStateBuilding) Descriptor() ([]byte, []int)

func (*DockerImageStateBuilding) Marshal added in v0.23.1

func (m *DockerImageStateBuilding) Marshal() (dAtA []byte, err error)

func (*DockerImageStateBuilding) MarshalTo added in v0.23.1

func (m *DockerImageStateBuilding) MarshalTo(dAtA []byte) (int, error)

func (*DockerImageStateBuilding) MarshalToSizedBuffer added in v0.23.1

func (m *DockerImageStateBuilding) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DockerImageStateBuilding) ProtoMessage added in v0.23.1

func (*DockerImageStateBuilding) ProtoMessage()

func (*DockerImageStateBuilding) Reset added in v0.23.1

func (m *DockerImageStateBuilding) Reset()

func (*DockerImageStateBuilding) Size added in v0.23.1

func (m *DockerImageStateBuilding) Size() (n int)

func (*DockerImageStateBuilding) String added in v0.23.1

func (this *DockerImageStateBuilding) String() string

func (*DockerImageStateBuilding) Unmarshal added in v0.23.1

func (m *DockerImageStateBuilding) Unmarshal(dAtA []byte) error

func (*DockerImageStateBuilding) XXX_DiscardUnknown added in v0.23.1

func (m *DockerImageStateBuilding) XXX_DiscardUnknown()

func (*DockerImageStateBuilding) XXX_Marshal added in v0.23.1

func (m *DockerImageStateBuilding) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DockerImageStateBuilding) XXX_Merge added in v0.23.1

func (m *DockerImageStateBuilding) XXX_Merge(src proto.Message)

func (*DockerImageStateBuilding) XXX_Size added in v0.23.1

func (m *DockerImageStateBuilding) XXX_Size() int

func (*DockerImageStateBuilding) XXX_Unmarshal added in v0.23.1

func (m *DockerImageStateBuilding) XXX_Unmarshal(b []byte) error

type DockerImageStateCompleted added in v0.23.1

type DockerImageStateCompleted struct {
	// The reason why the image was built.
	// +optional
	Reason string `json:"reason,omitempty" protobuf:"bytes,1,opt,name=reason"`

	// Error message if the build failed.
	// +optional
	Error string `json:"error,omitempty" protobuf:"bytes,2,opt,name=error"`

	// Time when we started building an image.
	StartedAt metav1.MicroTime `json:"startedAt,omitempty" protobuf:"bytes,3,opt,name=startedAt"`

	// Time when we finished building an image
	FinishedAt metav1.MicroTime `json:"finishedAt,omitempty" protobuf:"bytes,4,opt,name=finishedAt"`
}

DockerImageStateCompleted expresses when the image build is finished and no new images need to be built.

func (*DockerImageStateCompleted) DeepCopy added in v0.23.1

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

func (*DockerImageStateCompleted) DeepCopyInto added in v0.23.1

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

func (*DockerImageStateCompleted) Descriptor added in v0.23.1

func (*DockerImageStateCompleted) Descriptor() ([]byte, []int)

func (*DockerImageStateCompleted) Marshal added in v0.23.1

func (m *DockerImageStateCompleted) Marshal() (dAtA []byte, err error)

func (*DockerImageStateCompleted) MarshalTo added in v0.23.1

func (m *DockerImageStateCompleted) MarshalTo(dAtA []byte) (int, error)

func (*DockerImageStateCompleted) MarshalToSizedBuffer added in v0.23.1

func (m *DockerImageStateCompleted) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DockerImageStateCompleted) ProtoMessage added in v0.23.1

func (*DockerImageStateCompleted) ProtoMessage()

func (*DockerImageStateCompleted) Reset added in v0.23.1

func (m *DockerImageStateCompleted) Reset()

func (*DockerImageStateCompleted) Size added in v0.23.1

func (m *DockerImageStateCompleted) Size() (n int)

func (*DockerImageStateCompleted) String added in v0.23.1

func (this *DockerImageStateCompleted) String() string

func (*DockerImageStateCompleted) Unmarshal added in v0.23.1

func (m *DockerImageStateCompleted) Unmarshal(dAtA []byte) error

func (*DockerImageStateCompleted) XXX_DiscardUnknown added in v0.23.1

func (m *DockerImageStateCompleted) XXX_DiscardUnknown()

func (*DockerImageStateCompleted) XXX_Marshal added in v0.23.1

func (m *DockerImageStateCompleted) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DockerImageStateCompleted) XXX_Merge added in v0.23.1

func (m *DockerImageStateCompleted) XXX_Merge(src proto.Message)

func (*DockerImageStateCompleted) XXX_Size added in v0.23.1

func (m *DockerImageStateCompleted) XXX_Size() int

func (*DockerImageStateCompleted) XXX_Unmarshal added in v0.23.1

func (m *DockerImageStateCompleted) XXX_Unmarshal(b []byte) error

type DockerImageStateWaiting added in v0.23.1

type DockerImageStateWaiting struct {
	// (brief) reason the image build is waiting.
	// +optional
	Reason string `json:"reason,omitempty" protobuf:"bytes,1,opt,name=reason"`
}

DockerImageStateWaiting expresses what we're waiting on to build an image.

func (*DockerImageStateWaiting) DeepCopy added in v0.23.1

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

func (*DockerImageStateWaiting) DeepCopyInto added in v0.23.1

func (in *DockerImageStateWaiting) DeepCopyInto(out *DockerImageStateWaiting)

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

func (*DockerImageStateWaiting) Descriptor added in v0.23.1

func (*DockerImageStateWaiting) Descriptor() ([]byte, []int)

func (*DockerImageStateWaiting) Marshal added in v0.23.1

func (m *DockerImageStateWaiting) Marshal() (dAtA []byte, err error)

func (*DockerImageStateWaiting) MarshalTo added in v0.23.1

func (m *DockerImageStateWaiting) MarshalTo(dAtA []byte) (int, error)

func (*DockerImageStateWaiting) MarshalToSizedBuffer added in v0.23.1

func (m *DockerImageStateWaiting) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DockerImageStateWaiting) ProtoMessage added in v0.23.1

func (*DockerImageStateWaiting) ProtoMessage()

func (*DockerImageStateWaiting) Reset added in v0.23.1

func (m *DockerImageStateWaiting) Reset()

func (*DockerImageStateWaiting) Size added in v0.23.1

func (m *DockerImageStateWaiting) Size() (n int)

func (*DockerImageStateWaiting) String added in v0.23.1

func (this *DockerImageStateWaiting) String() string

func (*DockerImageStateWaiting) Unmarshal added in v0.23.1

func (m *DockerImageStateWaiting) Unmarshal(dAtA []byte) error

func (*DockerImageStateWaiting) XXX_DiscardUnknown added in v0.23.1

func (m *DockerImageStateWaiting) XXX_DiscardUnknown()

func (*DockerImageStateWaiting) XXX_Marshal added in v0.23.1

func (m *DockerImageStateWaiting) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DockerImageStateWaiting) XXX_Merge added in v0.23.1

func (m *DockerImageStateWaiting) XXX_Merge(src proto.Message)

func (*DockerImageStateWaiting) XXX_Size added in v0.23.1

func (m *DockerImageStateWaiting) XXX_Size() int

func (*DockerImageStateWaiting) XXX_Unmarshal added in v0.23.1

func (m *DockerImageStateWaiting) XXX_Unmarshal(b []byte) error

type DockerImageStatus added in v0.23.0

type DockerImageStatus struct {
	// A fully-qualified image reference of a built image, as seen from the local
	// network.
	//
	// Usually includes a name and an immutable tag.
	//
	// NB: If we're building to a particular registry, this may
	// have a different hostname from the Spec `Ref` field.
	//
	// +optional
	Ref string `json:"ref,omitempty" protobuf:"bytes,1,opt,name=ref"`

	// Details about a waiting image build.
	// +optional
	Waiting *DockerImageStateWaiting `json:"waiting,omitempty" protobuf:"bytes,2,opt,name=waiting"`

	// Details about a building image.
	// +optional
	Building *DockerImageStateBuilding `json:"building,omitempty" protobuf:"bytes,3,opt,name=building"`

	// Details about a finished image build.
	// +optional
	Completed *DockerImageStateCompleted `json:"completed,omitempty" protobuf:"bytes,4,opt,name=completed"`

	// Status information about each individual build stage
	// of the most recent image build.
	StageStatuses []DockerImageStageStatus `json:"stageStatuses,omitempty" protobuf:"bytes,5,rep,name=stageStatuses"`
}

DockerImageStatus defines the observed state of DockerImage

func (DockerImageStatus) CopyTo added in v0.23.0

func (*DockerImageStatus) DeepCopy added in v0.23.0

func (in *DockerImageStatus) DeepCopy() *DockerImageStatus

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

func (*DockerImageStatus) DeepCopyInto added in v0.23.0

func (in *DockerImageStatus) DeepCopyInto(out *DockerImageStatus)

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

func (*DockerImageStatus) Descriptor added in v0.23.0

func (*DockerImageStatus) Descriptor() ([]byte, []int)

func (*DockerImageStatus) Marshal added in v0.23.0

func (m *DockerImageStatus) Marshal() (dAtA []byte, err error)

func (*DockerImageStatus) MarshalTo added in v0.23.0

func (m *DockerImageStatus) MarshalTo(dAtA []byte) (int, error)

func (*DockerImageStatus) MarshalToSizedBuffer added in v0.23.0

func (m *DockerImageStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DockerImageStatus) ProtoMessage added in v0.23.0

func (*DockerImageStatus) ProtoMessage()

func (*DockerImageStatus) Reset added in v0.23.0

func (m *DockerImageStatus) Reset()

func (*DockerImageStatus) Size added in v0.23.0

func (m *DockerImageStatus) Size() (n int)

func (*DockerImageStatus) String added in v0.23.0

func (this *DockerImageStatus) String() string

func (*DockerImageStatus) Unmarshal added in v0.23.0

func (m *DockerImageStatus) Unmarshal(dAtA []byte) error

func (*DockerImageStatus) XXX_DiscardUnknown added in v0.23.0

func (m *DockerImageStatus) XXX_DiscardUnknown()

func (*DockerImageStatus) XXX_Marshal added in v0.23.0

func (m *DockerImageStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DockerImageStatus) XXX_Merge added in v0.23.0

func (m *DockerImageStatus) XXX_Merge(src proto.Message)

func (*DockerImageStatus) XXX_Size added in v0.23.0

func (m *DockerImageStatus) XXX_Size() int

func (*DockerImageStatus) XXX_Unmarshal added in v0.23.0

func (m *DockerImageStatus) XXX_Unmarshal(b []byte) error

type DockerPortBinding added in v0.26.0

type DockerPortBinding struct {
	// The port inside the container.
	ContainerPort int32 `json:"containerPort,omitempty" protobuf:"varint,1,opt,name=containerPort"`

	// The port on the host machine where Docker running.
	HostPort int32 `json:"hostPort,omitempty" protobuf:"varint,2,opt,name=hostPort"`

	// The IP on the host machine where Docker is binding the network.
	HostIP string `json:"hostIP,omitempty" protobuf:"bytes,3,opt,name=hostIP"`
}

How docker binds container ports to the host network

func (*DockerPortBinding) DeepCopy added in v0.26.0

func (in *DockerPortBinding) DeepCopy() *DockerPortBinding

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

func (*DockerPortBinding) DeepCopyInto added in v0.26.0

func (in *DockerPortBinding) DeepCopyInto(out *DockerPortBinding)

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

func (*DockerPortBinding) Descriptor added in v0.26.0

func (*DockerPortBinding) Descriptor() ([]byte, []int)

func (*DockerPortBinding) Marshal added in v0.26.0

func (m *DockerPortBinding) Marshal() (dAtA []byte, err error)

func (*DockerPortBinding) MarshalTo added in v0.26.0

func (m *DockerPortBinding) MarshalTo(dAtA []byte) (int, error)

func (*DockerPortBinding) MarshalToSizedBuffer added in v0.26.0

func (m *DockerPortBinding) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DockerPortBinding) ProtoMessage added in v0.26.0

func (*DockerPortBinding) ProtoMessage()

func (*DockerPortBinding) Reset added in v0.26.0

func (m *DockerPortBinding) Reset()

func (*DockerPortBinding) Size added in v0.26.0

func (m *DockerPortBinding) Size() (n int)

func (*DockerPortBinding) String added in v0.26.0

func (this *DockerPortBinding) String() string

func (*DockerPortBinding) Unmarshal added in v0.26.0

func (m *DockerPortBinding) Unmarshal(dAtA []byte) error

func (*DockerPortBinding) XXX_DiscardUnknown added in v0.26.0

func (m *DockerPortBinding) XXX_DiscardUnknown()

func (*DockerPortBinding) XXX_Marshal added in v0.26.0

func (m *DockerPortBinding) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DockerPortBinding) XXX_Merge added in v0.26.0

func (m *DockerPortBinding) XXX_Merge(src proto.Message)

func (*DockerPortBinding) XXX_Size added in v0.26.0

func (m *DockerPortBinding) XXX_Size() int

func (*DockerPortBinding) XXX_Unmarshal added in v0.26.0

func (m *DockerPortBinding) XXX_Unmarshal(b []byte) error

type ExecAction added in v0.18.11

type ExecAction struct {
	// Command is the command line to execute inside the container, the working directory for the
	// command  is root ('/') in the container's filesystem. The command is simply exec'd, it is
	// not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use
	// a shell, you need to explicitly call out to that shell.
	// Exit status of 0 is treated as live/healthy and non-zero is unhealthy.
	// +optional
	Command []string `json:"command,omitempty" protobuf:"bytes,1,rep,name=command"`
}

ExecAction describes a "run in container" action.

func (*ExecAction) DeepCopy added in v0.18.11

func (in *ExecAction) DeepCopy() *ExecAction

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

func (*ExecAction) DeepCopyInto added in v0.18.11

func (in *ExecAction) DeepCopyInto(out *ExecAction)

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

func (*ExecAction) Descriptor added in v0.20.0

func (*ExecAction) Descriptor() ([]byte, []int)

func (*ExecAction) Marshal added in v0.20.0

func (m *ExecAction) Marshal() (dAtA []byte, err error)

func (*ExecAction) MarshalTo added in v0.20.0

func (m *ExecAction) MarshalTo(dAtA []byte) (int, error)

func (*ExecAction) MarshalToSizedBuffer added in v0.20.0

func (m *ExecAction) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ExecAction) ProtoMessage added in v0.20.0

func (*ExecAction) ProtoMessage()

func (*ExecAction) Reset added in v0.20.0

func (m *ExecAction) Reset()

func (*ExecAction) Size added in v0.20.0

func (m *ExecAction) Size() (n int)

func (*ExecAction) String added in v0.20.0

func (this *ExecAction) String() string

func (*ExecAction) Unmarshal added in v0.20.0

func (m *ExecAction) Unmarshal(dAtA []byte) error

func (*ExecAction) XXX_DiscardUnknown added in v0.20.0

func (m *ExecAction) XXX_DiscardUnknown()

func (*ExecAction) XXX_Marshal added in v0.20.0

func (m *ExecAction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ExecAction) XXX_Merge added in v0.20.0

func (m *ExecAction) XXX_Merge(src proto.Message)

func (*ExecAction) XXX_Size added in v0.20.0

func (m *ExecAction) XXX_Size() int

func (*ExecAction) XXX_Unmarshal added in v0.20.0

func (m *ExecAction) XXX_Unmarshal(b []byte) error

type ExitCondition added in v0.19.2

type ExitCondition string
const (
	// ExitConditionManual cedes control to the user and will not exit based on resource status.
	//
	// This is used by `tilt up`.
	ExitConditionManual ExitCondition = "manual"
	// ExitConditionCI terminates upon the first encountered build or runtime failure or after all resources have been
	// started successfully.
	//
	// This is used by `tilt ci`.
	ExitConditionCI ExitCondition = "ci"
)

type Extension added in v0.22.4

type Extension struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Spec   ExtensionSpec   `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
	Status ExtensionStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
}

Extension defines an extension that's evaluated on Tilt startup. +k8s:openapi-gen=true +tilt:starlark-gen=true

func (*Extension) DeepCopy added in v0.22.4

func (in *Extension) DeepCopy() *Extension

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

func (*Extension) DeepCopyInto added in v0.22.4

func (in *Extension) DeepCopyInto(out *Extension)

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

func (*Extension) DeepCopyObject added in v0.22.4

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

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

func (*Extension) Descriptor added in v0.22.4

func (*Extension) Descriptor() ([]byte, []int)

func (*Extension) GetGroupVersionResource added in v0.22.4

func (in *Extension) GetGroupVersionResource() schema.GroupVersionResource

func (*Extension) GetObjectMeta added in v0.22.4

func (in *Extension) GetObjectMeta() *metav1.ObjectMeta

func (*Extension) GetSingularName added in v0.33.0

func (in *Extension) GetSingularName() string

func (*Extension) GetSpec added in v0.22.4

func (in *Extension) GetSpec() interface{}

func (*Extension) GetStatus added in v0.22.4

func (in *Extension) GetStatus() resource.StatusSubResource

func (*Extension) IsStorageVersion added in v0.22.4

func (in *Extension) IsStorageVersion() bool

func (*Extension) Marshal added in v0.22.4

func (m *Extension) Marshal() (dAtA []byte, err error)

func (*Extension) MarshalTo added in v0.22.4

func (m *Extension) MarshalTo(dAtA []byte) (int, error)

func (*Extension) MarshalToSizedBuffer added in v0.22.4

func (m *Extension) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Extension) NamespaceScoped added in v0.22.4

func (in *Extension) NamespaceScoped() bool

func (*Extension) New added in v0.22.4

func (in *Extension) New() runtime.Object

func (*Extension) NewList added in v0.22.4

func (in *Extension) NewList() runtime.Object

func (*Extension) ProtoMessage added in v0.22.4

func (*Extension) ProtoMessage()

func (*Extension) Reset added in v0.22.4

func (m *Extension) Reset()

func (*Extension) ShortNames added in v0.22.8

func (in *Extension) ShortNames() []string

func (*Extension) Size added in v0.22.4

func (m *Extension) Size() (n int)

func (*Extension) String added in v0.22.4

func (this *Extension) String() string

func (*Extension) Unmarshal added in v0.22.4

func (m *Extension) Unmarshal(dAtA []byte) error

func (*Extension) Validate added in v0.22.4

func (in *Extension) Validate(ctx context.Context) field.ErrorList

func (*Extension) XXX_DiscardUnknown added in v0.22.4

func (m *Extension) XXX_DiscardUnknown()

func (*Extension) XXX_Marshal added in v0.22.4

func (m *Extension) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Extension) XXX_Merge added in v0.22.4

func (m *Extension) XXX_Merge(src proto.Message)

func (*Extension) XXX_Size added in v0.22.4

func (m *Extension) XXX_Size() int

func (*Extension) XXX_Unmarshal added in v0.22.4

func (m *Extension) XXX_Unmarshal(b []byte) error

type ExtensionList added in v0.22.4

type ExtensionList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Items []Extension `json:"items" protobuf:"bytes,2,rep,name=items"`
}

ExtensionList +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*ExtensionList) DeepCopy added in v0.22.4

func (in *ExtensionList) DeepCopy() *ExtensionList

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

func (*ExtensionList) DeepCopyInto added in v0.22.4

func (in *ExtensionList) DeepCopyInto(out *ExtensionList)

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

func (*ExtensionList) DeepCopyObject added in v0.22.4

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

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

func (*ExtensionList) Descriptor added in v0.22.4

func (*ExtensionList) Descriptor() ([]byte, []int)

func (*ExtensionList) GetListMeta added in v0.22.4

func (in *ExtensionList) GetListMeta() *metav1.ListMeta

func (*ExtensionList) Marshal added in v0.22.4

func (m *ExtensionList) Marshal() (dAtA []byte, err error)

func (*ExtensionList) MarshalTo added in v0.22.4

func (m *ExtensionList) MarshalTo(dAtA []byte) (int, error)

func (*ExtensionList) MarshalToSizedBuffer added in v0.22.4

func (m *ExtensionList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ExtensionList) ProtoMessage added in v0.22.4

func (*ExtensionList) ProtoMessage()

func (*ExtensionList) Reset added in v0.22.4

func (m *ExtensionList) Reset()

func (*ExtensionList) Size added in v0.22.4

func (m *ExtensionList) Size() (n int)

func (*ExtensionList) String added in v0.22.4

func (this *ExtensionList) String() string

func (*ExtensionList) Unmarshal added in v0.22.4

func (m *ExtensionList) Unmarshal(dAtA []byte) error

func (*ExtensionList) XXX_DiscardUnknown added in v0.22.4

func (m *ExtensionList) XXX_DiscardUnknown()

func (*ExtensionList) XXX_Marshal added in v0.22.4

func (m *ExtensionList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ExtensionList) XXX_Merge added in v0.22.4

func (m *ExtensionList) XXX_Merge(src proto.Message)

func (*ExtensionList) XXX_Size added in v0.22.4

func (m *ExtensionList) XXX_Size() int

func (*ExtensionList) XXX_Unmarshal added in v0.22.4

func (m *ExtensionList) XXX_Unmarshal(b []byte) error

type ExtensionRepo added in v0.22.4

type ExtensionRepo struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Spec   ExtensionRepoSpec   `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
	Status ExtensionRepoStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
}

ExtensionRepo specifies a repo or folder where a set of extensions live. +k8s:openapi-gen=true +tilt:starlark-gen=true

func (*ExtensionRepo) DeepCopy added in v0.22.4

func (in *ExtensionRepo) DeepCopy() *ExtensionRepo

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

func (*ExtensionRepo) DeepCopyInto added in v0.22.4

func (in *ExtensionRepo) DeepCopyInto(out *ExtensionRepo)

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

func (*ExtensionRepo) DeepCopyObject added in v0.22.4

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

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

func (*ExtensionRepo) Descriptor added in v0.22.4

func (*ExtensionRepo) Descriptor() ([]byte, []int)

func (*ExtensionRepo) GetGroupVersionResource added in v0.22.4

func (in *ExtensionRepo) GetGroupVersionResource() schema.GroupVersionResource

func (*ExtensionRepo) GetObjectMeta added in v0.22.4

func (in *ExtensionRepo) GetObjectMeta() *metav1.ObjectMeta

func (*ExtensionRepo) GetSingularName added in v0.33.0

func (in *ExtensionRepo) GetSingularName() string

func (*ExtensionRepo) GetSpec added in v0.22.4

func (in *ExtensionRepo) GetSpec() interface{}

func (*ExtensionRepo) GetStatus added in v0.22.4

func (in *ExtensionRepo) GetStatus() resource.StatusSubResource

func (*ExtensionRepo) IsStorageVersion added in v0.22.4

func (in *ExtensionRepo) IsStorageVersion() bool

func (*ExtensionRepo) Marshal added in v0.22.4

func (m *ExtensionRepo) Marshal() (dAtA []byte, err error)

func (*ExtensionRepo) MarshalTo added in v0.22.4

func (m *ExtensionRepo) MarshalTo(dAtA []byte) (int, error)

func (*ExtensionRepo) MarshalToSizedBuffer added in v0.22.4

func (m *ExtensionRepo) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ExtensionRepo) NamespaceScoped added in v0.22.4

func (in *ExtensionRepo) NamespaceScoped() bool

func (*ExtensionRepo) New added in v0.22.4

func (in *ExtensionRepo) New() runtime.Object

func (*ExtensionRepo) NewList added in v0.22.4

func (in *ExtensionRepo) NewList() runtime.Object

func (*ExtensionRepo) ProtoMessage added in v0.22.4

func (*ExtensionRepo) ProtoMessage()

func (*ExtensionRepo) Reset added in v0.22.4

func (m *ExtensionRepo) Reset()

func (*ExtensionRepo) ShortNames added in v0.22.8

func (in *ExtensionRepo) ShortNames() []string

func (*ExtensionRepo) Size added in v0.22.4

func (m *ExtensionRepo) Size() (n int)

func (*ExtensionRepo) String added in v0.22.4

func (this *ExtensionRepo) String() string

func (*ExtensionRepo) Unmarshal added in v0.22.4

func (m *ExtensionRepo) Unmarshal(dAtA []byte) error

func (*ExtensionRepo) Validate added in v0.22.4

func (in *ExtensionRepo) Validate(ctx context.Context) field.ErrorList

func (*ExtensionRepo) XXX_DiscardUnknown added in v0.22.4

func (m *ExtensionRepo) XXX_DiscardUnknown()

func (*ExtensionRepo) XXX_Marshal added in v0.22.4

func (m *ExtensionRepo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ExtensionRepo) XXX_Merge added in v0.22.4

func (m *ExtensionRepo) XXX_Merge(src proto.Message)

func (*ExtensionRepo) XXX_Size added in v0.22.4

func (m *ExtensionRepo) XXX_Size() int

func (*ExtensionRepo) XXX_Unmarshal added in v0.22.4

func (m *ExtensionRepo) XXX_Unmarshal(b []byte) error

type ExtensionRepoList added in v0.22.4

type ExtensionRepoList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Items []ExtensionRepo `json:"items" protobuf:"bytes,2,rep,name=items"`
}

ExtensionRepoList +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*ExtensionRepoList) DeepCopy added in v0.22.4

func (in *ExtensionRepoList) DeepCopy() *ExtensionRepoList

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

func (*ExtensionRepoList) DeepCopyInto added in v0.22.4

func (in *ExtensionRepoList) DeepCopyInto(out *ExtensionRepoList)

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

func (*ExtensionRepoList) DeepCopyObject added in v0.22.4

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

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

func (*ExtensionRepoList) Descriptor added in v0.22.4

func (*ExtensionRepoList) Descriptor() ([]byte, []int)

func (*ExtensionRepoList) GetListMeta added in v0.22.4

func (in *ExtensionRepoList) GetListMeta() *metav1.ListMeta

func (*ExtensionRepoList) Marshal added in v0.22.4

func (m *ExtensionRepoList) Marshal() (dAtA []byte, err error)

func (*ExtensionRepoList) MarshalTo added in v0.22.4

func (m *ExtensionRepoList) MarshalTo(dAtA []byte) (int, error)

func (*ExtensionRepoList) MarshalToSizedBuffer added in v0.22.4

func (m *ExtensionRepoList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ExtensionRepoList) ProtoMessage added in v0.22.4

func (*ExtensionRepoList) ProtoMessage()

func (*ExtensionRepoList) Reset added in v0.22.4

func (m *ExtensionRepoList) Reset()

func (*ExtensionRepoList) Size added in v0.22.4

func (m *ExtensionRepoList) Size() (n int)

func (*ExtensionRepoList) String added in v0.22.4

func (this *ExtensionRepoList) String() string

func (*ExtensionRepoList) Unmarshal added in v0.22.4

func (m *ExtensionRepoList) Unmarshal(dAtA []byte) error

func (*ExtensionRepoList) XXX_DiscardUnknown added in v0.22.4

func (m *ExtensionRepoList) XXX_DiscardUnknown()

func (*ExtensionRepoList) XXX_Marshal added in v0.22.4

func (m *ExtensionRepoList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ExtensionRepoList) XXX_Merge added in v0.22.4

func (m *ExtensionRepoList) XXX_Merge(src proto.Message)

func (*ExtensionRepoList) XXX_Size added in v0.22.4

func (m *ExtensionRepoList) XXX_Size() int

func (*ExtensionRepoList) XXX_Unmarshal added in v0.22.4

func (m *ExtensionRepoList) XXX_Unmarshal(b []byte) error

type ExtensionRepoSpec added in v0.22.4

type ExtensionRepoSpec struct {
	// The URL of the repo.
	//
	// Allowed:
	// https: URLs that point to a public git repo
	// file: URLs that point to a location on disk.
	URL string `json:"url" protobuf:"bytes,1,opt,name=url"`

	// A reference to sync the repo to. If empty, Tilt will always update
	// the repo to the latest version.
	// +optional
	Ref string `json:"ref,omitempty" protobuf:"bytes,2,opt,name=ref"`
}

ExtensionRepoSpec defines how to access the repo.

func (*ExtensionRepoSpec) DeepCopy added in v0.22.4

func (in *ExtensionRepoSpec) DeepCopy() *ExtensionRepoSpec

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

func (*ExtensionRepoSpec) DeepCopyInto added in v0.22.4

func (in *ExtensionRepoSpec) DeepCopyInto(out *ExtensionRepoSpec)

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

func (*ExtensionRepoSpec) Descriptor added in v0.22.4

func (*ExtensionRepoSpec) Descriptor() ([]byte, []int)

func (*ExtensionRepoSpec) Marshal added in v0.22.4

func (m *ExtensionRepoSpec) Marshal() (dAtA []byte, err error)

func (*ExtensionRepoSpec) MarshalTo added in v0.22.4

func (m *ExtensionRepoSpec) MarshalTo(dAtA []byte) (int, error)

func (*ExtensionRepoSpec) MarshalToSizedBuffer added in v0.22.4

func (m *ExtensionRepoSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ExtensionRepoSpec) ProtoMessage added in v0.22.4

func (*ExtensionRepoSpec) ProtoMessage()

func (*ExtensionRepoSpec) Reset added in v0.22.4

func (m *ExtensionRepoSpec) Reset()

func (*ExtensionRepoSpec) Size added in v0.22.4

func (m *ExtensionRepoSpec) Size() (n int)

func (*ExtensionRepoSpec) String added in v0.22.4

func (this *ExtensionRepoSpec) String() string

func (*ExtensionRepoSpec) Unmarshal added in v0.22.4

func (m *ExtensionRepoSpec) Unmarshal(dAtA []byte) error

func (*ExtensionRepoSpec) XXX_DiscardUnknown added in v0.22.4

func (m *ExtensionRepoSpec) XXX_DiscardUnknown()

func (*ExtensionRepoSpec) XXX_Marshal added in v0.22.4

func (m *ExtensionRepoSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ExtensionRepoSpec) XXX_Merge added in v0.22.4

func (m *ExtensionRepoSpec) XXX_Merge(src proto.Message)

func (*ExtensionRepoSpec) XXX_Size added in v0.22.4

func (m *ExtensionRepoSpec) XXX_Size() int

func (*ExtensionRepoSpec) XXX_Unmarshal added in v0.22.4

func (m *ExtensionRepoSpec) XXX_Unmarshal(b []byte) error

type ExtensionRepoStatus added in v0.22.4

type ExtensionRepoStatus struct {
	// Contains information about any problems loading the repo.
	Error string `json:"error,omitempty" protobuf:"bytes,1,opt,name=error"`

	// The last time the repo was fetched and checked for validity.
	LastFetchedAt metav1.Time `json:"lastFetchedAt,omitempty" protobuf:"bytes,2,opt,name=lastFetchedAt"`

	// The path to the repo on local disk.
	Path string `json:"path,omitempty" protobuf:"bytes,3,opt,name=path"`

	// The reference that we currently have checked out.
	// On git, this is the commit hash.
	// On file repos, this is empty.
	CheckoutRef string `json:"checkoutRef,omitempty" protobuf:"bytes,4,opt,name=checkoutRef"`

	// If StaleReason is non-empty, that indicates the repo failed to fetch, but
	// we were successfully able to use an on-disk copy.
	StaleReason string `json:"staleReason,omitempty" protobuf:"bytes,5,opt,name=staleReason"`
}

ExtensionRepoStatus defines the observed state of ExtensionRepo

func (ExtensionRepoStatus) CopyTo added in v0.22.4

func (*ExtensionRepoStatus) DeepCopy added in v0.22.4

func (in *ExtensionRepoStatus) DeepCopy() *ExtensionRepoStatus

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

func (*ExtensionRepoStatus) DeepCopyInto added in v0.22.4

func (in *ExtensionRepoStatus) DeepCopyInto(out *ExtensionRepoStatus)

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

func (*ExtensionRepoStatus) Descriptor added in v0.22.4

func (*ExtensionRepoStatus) Descriptor() ([]byte, []int)

func (*ExtensionRepoStatus) Marshal added in v0.22.4

func (m *ExtensionRepoStatus) Marshal() (dAtA []byte, err error)

func (*ExtensionRepoStatus) MarshalTo added in v0.22.4

func (m *ExtensionRepoStatus) MarshalTo(dAtA []byte) (int, error)

func (*ExtensionRepoStatus) MarshalToSizedBuffer added in v0.22.4

func (m *ExtensionRepoStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ExtensionRepoStatus) ProtoMessage added in v0.22.4

func (*ExtensionRepoStatus) ProtoMessage()

func (*ExtensionRepoStatus) Reset added in v0.22.4

func (m *ExtensionRepoStatus) Reset()

func (*ExtensionRepoStatus) Size added in v0.22.4

func (m *ExtensionRepoStatus) Size() (n int)

func (*ExtensionRepoStatus) String added in v0.22.4

func (this *ExtensionRepoStatus) String() string

func (*ExtensionRepoStatus) Unmarshal added in v0.22.4

func (m *ExtensionRepoStatus) Unmarshal(dAtA []byte) error

func (*ExtensionRepoStatus) XXX_DiscardUnknown added in v0.22.4

func (m *ExtensionRepoStatus) XXX_DiscardUnknown()

func (*ExtensionRepoStatus) XXX_Marshal added in v0.22.4

func (m *ExtensionRepoStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ExtensionRepoStatus) XXX_Merge added in v0.22.4

func (m *ExtensionRepoStatus) XXX_Merge(src proto.Message)

func (*ExtensionRepoStatus) XXX_Size added in v0.22.4

func (m *ExtensionRepoStatus) XXX_Size() int

func (*ExtensionRepoStatus) XXX_Unmarshal added in v0.22.4

func (m *ExtensionRepoStatus) XXX_Unmarshal(b []byte) error

type ExtensionSpec added in v0.22.4

type ExtensionSpec struct {
	// RepoName specifies the ExtensionRepo object where we should find this extension.
	//
	// The Extension controller should watch for changes to this repo, and
	// may update if this repo is deleted or moved.
	RepoName string `json:"repoName" protobuf:"bytes,1,opt,name=repoName"`

	// RepoPath specifies the path to the extension directory inside the repo.
	//
	// Once the repo is downloaded, this path should point to a directory with a
	// Tiltfile as the main "entrypoint" of the extension.
	RepoPath string `json:"repoPath" protobuf:"bytes,2,opt,name=repoPath"`

	// Arguments to the Tiltfile loaded by this extension.
	//
	// Arguments can be positional (['a', 'b', 'c']) or flag-based ('--to-edit=a').
	// By default, a list of arguments indicates the list of services in the tiltfile
	// that should be enabled.
	//
	// +optional
	Args []string `json:"args,omitempty" protobuf:"bytes,3,rep,name=args"`
}

ExtensionSpec defines the desired state of Extension

func (*ExtensionSpec) DeepCopy added in v0.22.4

func (in *ExtensionSpec) DeepCopy() *ExtensionSpec

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

func (*ExtensionSpec) DeepCopyInto added in v0.22.4

func (in *ExtensionSpec) DeepCopyInto(out *ExtensionSpec)

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

func (*ExtensionSpec) Descriptor added in v0.22.4

func (*ExtensionSpec) Descriptor() ([]byte, []int)

func (*ExtensionSpec) Marshal added in v0.22.4

func (m *ExtensionSpec) Marshal() (dAtA []byte, err error)

func (*ExtensionSpec) MarshalTo added in v0.22.4

func (m *ExtensionSpec) MarshalTo(dAtA []byte) (int, error)

func (*ExtensionSpec) MarshalToSizedBuffer added in v0.22.4

func (m *ExtensionSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ExtensionSpec) ProtoMessage added in v0.22.4

func (*ExtensionSpec) ProtoMessage()

func (*ExtensionSpec) Reset added in v0.22.4

func (m *ExtensionSpec) Reset()

func (*ExtensionSpec) Size added in v0.22.4

func (m *ExtensionSpec) Size() (n int)

func (*ExtensionSpec) String added in v0.22.4

func (this *ExtensionSpec) String() string

func (*ExtensionSpec) Unmarshal added in v0.22.4

func (m *ExtensionSpec) Unmarshal(dAtA []byte) error

func (*ExtensionSpec) XXX_DiscardUnknown added in v0.22.4

func (m *ExtensionSpec) XXX_DiscardUnknown()

func (*ExtensionSpec) XXX_Marshal added in v0.22.4

func (m *ExtensionSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ExtensionSpec) XXX_Merge added in v0.22.4

func (m *ExtensionSpec) XXX_Merge(src proto.Message)

func (*ExtensionSpec) XXX_Size added in v0.22.4

func (m *ExtensionSpec) XXX_Size() int

func (*ExtensionSpec) XXX_Unmarshal added in v0.22.4

func (m *ExtensionSpec) XXX_Unmarshal(b []byte) error

type ExtensionStatus added in v0.22.4

type ExtensionStatus struct {
	// Contains information about any problems loading the extension.
	Error string `json:"error,omitempty" protobuf:"bytes,1,opt,name=error"`

	// The path to the extension on disk. This location should be shared
	// and readable by all Tilt instances.
	Path string `json:"path,omitempty" protobuf:"bytes,2,opt,name=path"`
}

ExtensionStatus defines the observed state of Extension

func (ExtensionStatus) CopyTo added in v0.22.4

func (*ExtensionStatus) DeepCopy added in v0.22.4

func (in *ExtensionStatus) DeepCopy() *ExtensionStatus

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

func (*ExtensionStatus) DeepCopyInto added in v0.22.4

func (in *ExtensionStatus) DeepCopyInto(out *ExtensionStatus)

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

func (*ExtensionStatus) Descriptor added in v0.22.4

func (*ExtensionStatus) Descriptor() ([]byte, []int)

func (*ExtensionStatus) Marshal added in v0.22.4

func (m *ExtensionStatus) Marshal() (dAtA []byte, err error)

func (*ExtensionStatus) MarshalTo added in v0.22.4

func (m *ExtensionStatus) MarshalTo(dAtA []byte) (int, error)

func (*ExtensionStatus) MarshalToSizedBuffer added in v0.22.4

func (m *ExtensionStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ExtensionStatus) ProtoMessage added in v0.22.4

func (*ExtensionStatus) ProtoMessage()

func (*ExtensionStatus) Reset added in v0.22.4

func (m *ExtensionStatus) Reset()

func (*ExtensionStatus) Size added in v0.22.4

func (m *ExtensionStatus) Size() (n int)

func (*ExtensionStatus) String added in v0.22.4

func (this *ExtensionStatus) String() string

func (*ExtensionStatus) Unmarshal added in v0.22.4

func (m *ExtensionStatus) Unmarshal(dAtA []byte) error

func (*ExtensionStatus) XXX_DiscardUnknown added in v0.22.4

func (m *ExtensionStatus) XXX_DiscardUnknown()

func (*ExtensionStatus) XXX_Marshal added in v0.22.4

func (m *ExtensionStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ExtensionStatus) XXX_Merge added in v0.22.4

func (m *ExtensionStatus) XXX_Merge(src proto.Message)

func (*ExtensionStatus) XXX_Size added in v0.22.4

func (m *ExtensionStatus) XXX_Size() int

func (*ExtensionStatus) XXX_Unmarshal added in v0.22.4

func (m *ExtensionStatus) XXX_Unmarshal(b []byte) error

type FileEvent added in v0.18.12

type FileEvent struct {
	// Time is an approximate timestamp for a batch of file changes.
	//
	// This will NOT exactly match any inode attributes (e.g. ctime, mtime) at the filesystem level and is purely
	// informational or for use as an opaque watermark.
	Time metav1.MicroTime `json:"time" protobuf:"bytes,1,opt,name=time"`
	// SeenFiles is a list of paths which changed (create, modify, or delete).
	SeenFiles []string `json:"seenFiles" protobuf:"bytes,2,rep,name=seenFiles"`
}

func (*FileEvent) DeepCopy added in v0.18.12

func (in *FileEvent) DeepCopy() *FileEvent

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

func (*FileEvent) DeepCopyInto added in v0.18.12

func (in *FileEvent) DeepCopyInto(out *FileEvent)

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

func (*FileEvent) Descriptor added in v0.20.0

func (*FileEvent) Descriptor() ([]byte, []int)

func (*FileEvent) Marshal added in v0.20.0

func (m *FileEvent) Marshal() (dAtA []byte, err error)

func (*FileEvent) MarshalTo added in v0.20.0

func (m *FileEvent) MarshalTo(dAtA []byte) (int, error)

func (*FileEvent) MarshalToSizedBuffer added in v0.20.0

func (m *FileEvent) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*FileEvent) ProtoMessage added in v0.20.0

func (*FileEvent) ProtoMessage()

func (*FileEvent) Reset added in v0.20.0

func (m *FileEvent) Reset()

func (*FileEvent) Size added in v0.20.0

func (m *FileEvent) Size() (n int)

func (*FileEvent) String added in v0.20.0

func (this *FileEvent) String() string

func (*FileEvent) Unmarshal added in v0.20.0

func (m *FileEvent) Unmarshal(dAtA []byte) error

func (*FileEvent) XXX_DiscardUnknown added in v0.20.0

func (m *FileEvent) XXX_DiscardUnknown()

func (*FileEvent) XXX_Marshal added in v0.20.0

func (m *FileEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*FileEvent) XXX_Merge added in v0.20.0

func (m *FileEvent) XXX_Merge(src proto.Message)

func (*FileEvent) XXX_Size added in v0.20.0

func (m *FileEvent) XXX_Size() int

func (*FileEvent) XXX_Unmarshal added in v0.20.0

func (m *FileEvent) XXX_Unmarshal(b []byte) error

type FileWatch

type FileWatch struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Spec   FileWatchSpec   `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
	Status FileWatchStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
}

FileWatch +k8s:openapi-gen=true +tilt:starlark-gen=true

func (*FileWatch) DeepCopy

func (in *FileWatch) DeepCopy() *FileWatch

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

func (*FileWatch) DeepCopyInto

func (in *FileWatch) DeepCopyInto(out *FileWatch)

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

func (*FileWatch) DeepCopyObject

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

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

func (*FileWatch) Descriptor added in v0.20.0

func (*FileWatch) Descriptor() ([]byte, []int)

func (*FileWatch) GetGroupVersionResource

func (in *FileWatch) GetGroupVersionResource() schema.GroupVersionResource

func (*FileWatch) GetObjectMeta

func (in *FileWatch) GetObjectMeta() *metav1.ObjectMeta

func (*FileWatch) GetSingularName added in v0.33.0

func (in *FileWatch) GetSingularName() string

func (*FileWatch) GetSpec added in v0.21.0

func (in *FileWatch) GetSpec() interface{}

func (*FileWatch) GetStatus

func (in *FileWatch) GetStatus() resource.StatusSubResource

func (*FileWatch) IsStorageVersion

func (in *FileWatch) IsStorageVersion() bool

func (*FileWatch) Marshal added in v0.20.0

func (m *FileWatch) Marshal() (dAtA []byte, err error)

func (*FileWatch) MarshalTo added in v0.20.0

func (m *FileWatch) MarshalTo(dAtA []byte) (int, error)

func (*FileWatch) MarshalToSizedBuffer added in v0.20.0

func (m *FileWatch) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*FileWatch) NamespaceScoped

func (in *FileWatch) NamespaceScoped() bool

func (*FileWatch) New

func (in *FileWatch) New() runtime.Object

func (*FileWatch) NewList

func (in *FileWatch) NewList() runtime.Object

func (*FileWatch) ProtoMessage added in v0.20.0

func (*FileWatch) ProtoMessage()

func (*FileWatch) Reset added in v0.20.0

func (m *FileWatch) Reset()

func (*FileWatch) ShortNames added in v0.20.4

func (in *FileWatch) ShortNames() []string

func (*FileWatch) Size added in v0.20.0

func (m *FileWatch) Size() (n int)

func (*FileWatch) String added in v0.20.0

func (this *FileWatch) String() string

func (*FileWatch) Unmarshal added in v0.20.0

func (m *FileWatch) Unmarshal(dAtA []byte) error

func (*FileWatch) Validate

func (in *FileWatch) Validate(_ context.Context) field.ErrorList

func (*FileWatch) XXX_DiscardUnknown added in v0.20.0

func (m *FileWatch) XXX_DiscardUnknown()

func (*FileWatch) XXX_Marshal added in v0.20.0

func (m *FileWatch) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*FileWatch) XXX_Merge added in v0.20.0

func (m *FileWatch) XXX_Merge(src proto.Message)

func (*FileWatch) XXX_Size added in v0.20.0

func (m *FileWatch) XXX_Size() int

func (*FileWatch) XXX_Unmarshal added in v0.20.0

func (m *FileWatch) XXX_Unmarshal(b []byte) error

type FileWatchList

type FileWatchList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Items []FileWatch `json:"items" protobuf:"bytes,2,rep,name=items"`
}

FileWatchList +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*FileWatchList) DeepCopy

func (in *FileWatchList) DeepCopy() *FileWatchList

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

func (*FileWatchList) DeepCopyInto

func (in *FileWatchList) DeepCopyInto(out *FileWatchList)

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

func (*FileWatchList) DeepCopyObject

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

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

func (*FileWatchList) Descriptor added in v0.20.0

func (*FileWatchList) Descriptor() ([]byte, []int)

func (*FileWatchList) GetListMeta

func (in *FileWatchList) GetListMeta() *metav1.ListMeta

func (*FileWatchList) Marshal added in v0.20.0

func (m *FileWatchList) Marshal() (dAtA []byte, err error)

func (*FileWatchList) MarshalTo added in v0.20.0

func (m *FileWatchList) MarshalTo(dAtA []byte) (int, error)

func (*FileWatchList) MarshalToSizedBuffer added in v0.20.0

func (m *FileWatchList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*FileWatchList) ProtoMessage added in v0.20.0

func (*FileWatchList) ProtoMessage()

func (*FileWatchList) Reset added in v0.20.0

func (m *FileWatchList) Reset()

func (*FileWatchList) Size added in v0.20.0

func (m *FileWatchList) Size() (n int)

func (*FileWatchList) String added in v0.20.0

func (this *FileWatchList) String() string

func (*FileWatchList) Unmarshal added in v0.20.0

func (m *FileWatchList) Unmarshal(dAtA []byte) error

func (*FileWatchList) XXX_DiscardUnknown added in v0.20.0

func (m *FileWatchList) XXX_DiscardUnknown()

func (*FileWatchList) XXX_Marshal added in v0.20.0

func (m *FileWatchList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*FileWatchList) XXX_Merge added in v0.20.0

func (m *FileWatchList) XXX_Merge(src proto.Message)

func (*FileWatchList) XXX_Size added in v0.20.0

func (m *FileWatchList) XXX_Size() int

func (*FileWatchList) XXX_Unmarshal added in v0.20.0

func (m *FileWatchList) XXX_Unmarshal(b []byte) error

type FileWatchSpec

type FileWatchSpec struct {
	// WatchedPaths are paths of directories or files to watch for changes to. It cannot be empty.
	//
	// +tilt:local-path=true
	WatchedPaths []string `json:"watchedPaths" protobuf:"bytes,1,rep,name=watchedPaths"`

	// Ignores are optional rules to filter out a subset of changes matched by WatchedPaths.
	Ignores []IgnoreDef `json:"ignores,omitempty" protobuf:"bytes,2,rep,name=ignores"`
	// Specifies how to disable this.
	//
	// +optional
	DisableSource *DisableSource `json:"disableSource,omitempty" protobuf:"bytes,3,opt,name=disableSource"`
}

FileWatchSpec defines the desired state of FileWatch

func (*FileWatchSpec) DeepCopy

func (in *FileWatchSpec) DeepCopy() *FileWatchSpec

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

func (*FileWatchSpec) DeepCopyInto

func (in *FileWatchSpec) DeepCopyInto(out *FileWatchSpec)

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

func (*FileWatchSpec) Descriptor added in v0.20.0

func (*FileWatchSpec) Descriptor() ([]byte, []int)

func (*FileWatchSpec) Marshal added in v0.20.0

func (m *FileWatchSpec) Marshal() (dAtA []byte, err error)

func (*FileWatchSpec) MarshalTo added in v0.20.0

func (m *FileWatchSpec) MarshalTo(dAtA []byte) (int, error)

func (*FileWatchSpec) MarshalToSizedBuffer added in v0.20.0

func (m *FileWatchSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*FileWatchSpec) ProtoMessage added in v0.20.0

func (*FileWatchSpec) ProtoMessage()

func (*FileWatchSpec) Reset added in v0.20.0

func (m *FileWatchSpec) Reset()

func (*FileWatchSpec) Size added in v0.20.0

func (m *FileWatchSpec) Size() (n int)

func (*FileWatchSpec) String added in v0.20.0

func (this *FileWatchSpec) String() string

func (*FileWatchSpec) Unmarshal added in v0.20.0

func (m *FileWatchSpec) Unmarshal(dAtA []byte) error

func (*FileWatchSpec) XXX_DiscardUnknown added in v0.20.0

func (m *FileWatchSpec) XXX_DiscardUnknown()

func (*FileWatchSpec) XXX_Marshal added in v0.20.0

func (m *FileWatchSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*FileWatchSpec) XXX_Merge added in v0.20.0

func (m *FileWatchSpec) XXX_Merge(src proto.Message)

func (*FileWatchSpec) XXX_Size added in v0.20.0

func (m *FileWatchSpec) XXX_Size() int

func (*FileWatchSpec) XXX_Unmarshal added in v0.20.0

func (m *FileWatchSpec) XXX_Unmarshal(b []byte) error

type FileWatchStatus

type FileWatchStatus struct {
	// MonitorStartTime is the timestamp of when filesystem monitor was started. It is zero if the monitor has not
	// been started yet.
	MonitorStartTime metav1.MicroTime `json:"monitorStartTime,omitempty" protobuf:"bytes,1,opt,name=monitorStartTime"`
	// LastEventTime is the timestamp of the most recent file event. It is zero if no events have been seen yet.
	//
	// If the specifics of which files changed are not important, this field can be used as a watermark without
	// needing to inspect FileEvents.
	LastEventTime metav1.MicroTime `json:"lastEventTime,omitempty" protobuf:"bytes,2,opt,name=lastEventTime"`
	// FileEvents summarizes batches of file changes (create, modify, or delete) that have been seen in ascending
	// chronological order. Only the most recent 20 events are included.
	FileEvents []FileEvent `json:"fileEvents,omitempty" protobuf:"bytes,3,rep,name=fileEvents"`
	// Error is set if there is a problem with the filesystem watch. If non-empty, consumers should assume that
	// no filesystem events will be seen and that the file watcher is in a failed state.
	Error string `json:"error,omitempty" protobuf:"bytes,4,opt,name=error"`
	// Details about whether/why this is disabled.
	// +optional
	DisableStatus *DisableStatus `json:"disableStatus,omitempty" protobuf:"bytes,5,opt,name=disableStatus"`
}

FileWatchStatus defines the observed state of FileWatch

func (FileWatchStatus) CopyTo

func (*FileWatchStatus) DeepCopy

func (in *FileWatchStatus) DeepCopy() *FileWatchStatus

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

func (*FileWatchStatus) DeepCopyInto

func (in *FileWatchStatus) DeepCopyInto(out *FileWatchStatus)

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

func (*FileWatchStatus) Descriptor added in v0.20.0

func (*FileWatchStatus) Descriptor() ([]byte, []int)

func (*FileWatchStatus) Marshal added in v0.20.0

func (m *FileWatchStatus) Marshal() (dAtA []byte, err error)

func (*FileWatchStatus) MarshalTo added in v0.20.0

func (m *FileWatchStatus) MarshalTo(dAtA []byte) (int, error)

func (*FileWatchStatus) MarshalToSizedBuffer added in v0.20.0

func (m *FileWatchStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*FileWatchStatus) ProtoMessage added in v0.20.0

func (*FileWatchStatus) ProtoMessage()

func (*FileWatchStatus) Reset added in v0.20.0

func (m *FileWatchStatus) Reset()

func (*FileWatchStatus) Size added in v0.20.0

func (m *FileWatchStatus) Size() (n int)

func (*FileWatchStatus) String added in v0.20.0

func (this *FileWatchStatus) String() string

func (*FileWatchStatus) Unmarshal added in v0.20.0

func (m *FileWatchStatus) Unmarshal(dAtA []byte) error

func (*FileWatchStatus) XXX_DiscardUnknown added in v0.20.0

func (m *FileWatchStatus) XXX_DiscardUnknown()

func (*FileWatchStatus) XXX_Marshal added in v0.20.0

func (m *FileWatchStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*FileWatchStatus) XXX_Merge added in v0.20.0

func (m *FileWatchStatus) XXX_Merge(src proto.Message)

func (*FileWatchStatus) XXX_Size added in v0.20.0

func (m *FileWatchStatus) XXX_Size() int

func (*FileWatchStatus) XXX_Unmarshal added in v0.20.0

func (m *FileWatchStatus) XXX_Unmarshal(b []byte) error

type Forward added in v0.20.2

type Forward struct {
	// The port to expose on the current machine.
	//
	// If not specified (or 0), a random free port will be chosen and can
	// be discovered via the status once established.
	//
	// +optional
	LocalPort int32 `json:"localPort,omitempty" protobuf:"varint,4,opt,name=localPort"`

	// The port on the Kubernetes pod to connect to. Required.
	ContainerPort int32 `json:"containerPort" protobuf:"varint,3,opt,name=containerPort"`

	// Optional host to bind to on the current machine.
	//
	// If not explicitly specified, uses the bind host of the tilt web UI (usually localhost).
	//
	// +optional
	Host string `json:"host" protobuf:"bytes,5,opt,name=host"`

	// Name to identify this port forward.
	//
	// +optional
	Name string `json:"name,omitempty" protobuf:"bytes,6,opt,name=name"`

	// Path to include as part of generated links for port forward.
	//
	// +optional
	Path string `json:"path,omitempty" protobuf:"bytes,7,opt,name=path"`
}

Forward defines a port forward to execute on a given pod.

func (*Forward) DeepCopy added in v0.20.2

func (in *Forward) DeepCopy() *Forward

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

func (*Forward) DeepCopyInto added in v0.20.2

func (in *Forward) DeepCopyInto(out *Forward)

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

func (*Forward) Descriptor added in v0.20.2

func (*Forward) Descriptor() ([]byte, []int)

func (*Forward) Marshal added in v0.20.2

func (m *Forward) Marshal() (dAtA []byte, err error)

func (*Forward) MarshalTo added in v0.20.2

func (m *Forward) MarshalTo(dAtA []byte) (int, error)

func (*Forward) MarshalToSizedBuffer added in v0.20.2

func (m *Forward) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Forward) ProtoMessage added in v0.20.2

func (*Forward) ProtoMessage()

func (*Forward) Reset added in v0.20.2

func (m *Forward) Reset()

func (*Forward) Size added in v0.20.2

func (m *Forward) Size() (n int)

func (*Forward) String added in v0.20.2

func (this *Forward) String() string

func (*Forward) Unmarshal added in v0.20.2

func (m *Forward) Unmarshal(dAtA []byte) error

func (*Forward) XXX_DiscardUnknown added in v0.20.2

func (m *Forward) XXX_DiscardUnknown()

func (*Forward) XXX_Marshal added in v0.20.2

func (m *Forward) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Forward) XXX_Merge added in v0.20.2

func (m *Forward) XXX_Merge(src proto.Message)

func (*Forward) XXX_Size added in v0.20.2

func (m *Forward) XXX_Size() int

func (*Forward) XXX_Unmarshal added in v0.20.2

func (m *Forward) XXX_Unmarshal(b []byte) error

type ForwardStatus added in v0.20.8

type ForwardStatus struct {
	// LocalPort is the port bound to on the system running Tilt.
	LocalPort int32 `json:"localPort" protobuf:"varint,1,opt,name=localPort"`

	// ContainerPort is the port in the container being forwarded.
	ContainerPort int32 `json:"containerPort" protobuf:"varint,2,opt,name=containerPort"`

	// Addresses that the forwarder is bound to.
	//
	// For example, a `localhost` host will bind to 127.0.0.1 and [::1].
	Addresses []string `json:"addresses" protobuf:"bytes,3,rep,name=addresses"`

	// StartedAt is the time at which the forward was initiated.
	//
	// If the forwarder is not running yet, this will be zero/empty.
	StartedAt metav1.MicroTime `json:"startedAt,omitempty" protobuf:"bytes,4,opt,name=startedAt"`

	// Error is a human-readable description if a problem was encountered
	// while initializing the forward.
	Error string `json:"error,omitempty" protobuf:"bytes,5,opt,name=error"`
}

func (*ForwardStatus) DeepCopy added in v0.20.8

func (in *ForwardStatus) DeepCopy() *ForwardStatus

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

func (*ForwardStatus) DeepCopyInto added in v0.20.8

func (in *ForwardStatus) DeepCopyInto(out *ForwardStatus)

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

func (*ForwardStatus) Descriptor added in v0.20.8

func (*ForwardStatus) Descriptor() ([]byte, []int)

func (*ForwardStatus) Marshal added in v0.20.8

func (m *ForwardStatus) Marshal() (dAtA []byte, err error)

func (*ForwardStatus) MarshalTo added in v0.20.8

func (m *ForwardStatus) MarshalTo(dAtA []byte) (int, error)

func (*ForwardStatus) MarshalToSizedBuffer added in v0.20.8

func (m *ForwardStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ForwardStatus) ProtoMessage added in v0.20.8

func (*ForwardStatus) ProtoMessage()

func (*ForwardStatus) Reset added in v0.20.8

func (m *ForwardStatus) Reset()

func (*ForwardStatus) Size added in v0.20.8

func (m *ForwardStatus) Size() (n int)

func (*ForwardStatus) String added in v0.20.8

func (this *ForwardStatus) String() string

func (*ForwardStatus) Unmarshal added in v0.20.8

func (m *ForwardStatus) Unmarshal(dAtA []byte) error

func (*ForwardStatus) XXX_DiscardUnknown added in v0.20.8

func (m *ForwardStatus) XXX_DiscardUnknown()

func (*ForwardStatus) XXX_Marshal added in v0.20.8

func (m *ForwardStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ForwardStatus) XXX_Merge added in v0.20.8

func (m *ForwardStatus) XXX_Merge(src proto.Message)

func (*ForwardStatus) XXX_Size added in v0.20.8

func (m *ForwardStatus) XXX_Size() int

func (*ForwardStatus) XXX_Unmarshal added in v0.20.8

func (m *ForwardStatus) XXX_Unmarshal(b []byte) error

type HTTPGetAction added in v0.18.11

type HTTPGetAction struct {
	// Path to access on the HTTP server.
	// +optional
	Path string `json:"path,omitempty" protobuf:"bytes,1,opt,name=path"`
	// Name or number of the port to access on the container.
	// Number must be in the range 1 to 65535.
	Port int32 `json:"port" protobuf:"bytes,2,opt,name=port"`
	// Host name to connect to, defaults to the pod IP. You probably want to set
	// "Host" in httpHeaders instead.
	// +optional
	Host string `json:"host,omitempty" protobuf:"bytes,3,opt,name=host"`
	// Scheme to use for connecting to the host.
	// Defaults to HTTP.
	// +optional
	Scheme URIScheme `json:"scheme,omitempty" protobuf:"bytes,4,opt,name=scheme,casttype=URIScheme"`
	// Custom headers to set in the request. HTTP allows repeated headers.
	// +optional
	HTTPHeaders []HTTPHeader `json:"httpHeaders,omitempty" protobuf:"bytes,5,rep,name=httpHeaders"`
}

HTTPGetAction describes an action based on HTTP Get requests.

func (*HTTPGetAction) DeepCopy added in v0.18.11

func (in *HTTPGetAction) DeepCopy() *HTTPGetAction

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

func (*HTTPGetAction) DeepCopyInto added in v0.18.11

func (in *HTTPGetAction) DeepCopyInto(out *HTTPGetAction)

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

func (*HTTPGetAction) Descriptor added in v0.20.0

func (*HTTPGetAction) Descriptor() ([]byte, []int)

func (*HTTPGetAction) Marshal added in v0.20.0

func (m *HTTPGetAction) Marshal() (dAtA []byte, err error)

func (*HTTPGetAction) MarshalTo added in v0.20.0

func (m *HTTPGetAction) MarshalTo(dAtA []byte) (int, error)

func (*HTTPGetAction) MarshalToSizedBuffer added in v0.20.0

func (m *HTTPGetAction) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*HTTPGetAction) ProtoMessage added in v0.20.0

func (*HTTPGetAction) ProtoMessage()

func (*HTTPGetAction) Reset added in v0.20.0

func (m *HTTPGetAction) Reset()

func (*HTTPGetAction) Size added in v0.20.0

func (m *HTTPGetAction) Size() (n int)

func (*HTTPGetAction) String added in v0.20.0

func (this *HTTPGetAction) String() string

func (*HTTPGetAction) Unmarshal added in v0.20.0

func (m *HTTPGetAction) Unmarshal(dAtA []byte) error

func (*HTTPGetAction) XXX_DiscardUnknown added in v0.20.0

func (m *HTTPGetAction) XXX_DiscardUnknown()

func (*HTTPGetAction) XXX_Marshal added in v0.20.0

func (m *HTTPGetAction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*HTTPGetAction) XXX_Merge added in v0.20.0

func (m *HTTPGetAction) XXX_Merge(src proto.Message)

func (*HTTPGetAction) XXX_Size added in v0.20.0

func (m *HTTPGetAction) XXX_Size() int

func (*HTTPGetAction) XXX_Unmarshal added in v0.20.0

func (m *HTTPGetAction) XXX_Unmarshal(b []byte) error

type HTTPHeader added in v0.18.11

type HTTPHeader struct {
	// The header field name
	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
	// The header field value
	Value string `json:"value" protobuf:"bytes,2,opt,name=value"`
}

HTTPHeader describes a custom header to be used in HTTP probes

func (*HTTPHeader) DeepCopy added in v0.18.11

func (in *HTTPHeader) DeepCopy() *HTTPHeader

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

func (*HTTPHeader) DeepCopyInto added in v0.18.11

func (in *HTTPHeader) DeepCopyInto(out *HTTPHeader)

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

func (*HTTPHeader) Descriptor added in v0.20.0

func (*HTTPHeader) Descriptor() ([]byte, []int)

func (*HTTPHeader) Marshal added in v0.20.0

func (m *HTTPHeader) Marshal() (dAtA []byte, err error)

func (*HTTPHeader) MarshalTo added in v0.20.0

func (m *HTTPHeader) MarshalTo(dAtA []byte) (int, error)

func (*HTTPHeader) MarshalToSizedBuffer added in v0.20.0

func (m *HTTPHeader) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*HTTPHeader) ProtoMessage added in v0.20.0

func (*HTTPHeader) ProtoMessage()

func (*HTTPHeader) Reset added in v0.20.0

func (m *HTTPHeader) Reset()

func (*HTTPHeader) Size added in v0.20.0

func (m *HTTPHeader) Size() (n int)

func (*HTTPHeader) String added in v0.20.0

func (this *HTTPHeader) String() string

func (*HTTPHeader) Unmarshal added in v0.20.0

func (m *HTTPHeader) Unmarshal(dAtA []byte) error

func (*HTTPHeader) XXX_DiscardUnknown added in v0.20.0

func (m *HTTPHeader) XXX_DiscardUnknown()

func (*HTTPHeader) XXX_Marshal added in v0.20.0

func (m *HTTPHeader) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*HTTPHeader) XXX_Merge added in v0.20.0

func (m *HTTPHeader) XXX_Merge(src proto.Message)

func (*HTTPHeader) XXX_Size added in v0.20.0

func (m *HTTPHeader) XXX_Size() int

func (*HTTPHeader) XXX_Unmarshal added in v0.20.0

func (m *HTTPHeader) XXX_Unmarshal(b []byte) error

type Handler added in v0.18.11

type Handler struct {
	// One and only one of the following should be specified.
	// Exec specifies the action to take.
	// +optional
	Exec *ExecAction `json:"exec,omitempty" protobuf:"bytes,1,opt,name=exec"`
	// HTTPGet specifies the http request to perform.
	// +optional
	HTTPGet *HTTPGetAction `json:"httpGet,omitempty" protobuf:"bytes,2,opt,name=httpGet"`
	// TCPSocket specifies an action involving a TCP port.
	// TCP hooks not yet supported
	// TODO: implement a realistic TCP lifecycle hook
	// +optional
	TCPSocket *TCPSocketAction `json:"tcpSocket,omitempty" protobuf:"bytes,3,opt,name=tcpSocket"`
}

Handler defines a specific action that should be taken in a probe.

func (*Handler) DeepCopy added in v0.18.11

func (in *Handler) DeepCopy() *Handler

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

func (*Handler) DeepCopyInto added in v0.18.11

func (in *Handler) DeepCopyInto(out *Handler)

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

func (*Handler) Descriptor added in v0.20.0

func (*Handler) Descriptor() ([]byte, []int)

func (*Handler) Marshal added in v0.20.0

func (m *Handler) Marshal() (dAtA []byte, err error)

func (*Handler) MarshalTo added in v0.20.0

func (m *Handler) MarshalTo(dAtA []byte) (int, error)

func (*Handler) MarshalToSizedBuffer added in v0.20.0

func (m *Handler) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Handler) ProtoMessage added in v0.20.0

func (*Handler) ProtoMessage()

func (*Handler) Reset added in v0.20.0

func (m *Handler) Reset()

func (*Handler) Size added in v0.20.0

func (m *Handler) Size() (n int)

func (*Handler) String added in v0.20.0

func (this *Handler) String() string

func (*Handler) Unmarshal added in v0.20.0

func (m *Handler) Unmarshal(dAtA []byte) error

func (*Handler) XXX_DiscardUnknown added in v0.20.0

func (m *Handler) XXX_DiscardUnknown()

func (*Handler) XXX_Marshal added in v0.20.0

func (m *Handler) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Handler) XXX_Merge added in v0.20.0

func (m *Handler) XXX_Merge(src proto.Message)

func (*Handler) XXX_Size added in v0.20.0

func (m *Handler) XXX_Size() int

func (*Handler) XXX_Unmarshal added in v0.20.0

func (m *Handler) XXX_Unmarshal(b []byte) error

type IgnoreDef added in v0.18.12

type IgnoreDef struct {
	// BasePath is the base path for the patterns. It cannot be empty.
	//
	// If no patterns are specified, everything under it will be recursively ignored.
	//
	// +tilt:local-path=true
	BasePath string `json:"basePath" protobuf:"bytes,1,opt,name=basePath"`

	// Patterns are dockerignore style rules. Absolute-style patterns will be rooted to the BasePath.
	//
	// See https://docs.docker.com/engine/reference/builder/#dockerignore-file.
	Patterns []string `json:"patterns,omitempty" protobuf:"bytes,2,rep,name=patterns"`
}

Describes sets of file paths that the FileWatch should ignore.

func (*IgnoreDef) DeepCopy added in v0.18.12

func (in *IgnoreDef) DeepCopy() *IgnoreDef

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

func (*IgnoreDef) DeepCopyInto added in v0.18.12

func (in *IgnoreDef) DeepCopyInto(out *IgnoreDef)

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

func (*IgnoreDef) Descriptor added in v0.20.0

func (*IgnoreDef) Descriptor() ([]byte, []int)

func (*IgnoreDef) Marshal added in v0.20.0

func (m *IgnoreDef) Marshal() (dAtA []byte, err error)

func (*IgnoreDef) MarshalTo added in v0.20.0

func (m *IgnoreDef) MarshalTo(dAtA []byte) (int, error)

func (*IgnoreDef) MarshalToSizedBuffer added in v0.20.0

func (m *IgnoreDef) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*IgnoreDef) ProtoMessage added in v0.20.0

func (*IgnoreDef) ProtoMessage()

func (*IgnoreDef) Reset added in v0.20.0

func (m *IgnoreDef) Reset()

func (*IgnoreDef) Size added in v0.20.0

func (m *IgnoreDef) Size() (n int)

func (*IgnoreDef) String added in v0.20.0

func (this *IgnoreDef) String() string

func (*IgnoreDef) Unmarshal added in v0.20.0

func (m *IgnoreDef) Unmarshal(dAtA []byte) error

func (*IgnoreDef) XXX_DiscardUnknown added in v0.20.0

func (m *IgnoreDef) XXX_DiscardUnknown()

func (*IgnoreDef) XXX_Marshal added in v0.20.0

func (m *IgnoreDef) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*IgnoreDef) XXX_Merge added in v0.20.0

func (m *IgnoreDef) XXX_Merge(src proto.Message)

func (*IgnoreDef) XXX_Size added in v0.20.0

func (m *IgnoreDef) XXX_Size() int

func (*IgnoreDef) XXX_Unmarshal added in v0.20.0

func (m *IgnoreDef) XXX_Unmarshal(b []byte) error

type ImageMap added in v0.20.7

type ImageMap struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Spec   ImageMapSpec   `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
	Status ImageMapStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
}

ImageMap expresses the mapping from an image reference to a real, pushed image in an image registry that a container runtime can access.

Another way to think about the ImageMap is that ImageMapSpec is a mutable image reference (where the image might not exist yet), but ImageMapStatus is an immutable image reference (where, if an image is specified, it always exists).

ImageMap does not specify how the image is built or who is responsible for building this. But any API that builds images should produce an ImageMap.

For example, a builder that builds to a local image registry might create a map from: 'my-apiserver:dev' to 'localhost:5000/my-apiserver:content-based-label'.

ImageMap doesn't follow the usual Kubernetes-style API semantics (where the Status is the result of running the Spec). It's closer to a ConfigMap. Though the Status does represent a real runtime result (an image in a registry).

+k8s:openapi-gen=true

func (*ImageMap) DeepCopy added in v0.20.7

func (in *ImageMap) DeepCopy() *ImageMap

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

func (*ImageMap) DeepCopyInto added in v0.20.7

func (in *ImageMap) DeepCopyInto(out *ImageMap)

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

func (*ImageMap) DeepCopyObject added in v0.20.7

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

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

func (*ImageMap) Descriptor added in v0.20.7

func (*ImageMap) Descriptor() ([]byte, []int)

func (*ImageMap) GetGroupVersionResource added in v0.20.7

func (in *ImageMap) GetGroupVersionResource() schema.GroupVersionResource

func (*ImageMap) GetObjectMeta added in v0.20.7

func (in *ImageMap) GetObjectMeta() *metav1.ObjectMeta

func (*ImageMap) GetSingularName added in v0.33.0

func (in *ImageMap) GetSingularName() string

func (*ImageMap) GetSpec added in v0.20.9

func (in *ImageMap) GetSpec() interface{}

func (*ImageMap) GetStatus added in v0.20.7

func (in *ImageMap) GetStatus() resource.StatusSubResource

func (*ImageMap) IsStorageVersion added in v0.20.7

func (in *ImageMap) IsStorageVersion() bool

func (*ImageMap) Marshal added in v0.20.7

func (m *ImageMap) Marshal() (dAtA []byte, err error)

func (*ImageMap) MarshalTo added in v0.20.7

func (m *ImageMap) MarshalTo(dAtA []byte) (int, error)

func (*ImageMap) MarshalToSizedBuffer added in v0.20.7

func (m *ImageMap) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ImageMap) NamespaceScoped added in v0.20.7

func (in *ImageMap) NamespaceScoped() bool

func (*ImageMap) New added in v0.20.7

func (in *ImageMap) New() runtime.Object

func (*ImageMap) NewList added in v0.20.7

func (in *ImageMap) NewList() runtime.Object

func (*ImageMap) ProtoMessage added in v0.20.7

func (*ImageMap) ProtoMessage()

func (*ImageMap) Reset added in v0.20.7

func (m *ImageMap) Reset()

func (*ImageMap) ShortNames added in v0.21.3

func (in *ImageMap) ShortNames() []string

func (*ImageMap) Size added in v0.20.7

func (m *ImageMap) Size() (n int)

func (*ImageMap) String added in v0.20.7

func (this *ImageMap) String() string

func (*ImageMap) Unmarshal added in v0.20.7

func (m *ImageMap) Unmarshal(dAtA []byte) error

func (*ImageMap) Validate added in v0.20.7

func (in *ImageMap) Validate(ctx context.Context) field.ErrorList

func (*ImageMap) XXX_DiscardUnknown added in v0.20.7

func (m *ImageMap) XXX_DiscardUnknown()

func (*ImageMap) XXX_Marshal added in v0.20.7

func (m *ImageMap) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ImageMap) XXX_Merge added in v0.20.7

func (m *ImageMap) XXX_Merge(src proto.Message)

func (*ImageMap) XXX_Size added in v0.20.7

func (m *ImageMap) XXX_Size() int

func (*ImageMap) XXX_Unmarshal added in v0.20.7

func (m *ImageMap) XXX_Unmarshal(b []byte) error

type ImageMapList added in v0.20.7

type ImageMapList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Items []ImageMap `json:"items" protobuf:"bytes,2,rep,name=items"`
}

ImageMapList +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*ImageMapList) DeepCopy added in v0.20.7

func (in *ImageMapList) DeepCopy() *ImageMapList

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

func (*ImageMapList) DeepCopyInto added in v0.20.7

func (in *ImageMapList) DeepCopyInto(out *ImageMapList)

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

func (*ImageMapList) DeepCopyObject added in v0.20.7

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

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

func (*ImageMapList) Descriptor added in v0.20.7

func (*ImageMapList) Descriptor() ([]byte, []int)

func (*ImageMapList) GetListMeta added in v0.20.7

func (in *ImageMapList) GetListMeta() *metav1.ListMeta

func (*ImageMapList) Marshal added in v0.20.7

func (m *ImageMapList) Marshal() (dAtA []byte, err error)

func (*ImageMapList) MarshalTo added in v0.20.7

func (m *ImageMapList) MarshalTo(dAtA []byte) (int, error)

func (*ImageMapList) MarshalToSizedBuffer added in v0.20.7

func (m *ImageMapList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ImageMapList) ProtoMessage added in v0.20.7

func (*ImageMapList) ProtoMessage()

func (*ImageMapList) Reset added in v0.20.7

func (m *ImageMapList) Reset()

func (*ImageMapList) Size added in v0.20.7

func (m *ImageMapList) Size() (n int)

func (*ImageMapList) String added in v0.20.7

func (this *ImageMapList) String() string

func (*ImageMapList) Unmarshal added in v0.20.7

func (m *ImageMapList) Unmarshal(dAtA []byte) error

func (*ImageMapList) XXX_DiscardUnknown added in v0.20.7

func (m *ImageMapList) XXX_DiscardUnknown()

func (*ImageMapList) XXX_Marshal added in v0.20.7

func (m *ImageMapList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ImageMapList) XXX_Merge added in v0.20.7

func (m *ImageMapList) XXX_Merge(src proto.Message)

func (*ImageMapList) XXX_Size added in v0.20.7

func (m *ImageMapList) XXX_Size() int

func (*ImageMapList) XXX_Unmarshal added in v0.20.7

func (m *ImageMapList) XXX_Unmarshal(b []byte) error

type ImageMapOverrideArgs added in v0.20.8

type ImageMapOverrideArgs struct {
	// A list of args strings.
	Args []string `json:"args" protobuf:"bytes,1,rep,name=args"`
}

ImageMapArgsOverride defines args to inject when the image is injected. Only applies to types that embed a v1.Container with a Command field.

https://pkg.go.dev/k8s.io/api/core/v1#Container

func (*ImageMapOverrideArgs) DeepCopy added in v0.20.8

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

func (*ImageMapOverrideArgs) DeepCopyInto added in v0.20.8

func (in *ImageMapOverrideArgs) DeepCopyInto(out *ImageMapOverrideArgs)

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

func (*ImageMapOverrideArgs) Descriptor added in v0.20.8

func (*ImageMapOverrideArgs) Descriptor() ([]byte, []int)

func (*ImageMapOverrideArgs) Marshal added in v0.20.8

func (m *ImageMapOverrideArgs) Marshal() (dAtA []byte, err error)

func (*ImageMapOverrideArgs) MarshalTo added in v0.20.8

func (m *ImageMapOverrideArgs) MarshalTo(dAtA []byte) (int, error)

func (*ImageMapOverrideArgs) MarshalToSizedBuffer added in v0.20.8

func (m *ImageMapOverrideArgs) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ImageMapOverrideArgs) ProtoMessage added in v0.20.8

func (*ImageMapOverrideArgs) ProtoMessage()

func (*ImageMapOverrideArgs) Reset added in v0.20.8

func (m *ImageMapOverrideArgs) Reset()

func (*ImageMapOverrideArgs) Size added in v0.20.8

func (m *ImageMapOverrideArgs) Size() (n int)

func (*ImageMapOverrideArgs) String added in v0.20.8

func (this *ImageMapOverrideArgs) String() string

func (*ImageMapOverrideArgs) Unmarshal added in v0.20.8

func (m *ImageMapOverrideArgs) Unmarshal(dAtA []byte) error

func (*ImageMapOverrideArgs) XXX_DiscardUnknown added in v0.20.8

func (m *ImageMapOverrideArgs) XXX_DiscardUnknown()

func (*ImageMapOverrideArgs) XXX_Marshal added in v0.20.8

func (m *ImageMapOverrideArgs) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ImageMapOverrideArgs) XXX_Merge added in v0.20.8

func (m *ImageMapOverrideArgs) XXX_Merge(src proto.Message)

func (*ImageMapOverrideArgs) XXX_Size added in v0.20.8

func (m *ImageMapOverrideArgs) XXX_Size() int

func (*ImageMapOverrideArgs) XXX_Unmarshal added in v0.20.8

func (m *ImageMapOverrideArgs) XXX_Unmarshal(b []byte) error

type ImageMapOverrideCommand added in v0.20.8

type ImageMapOverrideCommand struct {
	// A list of command strings.
	Command []string `json:"command" protobuf:"bytes,1,rep,name=command"`
}

ImageMapCommandOverride defines a command to inject when the image is injected. Only applies to types that embed a v1.Container with a Command field.

https://pkg.go.dev/k8s.io/api/core/v1#Container

func (*ImageMapOverrideCommand) DeepCopy added in v0.20.8

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

func (*ImageMapOverrideCommand) DeepCopyInto added in v0.20.8

func (in *ImageMapOverrideCommand) DeepCopyInto(out *ImageMapOverrideCommand)

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

func (*ImageMapOverrideCommand) Descriptor added in v0.20.8

func (*ImageMapOverrideCommand) Descriptor() ([]byte, []int)

func (*ImageMapOverrideCommand) Marshal added in v0.20.8

func (m *ImageMapOverrideCommand) Marshal() (dAtA []byte, err error)

func (*ImageMapOverrideCommand) MarshalTo added in v0.20.8

func (m *ImageMapOverrideCommand) MarshalTo(dAtA []byte) (int, error)

func (*ImageMapOverrideCommand) MarshalToSizedBuffer added in v0.20.8

func (m *ImageMapOverrideCommand) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ImageMapOverrideCommand) ProtoMessage added in v0.20.8

func (*ImageMapOverrideCommand) ProtoMessage()

func (*ImageMapOverrideCommand) Reset added in v0.20.8

func (m *ImageMapOverrideCommand) Reset()

func (*ImageMapOverrideCommand) Size added in v0.20.8

func (m *ImageMapOverrideCommand) Size() (n int)

func (*ImageMapOverrideCommand) String added in v0.20.8

func (this *ImageMapOverrideCommand) String() string

func (*ImageMapOverrideCommand) Unmarshal added in v0.20.8

func (m *ImageMapOverrideCommand) Unmarshal(dAtA []byte) error

func (*ImageMapOverrideCommand) XXX_DiscardUnknown added in v0.20.8

func (m *ImageMapOverrideCommand) XXX_DiscardUnknown()

func (*ImageMapOverrideCommand) XXX_Marshal added in v0.20.8

func (m *ImageMapOverrideCommand) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ImageMapOverrideCommand) XXX_Merge added in v0.20.8

func (m *ImageMapOverrideCommand) XXX_Merge(src proto.Message)

func (*ImageMapOverrideCommand) XXX_Size added in v0.20.8

func (m *ImageMapOverrideCommand) XXX_Size() int

func (*ImageMapOverrideCommand) XXX_Unmarshal added in v0.20.8

func (m *ImageMapOverrideCommand) XXX_Unmarshal(b []byte) error

type ImageMapSpec added in v0.20.7

type ImageMapSpec struct {
	// A named image reference.
	//
	// Deployment tools expect this image reference to match an image
	// in the YAML being deployed, and will replace that image reference.
	//
	// By default, this selector will match an image if the names match
	// (tags on both the selector and the matched reference are ignored).
	Selector string `json:"selector" protobuf:"bytes,1,opt,name=selector"`

	// If specified, then tags on both the selector and the matched
	// reference are used for matching. The selector will only
	// match the reference if the tags match exactly.
	//
	// +optional
	MatchExact bool `json:"matchExact,omitempty" protobuf:"varint,2,opt,name=matchExact"`

	// If specified, then the selector will also match any strings
	// in container env variables.
	//
	// +optional
	MatchInEnvVars bool `json:"matchInEnvVars,omitempty" protobuf:"varint,3,opt,name=matchInEnvVars"`

	// If specified, the injector will replace the 'command'
	// field in the container when it replaces the image.
	//
	// +optional
	OverrideCommand *ImageMapOverrideCommand `json:"overrideCommand,omitempty" protobuf:"bytes,4,opt,name=overrideCommand"`

	// If specified, the injector will replace the 'args'
	// field in the container when it replaces the image.
	//
	// +optional
	OverrideArgs *ImageMapOverrideArgs `json:"overrideArgs,omitempty" protobuf:"bytes,5,opt,name=overrideArgs"`
}

ImageMapSpec defines the desired state of ImageMap

func (*ImageMapSpec) DeepCopy added in v0.20.7

func (in *ImageMapSpec) DeepCopy() *ImageMapSpec

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

func (*ImageMapSpec) DeepCopyInto added in v0.20.7

func (in *ImageMapSpec) DeepCopyInto(out *ImageMapSpec)

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

func (*ImageMapSpec) Descriptor added in v0.20.7

func (*ImageMapSpec) Descriptor() ([]byte, []int)

func (*ImageMapSpec) Marshal added in v0.20.7

func (m *ImageMapSpec) Marshal() (dAtA []byte, err error)

func (*ImageMapSpec) MarshalTo added in v0.20.7

func (m *ImageMapSpec) MarshalTo(dAtA []byte) (int, error)

func (*ImageMapSpec) MarshalToSizedBuffer added in v0.20.7

func (m *ImageMapSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ImageMapSpec) ProtoMessage added in v0.20.7

func (*ImageMapSpec) ProtoMessage()

func (*ImageMapSpec) Reset added in v0.20.7

func (m *ImageMapSpec) Reset()

func (*ImageMapSpec) Size added in v0.20.7

func (m *ImageMapSpec) Size() (n int)

func (*ImageMapSpec) String added in v0.20.7

func (this *ImageMapSpec) String() string

func (*ImageMapSpec) Unmarshal added in v0.20.7

func (m *ImageMapSpec) Unmarshal(dAtA []byte) error

func (*ImageMapSpec) XXX_DiscardUnknown added in v0.20.7

func (m *ImageMapSpec) XXX_DiscardUnknown()

func (*ImageMapSpec) XXX_Marshal added in v0.20.7

func (m *ImageMapSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ImageMapSpec) XXX_Merge added in v0.20.7

func (m *ImageMapSpec) XXX_Merge(src proto.Message)

func (*ImageMapSpec) XXX_Size added in v0.20.7

func (m *ImageMapSpec) XXX_Size() int

func (*ImageMapSpec) XXX_Unmarshal added in v0.20.7

func (m *ImageMapSpec) XXX_Unmarshal(b []byte) error

type ImageMapStatus added in v0.20.7

type ImageMapStatus struct {
	// A fully-qualified image reference, including a name and an immutable tag,
	// as seen from the cluster container runtime that we're mapping this image to.
	//
	// NB: Container images often need to be referenced from different networks,
	// including:
	//
	// 1) The cluster container runtime
	// 2) The local network
	// 3) The cluster network
	//
	// And each of these cases may have distinct URLs.
	// We might deprecate this field and only use fields
	// of the form `ImageFromX`.
	//
	// For more details on image references in different networks, see:
	// https://github.com/kubernetes/enhancements/tree/master/keps/sig-cluster-lifecycle/generic/1755-communicating-a-local-registry#specification-for-localregistryhosting-v1
	Image string `json:"image,omitempty" protobuf:"bytes,1,opt,name=image"`

	// A fully-qualified image reference, including a name and an immutable tag,
	// as seen from the local network.
	ImageFromLocal string `json:"imageFromLocal,omitempty" protobuf:"bytes,3,opt,name=imageFromLocal"`

	// A fully-qualified image reference, including a name and an immutable tag,
	// as seen from the cluster container runtime.
	ImageFromCluster string `json:"imageFromCluster,omitempty" protobuf:"bytes,4,opt,name=imageFromCluster"`

	// Timestamp indicating when the image started building.
	//
	// Intended to be used to determine which file changes were picked up by the
	// image build. We can assume that any file changes before this timestamp were
	// definitely included in the image, and any file changes after this timestamp
	// may not be included in the image.
	BuildStartTime *metav1.MicroTime `json:"buildStartTime,omitempty" protobuf:"bytes,2,opt,name=buildStartTime"`
}

ImageMapStatus defines the observed state of ImageMap

func (ImageMapStatus) CopyTo added in v0.20.7

func (*ImageMapStatus) DeepCopy added in v0.20.7

func (in *ImageMapStatus) DeepCopy() *ImageMapStatus

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

func (*ImageMapStatus) DeepCopyInto added in v0.20.7

func (in *ImageMapStatus) DeepCopyInto(out *ImageMapStatus)

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

func (*ImageMapStatus) Descriptor added in v0.20.7

func (*ImageMapStatus) Descriptor() ([]byte, []int)

func (*ImageMapStatus) Marshal added in v0.20.7

func (m *ImageMapStatus) Marshal() (dAtA []byte, err error)

func (*ImageMapStatus) MarshalTo added in v0.20.7

func (m *ImageMapStatus) MarshalTo(dAtA []byte) (int, error)

func (*ImageMapStatus) MarshalToSizedBuffer added in v0.20.7

func (m *ImageMapStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ImageMapStatus) ProtoMessage added in v0.20.7

func (*ImageMapStatus) ProtoMessage()

func (*ImageMapStatus) Reset added in v0.20.7

func (m *ImageMapStatus) Reset()

func (*ImageMapStatus) Size added in v0.20.7

func (m *ImageMapStatus) Size() (n int)

func (*ImageMapStatus) String added in v0.20.7

func (this *ImageMapStatus) String() string

func (*ImageMapStatus) Unmarshal added in v0.20.7

func (m *ImageMapStatus) Unmarshal(dAtA []byte) error

func (*ImageMapStatus) XXX_DiscardUnknown added in v0.20.7

func (m *ImageMapStatus) XXX_DiscardUnknown()

func (*ImageMapStatus) XXX_Marshal added in v0.20.7

func (m *ImageMapStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ImageMapStatus) XXX_Merge added in v0.20.7

func (m *ImageMapStatus) XXX_Merge(src proto.Message)

func (*ImageMapStatus) XXX_Size added in v0.20.7

func (m *ImageMapStatus) XXX_Size() int

func (*ImageMapStatus) XXX_Unmarshal added in v0.20.7

func (m *ImageMapStatus) XXX_Unmarshal(b []byte) error

type KubernetesApply added in v0.20.7

type KubernetesApply struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Spec   KubernetesApplySpec   `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
	Status KubernetesApplyStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
}

KubernetesApply specifies a blob of YAML to apply, and a set of ImageMaps that the YAML depends on.

The KubernetesApply controller will resolve the ImageMaps into immutable image references. The controller will process the spec YAML, then apply it to the cluster. Those processing steps might include:

- Injecting the resolved image references. - Adding custom labels so that Tilt can track the progress of the apply. - Modifying image pull rules to ensure the image is pulled correctly.

The controller won't apply anything until all ImageMaps resolve to real images.

The controller will watch all the image maps, and redeploy the entire YAML if any of the maps resolve to a new image.

The status field will contain both the raw applied object, and derived fields to help other controllers figure out how to watch the apply progress.

+k8s:openapi-gen=true +tilt:starlark-gen=true

func (*KubernetesApply) DeepCopy added in v0.20.7

func (in *KubernetesApply) DeepCopy() *KubernetesApply

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

func (*KubernetesApply) DeepCopyInto added in v0.20.7

func (in *KubernetesApply) DeepCopyInto(out *KubernetesApply)

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

func (*KubernetesApply) DeepCopyObject added in v0.20.7

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

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

func (*KubernetesApply) Default added in v0.30.0

func (in *KubernetesApply) Default()

func (*KubernetesApply) Descriptor added in v0.20.7

func (*KubernetesApply) Descriptor() ([]byte, []int)

func (*KubernetesApply) GetGroupVersionResource added in v0.20.7

func (in *KubernetesApply) GetGroupVersionResource() schema.GroupVersionResource

func (*KubernetesApply) GetObjectMeta added in v0.20.7

func (in *KubernetesApply) GetObjectMeta() *metav1.ObjectMeta

func (*KubernetesApply) GetSingularName added in v0.33.0

func (in *KubernetesApply) GetSingularName() string

func (*KubernetesApply) GetSpec added in v0.20.9

func (in *KubernetesApply) GetSpec() interface{}

func (*KubernetesApply) GetStatus added in v0.20.7

func (in *KubernetesApply) GetStatus() resource.StatusSubResource

func (*KubernetesApply) IsStorageVersion added in v0.20.7

func (in *KubernetesApply) IsStorageVersion() bool

func (*KubernetesApply) Marshal added in v0.20.7

func (m *KubernetesApply) Marshal() (dAtA []byte, err error)

func (*KubernetesApply) MarshalTo added in v0.20.7

func (m *KubernetesApply) MarshalTo(dAtA []byte) (int, error)

func (*KubernetesApply) MarshalToSizedBuffer added in v0.20.7

func (m *KubernetesApply) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*KubernetesApply) NamespaceScoped added in v0.20.7

func (in *KubernetesApply) NamespaceScoped() bool

func (*KubernetesApply) New added in v0.20.7

func (in *KubernetesApply) New() runtime.Object

func (*KubernetesApply) NewList added in v0.20.7

func (in *KubernetesApply) NewList() runtime.Object

func (*KubernetesApply) ProtoMessage added in v0.20.7

func (*KubernetesApply) ProtoMessage()

func (*KubernetesApply) Reset added in v0.20.7

func (m *KubernetesApply) Reset()

func (*KubernetesApply) ShortNames added in v0.21.3

func (in *KubernetesApply) ShortNames() []string

func (*KubernetesApply) Size added in v0.20.7

func (m *KubernetesApply) Size() (n int)

func (*KubernetesApply) String added in v0.20.7

func (this *KubernetesApply) String() string

func (*KubernetesApply) Unmarshal added in v0.20.7

func (m *KubernetesApply) Unmarshal(dAtA []byte) error

func (*KubernetesApply) Validate added in v0.20.7

func (in *KubernetesApply) Validate(ctx context.Context) field.ErrorList

func (*KubernetesApply) XXX_DiscardUnknown added in v0.20.7

func (m *KubernetesApply) XXX_DiscardUnknown()

func (*KubernetesApply) XXX_Marshal added in v0.20.7

func (m *KubernetesApply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*KubernetesApply) XXX_Merge added in v0.20.7

func (m *KubernetesApply) XXX_Merge(src proto.Message)

func (*KubernetesApply) XXX_Size added in v0.20.7

func (m *KubernetesApply) XXX_Size() int

func (*KubernetesApply) XXX_Unmarshal added in v0.20.7

func (m *KubernetesApply) XXX_Unmarshal(b []byte) error

type KubernetesApplyCmd added in v0.22.15

type KubernetesApplyCmd struct {
	// Args are the command-line arguments for the apply command. Must have length >= 1.
	Args []string `json:"args" protobuf:"bytes,1,rep,name=args"`

	// Process working directory.
	//
	// If not specified, will default to Tilt working directory.
	//
	// +optional
	// +tilt:local-path=true
	Dir string `json:"dir" protobuf:"bytes,2,opt,name=dir"`

	// Env are additional variables for the process environment.
	//
	// Environment variables are layered on top of the environment variables
	// that Tilt runs with.
	//
	// +optional
	Env []string `json:"env" protobuf:"bytes,3,rep,name=env"`
}

func (*KubernetesApplyCmd) DeepCopy added in v0.22.15

func (in *KubernetesApplyCmd) DeepCopy() *KubernetesApplyCmd

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

func (*KubernetesApplyCmd) DeepCopyInto added in v0.22.15

func (in *KubernetesApplyCmd) DeepCopyInto(out *KubernetesApplyCmd)

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

func (*KubernetesApplyCmd) Descriptor added in v0.22.15

func (*KubernetesApplyCmd) Descriptor() ([]byte, []int)

func (*KubernetesApplyCmd) Marshal added in v0.22.15

func (m *KubernetesApplyCmd) Marshal() (dAtA []byte, err error)

func (*KubernetesApplyCmd) MarshalTo added in v0.22.15

func (m *KubernetesApplyCmd) MarshalTo(dAtA []byte) (int, error)

func (*KubernetesApplyCmd) MarshalToSizedBuffer added in v0.22.15

func (m *KubernetesApplyCmd) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*KubernetesApplyCmd) ProtoMessage added in v0.22.15

func (*KubernetesApplyCmd) ProtoMessage()

func (*KubernetesApplyCmd) Reset added in v0.22.15

func (m *KubernetesApplyCmd) Reset()

func (*KubernetesApplyCmd) Size added in v0.22.15

func (m *KubernetesApplyCmd) Size() (n int)

func (*KubernetesApplyCmd) String added in v0.22.15

func (this *KubernetesApplyCmd) String() string

func (*KubernetesApplyCmd) Unmarshal added in v0.22.15

func (m *KubernetesApplyCmd) Unmarshal(dAtA []byte) error

func (*KubernetesApplyCmd) Validate added in v0.22.15

func (*KubernetesApplyCmd) XXX_DiscardUnknown added in v0.22.15

func (m *KubernetesApplyCmd) XXX_DiscardUnknown()

func (*KubernetesApplyCmd) XXX_Marshal added in v0.22.15

func (m *KubernetesApplyCmd) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*KubernetesApplyCmd) XXX_Merge added in v0.22.15

func (m *KubernetesApplyCmd) XXX_Merge(src proto.Message)

func (*KubernetesApplyCmd) XXX_Size added in v0.22.15

func (m *KubernetesApplyCmd) XXX_Size() int

func (*KubernetesApplyCmd) XXX_Unmarshal added in v0.22.15

func (m *KubernetesApplyCmd) XXX_Unmarshal(b []byte) error

type KubernetesApplyList added in v0.20.7

type KubernetesApplyList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Items []KubernetesApply `json:"items" protobuf:"bytes,2,rep,name=items"`
}

KubernetesApplyList +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*KubernetesApplyList) DeepCopy added in v0.20.7

func (in *KubernetesApplyList) DeepCopy() *KubernetesApplyList

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

func (*KubernetesApplyList) DeepCopyInto added in v0.20.7

func (in *KubernetesApplyList) DeepCopyInto(out *KubernetesApplyList)

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

func (*KubernetesApplyList) DeepCopyObject added in v0.20.7

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

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

func (*KubernetesApplyList) Descriptor added in v0.20.7

func (*KubernetesApplyList) Descriptor() ([]byte, []int)

func (*KubernetesApplyList) GetListMeta added in v0.20.7

func (in *KubernetesApplyList) GetListMeta() *metav1.ListMeta

func (*KubernetesApplyList) Marshal added in v0.20.7

func (m *KubernetesApplyList) Marshal() (dAtA []byte, err error)

func (*KubernetesApplyList) MarshalTo added in v0.20.7

func (m *KubernetesApplyList) MarshalTo(dAtA []byte) (int, error)

func (*KubernetesApplyList) MarshalToSizedBuffer added in v0.20.7

func (m *KubernetesApplyList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*KubernetesApplyList) ProtoMessage added in v0.20.7

func (*KubernetesApplyList) ProtoMessage()

func (*KubernetesApplyList) Reset added in v0.20.7

func (m *KubernetesApplyList) Reset()

func (*KubernetesApplyList) Size added in v0.20.7

func (m *KubernetesApplyList) Size() (n int)

func (*KubernetesApplyList) String added in v0.20.7

func (this *KubernetesApplyList) String() string

func (*KubernetesApplyList) Unmarshal added in v0.20.7

func (m *KubernetesApplyList) Unmarshal(dAtA []byte) error

func (*KubernetesApplyList) XXX_DiscardUnknown added in v0.20.7

func (m *KubernetesApplyList) XXX_DiscardUnknown()

func (*KubernetesApplyList) XXX_Marshal added in v0.20.7

func (m *KubernetesApplyList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*KubernetesApplyList) XXX_Merge added in v0.20.7

func (m *KubernetesApplyList) XXX_Merge(src proto.Message)

func (*KubernetesApplyList) XXX_Size added in v0.20.7

func (m *KubernetesApplyList) XXX_Size() int

func (*KubernetesApplyList) XXX_Unmarshal added in v0.20.7

func (m *KubernetesApplyList) XXX_Unmarshal(b []byte) error

type KubernetesApplySpec added in v0.20.7

type KubernetesApplySpec struct {
	// YAML to apply to the cluster.
	//
	// Exactly one of YAML OR ApplyCmd MUST be provided.
	//
	// +optional
	YAML string `json:"yaml,omitempty" protobuf:"bytes,1,opt,name=yaml"`

	// Names of image maps that this applier depends on.
	//
	// The controller will watch all the image maps, and redeploy the entire YAML
	// if any of the maps resolve to a new image.
	//
	// +optional
	ImageMaps []string `json:"imageMaps,omitempty" protobuf:"bytes,2,rep,name=imageMaps"`

	// Descriptors of how to find images in the YAML.
	//
	// Needed when injecting images into CRDs.
	//
	// +optional
	ImageLocators []KubernetesImageLocator `json:"imageLocators,omitempty" protobuf:"bytes,3,rep,name=imageLocators"`

	// The timeout on the apply operation.
	//
	// We've had problems with both:
	// 1) CRD apiservers that take an arbitrarily long time to apply, and
	// 2) Infinite loops in the apimachinery
	// So we offer the ability to set a timeout on Kubernetes apply operations.
	//
	// The default timeout is 30s.
	//
	// +optional
	Timeout metav1.Duration `json:"timeout,omitempty" protobuf:"bytes,4,opt,name=timeout"`

	// KubernetesDiscoveryTemplateSpec describes how we discover pods
	// for resources created by this Apply.
	//
	// If not specified, the KubernetesDiscovery controller will listen to all pods,
	// and follow owner references to find the pods owned by these resources.
	//
	// +optional
	KubernetesDiscoveryTemplateSpec *KubernetesDiscoveryTemplateSpec `json:"kubernetesDiscoveryTemplateSpec,omitempty" protobuf:"bytes,5,opt,name=kubernetesDiscoveryTemplateSpec"`

	// PortForwardTemplateSpec describes the data model for port forwards
	// that KubernetesApply should set up.
	//
	// Underneath the hood, we'll create a KubernetesDiscovery object that finds
	// the pods and sets up the port-forwarding. Only one PortForward will be
	// active at a time.
	//
	// +optional
	PortForwardTemplateSpec *PortForwardTemplateSpec `json:"portForwardTemplateSpec,omitempty" protobuf:"bytes,6,opt,name=portForwardTemplateSpec"`

	// PodLogStreamTemplateSpec describes the data model for PodLogStreams
	// that KubernetesApply should set up.
	//
	// Underneath the hood, we'll create a KubernetesDiscovery object that finds
	// the pods and sets up the pod log streams.
	//
	// If no template is specified, the controller will stream all
	// pod logs available from the apiserver.
	//
	// +optional
	PodLogStreamTemplateSpec *PodLogStreamTemplateSpec `json:"podLogStreamTemplateSpec,omitempty" protobuf:"bytes,7,opt,name=podLogStreamTemplateSpec"`

	// DiscoveryStrategy describes how we set up pod watches for the applied
	// resources. This affects all systems that attach to pods, including
	// PortForwards, PodLogStreams, resource readiness, and live-updates.
	//
	// +optional
	DiscoveryStrategy KubernetesDiscoveryStrategy `json:"discoveryStrategy,omitempty" protobuf:"bytes,8,opt,name=discoveryStrategy,casttype=KubernetesDiscoveryStrategy"`

	// Specifies how to disable this.
	//
	// +optional
	DisableSource *DisableSource `json:"disableSource,omitempty" protobuf:"bytes,9,opt,name=disableSource"`

	// ApplyCmd is a custom command to execute to deploy entities to the Kubernetes cluster.
	//
	// The command must be idempotent, e.g. it must not fail if some or all entities already exist.
	//
	// The ApplyCmd MUST return valid Kubernetes YAML for the entities it applied to the cluster.
	//
	// Exactly one of YAML OR ApplyCmd MUST be provided.
	//
	// +optional
	ApplyCmd *KubernetesApplyCmd `json:"applyCmd,omitempty" protobuf:"bytes,10,opt,name=applyCmd"`

	// RestartOn determines external triggers that will result in an apply.
	//
	// +optional
	RestartOn *RestartOnSpec `json:"restartOn,omitempty" protobuf:"bytes,11,opt,name=restartOn"`

	// DeleteCmd is a custom command to execute to delete entities created by ApplyCmd and clean up any
	// additional state.
	//
	// +optional
	DeleteCmd *KubernetesApplyCmd `json:"deleteCmd,omitempty" protobuf:"bytes,12,opt,name=deleteCmd"`

	// Cluster name to determine the Kubernetes cluster.
	//
	// If not provided, "default" will be used.
	//
	// +optional
	Cluster string `json:"cluster" protobuf:"bytes,13,opt,name=cluster"`
}

KubernetesApplySpec defines the desired state of KubernetesApply

func (*KubernetesApplySpec) DeepCopy added in v0.20.7

func (in *KubernetesApplySpec) DeepCopy() *KubernetesApplySpec

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

func (*KubernetesApplySpec) DeepCopyInto added in v0.20.7

func (in *KubernetesApplySpec) DeepCopyInto(out *KubernetesApplySpec)

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

func (*KubernetesApplySpec) Descriptor added in v0.20.7

func (*KubernetesApplySpec) Descriptor() ([]byte, []int)

func (*KubernetesApplySpec) Marshal added in v0.20.7

func (m *KubernetesApplySpec) Marshal() (dAtA []byte, err error)

func (*KubernetesApplySpec) MarshalTo added in v0.20.7

func (m *KubernetesApplySpec) MarshalTo(dAtA []byte) (int, error)

func (*KubernetesApplySpec) MarshalToSizedBuffer added in v0.20.7

func (m *KubernetesApplySpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*KubernetesApplySpec) ProtoMessage added in v0.20.7

func (*KubernetesApplySpec) ProtoMessage()

func (*KubernetesApplySpec) Reset added in v0.20.7

func (m *KubernetesApplySpec) Reset()

func (*KubernetesApplySpec) Size added in v0.20.7

func (m *KubernetesApplySpec) Size() (n int)

func (*KubernetesApplySpec) String added in v0.20.7

func (this *KubernetesApplySpec) String() string

func (*KubernetesApplySpec) Unmarshal added in v0.20.7

func (m *KubernetesApplySpec) Unmarshal(dAtA []byte) error

func (*KubernetesApplySpec) XXX_DiscardUnknown added in v0.20.7

func (m *KubernetesApplySpec) XXX_DiscardUnknown()

func (*KubernetesApplySpec) XXX_Marshal added in v0.20.7

func (m *KubernetesApplySpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*KubernetesApplySpec) XXX_Merge added in v0.20.7

func (m *KubernetesApplySpec) XXX_Merge(src proto.Message)

func (*KubernetesApplySpec) XXX_Size added in v0.20.7

func (m *KubernetesApplySpec) XXX_Size() int

func (*KubernetesApplySpec) XXX_Unmarshal added in v0.20.7

func (m *KubernetesApplySpec) XXX_Unmarshal(b []byte) error

type KubernetesApplyStatus added in v0.20.7

type KubernetesApplyStatus struct {
	// The result of applying the YAML to the cluster. This should contain
	// UIDs for the applied resources.
	//
	// +optional
	ResultYAML string `json:"resultYAML,omitempty" protobuf:"bytes,1,opt,name=resultYAML"`

	// An error applying the YAML.
	//
	// If there was an error, than ResultYAML should be empty (and vice versa).
	//
	// +optional
	Error string `json:"error,omitempty" protobuf:"bytes,2,opt,name=error"`

	// Timestamp of we last finished applying this YAML to the cluster.
	//
	// When populated, must be equal or after the LastApplyStartTime field.
	//
	// TODO(nick): In v1, we may rename this to LastApplyFinishTime, which
	// is more consistent with how we name this in other API objects.
	//
	// +optional
	LastApplyTime metav1.MicroTime `json:"lastApplyTime,omitempty" protobuf:"bytes,3,opt,name=lastApplyTime"`

	// Timestamp of when we last started applying this YAML to the cluster.
	//
	// +optional
	LastApplyStartTime metav1.MicroTime `json:"lastApplyStartTime,omitempty" protobuf:"bytes,6,opt,name=lastApplyStartTime"`

	// A base64-encoded hash of all the inputs to the apply.
	//
	// We added this so that more procedural code can determine whether
	// their updates have been applied yet or not by the reconciler. But any code
	// using it this way should note that the reconciler may "skip" an update
	// (e.g., if two images get updated in quick succession before the reconciler
	// injects them into the YAML), so a particular ApplieInputHash might never appear.
	//
	// +optional
	AppliedInputHash string `json:"appliedInputHash,omitempty" protobuf:"bytes,4,opt,name=appliedInputHash"`

	// Details about whether/why this is disabled.
	// +optional
	DisableStatus *DisableStatus `json:"disableStatus,omitempty" protobuf:"bytes,5,opt,name=disableStatus"`

	// Conditions based on the result of the apply.
	//
	// +optional
	Conditions []metav1.Condition `json:"conditions,omitempty" protobuf:"bytes,7,rep,name=conditions"`
}

KubernetesApplyStatus defines the observed state of KubernetesApply

func (KubernetesApplyStatus) CopyTo added in v0.20.7

func (*KubernetesApplyStatus) DeepCopy added in v0.20.7

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

func (*KubernetesApplyStatus) DeepCopyInto added in v0.20.7

func (in *KubernetesApplyStatus) DeepCopyInto(out *KubernetesApplyStatus)

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

func (*KubernetesApplyStatus) Descriptor added in v0.20.7

func (*KubernetesApplyStatus) Descriptor() ([]byte, []int)

func (*KubernetesApplyStatus) Marshal added in v0.20.7

func (m *KubernetesApplyStatus) Marshal() (dAtA []byte, err error)

func (*KubernetesApplyStatus) MarshalTo added in v0.20.7

func (m *KubernetesApplyStatus) MarshalTo(dAtA []byte) (int, error)

func (*KubernetesApplyStatus) MarshalToSizedBuffer added in v0.20.7

func (m *KubernetesApplyStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*KubernetesApplyStatus) ProtoMessage added in v0.20.7

func (*KubernetesApplyStatus) ProtoMessage()

func (*KubernetesApplyStatus) Reset added in v0.20.7

func (m *KubernetesApplyStatus) Reset()

func (*KubernetesApplyStatus) Size added in v0.20.7

func (m *KubernetesApplyStatus) Size() (n int)

func (*KubernetesApplyStatus) String added in v0.20.7

func (this *KubernetesApplyStatus) String() string

func (*KubernetesApplyStatus) Unmarshal added in v0.20.7

func (m *KubernetesApplyStatus) Unmarshal(dAtA []byte) error

func (*KubernetesApplyStatus) XXX_DiscardUnknown added in v0.20.7

func (m *KubernetesApplyStatus) XXX_DiscardUnknown()

func (*KubernetesApplyStatus) XXX_Marshal added in v0.20.7

func (m *KubernetesApplyStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*KubernetesApplyStatus) XXX_Merge added in v0.20.7

func (m *KubernetesApplyStatus) XXX_Merge(src proto.Message)

func (*KubernetesApplyStatus) XXX_Size added in v0.20.7

func (m *KubernetesApplyStatus) XXX_Size() int

func (*KubernetesApplyStatus) XXX_Unmarshal added in v0.20.7

func (m *KubernetesApplyStatus) XXX_Unmarshal(b []byte) error

type KubernetesClusterConnection added in v0.23.3

type KubernetesClusterConnection struct {
	// The name of the kubeconfig context to use.
	//
	// If not specified, will use the default context in the kubeconfig.
	//
	// +optional
	Context string `json:"context,omitempty" protobuf:"bytes,1,opt,name=context"`

	// The default namespace to use.
	//
	// If not specified, will use the namespace in the kubeconfig.
	//
	// +optional
	Namespace string `json:"namespace,omitempty" protobuf:"bytes,2,opt,name=namespace"`
}

func (*KubernetesClusterConnection) DeepCopy added in v0.23.3

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

func (*KubernetesClusterConnection) DeepCopyInto added in v0.23.3

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

func (*KubernetesClusterConnection) Descriptor added in v0.23.3

func (*KubernetesClusterConnection) Descriptor() ([]byte, []int)

func (*KubernetesClusterConnection) Marshal added in v0.23.3

func (m *KubernetesClusterConnection) Marshal() (dAtA []byte, err error)

func (*KubernetesClusterConnection) MarshalTo added in v0.23.3

func (m *KubernetesClusterConnection) MarshalTo(dAtA []byte) (int, error)

func (*KubernetesClusterConnection) MarshalToSizedBuffer added in v0.23.3

func (m *KubernetesClusterConnection) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*KubernetesClusterConnection) ProtoMessage added in v0.23.3

func (*KubernetesClusterConnection) ProtoMessage()

func (*KubernetesClusterConnection) Reset added in v0.23.3

func (m *KubernetesClusterConnection) Reset()

func (*KubernetesClusterConnection) Size added in v0.23.3

func (m *KubernetesClusterConnection) Size() (n int)

func (*KubernetesClusterConnection) String added in v0.23.3

func (this *KubernetesClusterConnection) String() string

func (*KubernetesClusterConnection) Unmarshal added in v0.23.3

func (m *KubernetesClusterConnection) Unmarshal(dAtA []byte) error

func (*KubernetesClusterConnection) XXX_DiscardUnknown added in v0.23.3

func (m *KubernetesClusterConnection) XXX_DiscardUnknown()

func (*KubernetesClusterConnection) XXX_Marshal added in v0.23.3

func (m *KubernetesClusterConnection) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*KubernetesClusterConnection) XXX_Merge added in v0.23.3

func (m *KubernetesClusterConnection) XXX_Merge(src proto.Message)

func (*KubernetesClusterConnection) XXX_Size added in v0.23.3

func (m *KubernetesClusterConnection) XXX_Size() int

func (*KubernetesClusterConnection) XXX_Unmarshal added in v0.23.3

func (m *KubernetesClusterConnection) XXX_Unmarshal(b []byte) error

type KubernetesClusterConnectionStatus added in v0.27.0

type KubernetesClusterConnectionStatus struct {
	// The resolved kubeconfig context.
	Context string `json:"context" protobuf:"bytes,2,opt,name=context"`

	// The resolved default namespace.
	Namespace string `json:"namespace" protobuf:"bytes,3,opt,name=namespace"`

	// The resolved cluster name (as determined by the kubeconfig context).
	Cluster string `json:"cluster" protobuf:"bytes,4,opt,name=cluster"`

	// The product name for this cluster.
	//
	// For a complete list of possible product names, see:
	// https://pkg.go.dev/github.com/tilt-dev/clusterid#Product
	Product string `json:"product,omitempty" protobuf:"bytes,1,opt,name=product"`

	// The resolved config path.
	//
	// Tilt will freeze the config and write it to a temporary directory.
	// Subprocesses that depend on this cluster can find this file
	// by reading the KUBECONFIG env var.
	ConfigPath string `json:"configPath,omitempty" protobuf:"bytes,5,opt,name=configPath"`
}

Kubernetes-specific fields for connection status

func (*KubernetesClusterConnectionStatus) DeepCopy added in v0.27.0

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

func (*KubernetesClusterConnectionStatus) DeepCopyInto added in v0.27.0

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

func (*KubernetesClusterConnectionStatus) Descriptor added in v0.27.0

func (*KubernetesClusterConnectionStatus) Descriptor() ([]byte, []int)

func (*KubernetesClusterConnectionStatus) Marshal added in v0.27.0

func (m *KubernetesClusterConnectionStatus) Marshal() (dAtA []byte, err error)

func (*KubernetesClusterConnectionStatus) MarshalTo added in v0.27.0

func (m *KubernetesClusterConnectionStatus) MarshalTo(dAtA []byte) (int, error)

func (*KubernetesClusterConnectionStatus) MarshalToSizedBuffer added in v0.27.0

func (m *KubernetesClusterConnectionStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*KubernetesClusterConnectionStatus) ProtoMessage added in v0.27.0

func (*KubernetesClusterConnectionStatus) ProtoMessage()

func (*KubernetesClusterConnectionStatus) Reset added in v0.27.0

func (*KubernetesClusterConnectionStatus) Size added in v0.27.0

func (m *KubernetesClusterConnectionStatus) Size() (n int)

func (*KubernetesClusterConnectionStatus) String added in v0.27.0

func (*KubernetesClusterConnectionStatus) Unmarshal added in v0.27.0

func (m *KubernetesClusterConnectionStatus) Unmarshal(dAtA []byte) error

func (*KubernetesClusterConnectionStatus) XXX_DiscardUnknown added in v0.27.0

func (m *KubernetesClusterConnectionStatus) XXX_DiscardUnknown()

func (*KubernetesClusterConnectionStatus) XXX_Marshal added in v0.27.0

func (m *KubernetesClusterConnectionStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*KubernetesClusterConnectionStatus) XXX_Merge added in v0.27.0

func (*KubernetesClusterConnectionStatus) XXX_Size added in v0.27.0

func (m *KubernetesClusterConnectionStatus) XXX_Size() int

func (*KubernetesClusterConnectionStatus) XXX_Unmarshal added in v0.27.0

func (m *KubernetesClusterConnectionStatus) XXX_Unmarshal(b []byte) error

type KubernetesDiscovery added in v0.20.0

type KubernetesDiscovery struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Spec   KubernetesDiscoverySpec   `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
	Status KubernetesDiscoveryStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
}

KubernetesDiscovery +k8s:openapi-gen=true +tilt:starlark-gen=true

func (*KubernetesDiscovery) DeepCopy added in v0.20.0

func (in *KubernetesDiscovery) DeepCopy() *KubernetesDiscovery

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

func (*KubernetesDiscovery) DeepCopyInto added in v0.20.0

func (in *KubernetesDiscovery) DeepCopyInto(out *KubernetesDiscovery)

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

func (*KubernetesDiscovery) DeepCopyObject added in v0.20.0

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

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

func (*KubernetesDiscovery) Default added in v0.23.5

func (in *KubernetesDiscovery) Default()

func (*KubernetesDiscovery) Descriptor added in v0.20.0

func (*KubernetesDiscovery) Descriptor() ([]byte, []int)

func (*KubernetesDiscovery) GetGroupVersionResource added in v0.20.0

func (in *KubernetesDiscovery) GetGroupVersionResource() schema.GroupVersionResource

func (*KubernetesDiscovery) GetObjectMeta added in v0.20.0

func (in *KubernetesDiscovery) GetObjectMeta() *metav1.ObjectMeta

func (*KubernetesDiscovery) GetSingularName added in v0.33.0

func (in *KubernetesDiscovery) GetSingularName() string

func (*KubernetesDiscovery) GetSpec added in v0.22.14

func (in *KubernetesDiscovery) GetSpec() interface{}

func (*KubernetesDiscovery) GetStatus added in v0.20.0

func (*KubernetesDiscovery) IsStorageVersion added in v0.20.0

func (in *KubernetesDiscovery) IsStorageVersion() bool

func (*KubernetesDiscovery) Marshal added in v0.20.0

func (m *KubernetesDiscovery) Marshal() (dAtA []byte, err error)

func (*KubernetesDiscovery) MarshalTo added in v0.20.0

func (m *KubernetesDiscovery) MarshalTo(dAtA []byte) (int, error)

func (*KubernetesDiscovery) MarshalToSizedBuffer added in v0.20.0

func (m *KubernetesDiscovery) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*KubernetesDiscovery) NamespaceScoped added in v0.20.0

func (in *KubernetesDiscovery) NamespaceScoped() bool

func (*KubernetesDiscovery) New added in v0.20.0

func (*KubernetesDiscovery) NewList added in v0.20.0

func (in *KubernetesDiscovery) NewList() runtime.Object

func (*KubernetesDiscovery) ProtoMessage added in v0.20.0

func (*KubernetesDiscovery) ProtoMessage()

func (*KubernetesDiscovery) Reset added in v0.20.0

func (m *KubernetesDiscovery) Reset()

func (*KubernetesDiscovery) ShortNames added in v0.21.3

func (in *KubernetesDiscovery) ShortNames() []string

func (*KubernetesDiscovery) Size added in v0.20.0

func (m *KubernetesDiscovery) Size() (n int)

func (*KubernetesDiscovery) String added in v0.20.0

func (this *KubernetesDiscovery) String() string

func (*KubernetesDiscovery) Unmarshal added in v0.20.0

func (m *KubernetesDiscovery) Unmarshal(dAtA []byte) error

func (*KubernetesDiscovery) Validate added in v0.20.0

func (*KubernetesDiscovery) XXX_DiscardUnknown added in v0.20.0

func (m *KubernetesDiscovery) XXX_DiscardUnknown()

func (*KubernetesDiscovery) XXX_Marshal added in v0.20.0

func (m *KubernetesDiscovery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*KubernetesDiscovery) XXX_Merge added in v0.20.0

func (m *KubernetesDiscovery) XXX_Merge(src proto.Message)

func (*KubernetesDiscovery) XXX_Size added in v0.20.0

func (m *KubernetesDiscovery) XXX_Size() int

func (*KubernetesDiscovery) XXX_Unmarshal added in v0.20.0

func (m *KubernetesDiscovery) XXX_Unmarshal(b []byte) error

type KubernetesDiscoveryList added in v0.20.0

type KubernetesDiscoveryList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Items []KubernetesDiscovery `json:"items" protobuf:"bytes,2,rep,name=items"`
}

KubernetesDiscoveryList +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*KubernetesDiscoveryList) DeepCopy added in v0.20.0

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

func (*KubernetesDiscoveryList) DeepCopyInto added in v0.20.0

func (in *KubernetesDiscoveryList) DeepCopyInto(out *KubernetesDiscoveryList)

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

func (*KubernetesDiscoveryList) DeepCopyObject added in v0.20.0

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

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

func (*KubernetesDiscoveryList) Descriptor added in v0.20.0

func (*KubernetesDiscoveryList) Descriptor() ([]byte, []int)

func (*KubernetesDiscoveryList) GetListMeta added in v0.20.0

func (in *KubernetesDiscoveryList) GetListMeta() *metav1.ListMeta

func (*KubernetesDiscoveryList) Marshal added in v0.20.0

func (m *KubernetesDiscoveryList) Marshal() (dAtA []byte, err error)

func (*KubernetesDiscoveryList) MarshalTo added in v0.20.0

func (m *KubernetesDiscoveryList) MarshalTo(dAtA []byte) (int, error)

func (*KubernetesDiscoveryList) MarshalToSizedBuffer added in v0.20.0

func (m *KubernetesDiscoveryList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*KubernetesDiscoveryList) ProtoMessage added in v0.20.0

func (*KubernetesDiscoveryList) ProtoMessage()

func (*KubernetesDiscoveryList) Reset added in v0.20.0

func (m *KubernetesDiscoveryList) Reset()

func (*KubernetesDiscoveryList) Size added in v0.20.0

func (m *KubernetesDiscoveryList) Size() (n int)

func (*KubernetesDiscoveryList) String added in v0.20.0

func (this *KubernetesDiscoveryList) String() string

func (*KubernetesDiscoveryList) Unmarshal added in v0.20.0

func (m *KubernetesDiscoveryList) Unmarshal(dAtA []byte) error

func (*KubernetesDiscoveryList) XXX_DiscardUnknown added in v0.20.0

func (m *KubernetesDiscoveryList) XXX_DiscardUnknown()

func (*KubernetesDiscoveryList) XXX_Marshal added in v0.20.0

func (m *KubernetesDiscoveryList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*KubernetesDiscoveryList) XXX_Merge added in v0.20.0

func (m *KubernetesDiscoveryList) XXX_Merge(src proto.Message)

func (*KubernetesDiscoveryList) XXX_Size added in v0.20.0

func (m *KubernetesDiscoveryList) XXX_Size() int

func (*KubernetesDiscoveryList) XXX_Unmarshal added in v0.20.0

func (m *KubernetesDiscoveryList) XXX_Unmarshal(b []byte) error

type KubernetesDiscoverySpec added in v0.20.0

type KubernetesDiscoverySpec struct {
	// Watches determine what resources are discovered.
	//
	// If a discovered resource (e.g. Pod) matches the KubernetesWatchRef UID exactly, it will be reported.
	// If a discovered resource is transitively owned by the KubernetesWatchRef UID, it will be reported.
	Watches []KubernetesWatchRef `json:"watches" protobuf:"bytes,1,rep,name=watches"`

	// ExtraSelectors are label selectors that will force discovery of a Pod even if it does not match
	// the AncestorUID.
	//
	// This should only be necessary in the event that a CRD creates Pods but does not set an owner reference
	// to itself.
	ExtraSelectors []metav1.LabelSelector `json:"extraSelectors,omitempty" protobuf:"bytes,2,rep,name=extraSelectors"`

	// PortForwardTemplateSpec describes the data model for port forwards
	// that KubernetesDiscovery should set up.
	//
	// The KubernetesDiscovery controller will choose a "best" candidate
	// for attaching the port-forwarding. Only one PortForward will be
	// active at a time.
	//
	// +optional
	PortForwardTemplateSpec *PortForwardTemplateSpec `json:"portForwardTemplateSpec,omitempty" protobuf:"bytes,3,opt,name=portForwardTemplateSpec"`

	// PodLogStreamTemplateSpec describes the data model for PodLogStreams
	// that KubernetesDiscovery should set up.
	//
	// The KubernetesDiscovery controller will attach PodLogStream objects
	// to all active pods it discovers.
	//
	// If no template is specified, the controller will stream all
	// pod logs available from the apiserver.
	//
	// +optional
	PodLogStreamTemplateSpec *PodLogStreamTemplateSpec `json:"podLogStreamTemplateSpec,omitempty" protobuf:"bytes,4,opt,name=podLogStreamTemplateSpec"`

	// Cluster name to determine the Kubernetes cluster.
	//
	// If not provided, "default" will be used.
	//
	// +optional
	Cluster string `json:"cluster" protobuf:"bytes,5,opt,name=cluster"`
}

KubernetesDiscoverySpec defines the desired state of KubernetesDiscovery

func (*KubernetesDiscoverySpec) DeepCopy added in v0.20.0

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

func (*KubernetesDiscoverySpec) DeepCopyInto added in v0.20.0

func (in *KubernetesDiscoverySpec) DeepCopyInto(out *KubernetesDiscoverySpec)

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

func (*KubernetesDiscoverySpec) Descriptor added in v0.20.0

func (*KubernetesDiscoverySpec) Descriptor() ([]byte, []int)

func (*KubernetesDiscoverySpec) Marshal added in v0.20.0

func (m *KubernetesDiscoverySpec) Marshal() (dAtA []byte, err error)

func (*KubernetesDiscoverySpec) MarshalTo added in v0.20.0

func (m *KubernetesDiscoverySpec) MarshalTo(dAtA []byte) (int, error)

func (*KubernetesDiscoverySpec) MarshalToSizedBuffer added in v0.20.0

func (m *KubernetesDiscoverySpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*KubernetesDiscoverySpec) ProtoMessage added in v0.20.0

func (*KubernetesDiscoverySpec) ProtoMessage()

func (*KubernetesDiscoverySpec) Reset added in v0.20.0

func (m *KubernetesDiscoverySpec) Reset()

func (*KubernetesDiscoverySpec) Size added in v0.20.0

func (m *KubernetesDiscoverySpec) Size() (n int)

func (*KubernetesDiscoverySpec) String added in v0.20.0

func (this *KubernetesDiscoverySpec) String() string

func (*KubernetesDiscoverySpec) Unmarshal added in v0.20.0

func (m *KubernetesDiscoverySpec) Unmarshal(dAtA []byte) error

func (*KubernetesDiscoverySpec) XXX_DiscardUnknown added in v0.20.0

func (m *KubernetesDiscoverySpec) XXX_DiscardUnknown()

func (*KubernetesDiscoverySpec) XXX_Marshal added in v0.20.0

func (m *KubernetesDiscoverySpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*KubernetesDiscoverySpec) XXX_Merge added in v0.20.0

func (m *KubernetesDiscoverySpec) XXX_Merge(src proto.Message)

func (*KubernetesDiscoverySpec) XXX_Size added in v0.20.0

func (m *KubernetesDiscoverySpec) XXX_Size() int

func (*KubernetesDiscoverySpec) XXX_Unmarshal added in v0.20.0

func (m *KubernetesDiscoverySpec) XXX_Unmarshal(b []byte) error

type KubernetesDiscoveryStateRunning added in v0.23.5

type KubernetesDiscoveryStateRunning struct {
	// StartTime is when Kubernetes resource discovery began.
	StartTime metav1.MicroTime `json:"startTime" protobuf:"bytes,1,opt,name=startTime"`
}

func (*KubernetesDiscoveryStateRunning) DeepCopy added in v0.23.5

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

func (*KubernetesDiscoveryStateRunning) DeepCopyInto added in v0.23.5

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

func (*KubernetesDiscoveryStateRunning) Descriptor added in v0.23.5

func (*KubernetesDiscoveryStateRunning) Descriptor() ([]byte, []int)

func (*KubernetesDiscoveryStateRunning) Marshal added in v0.23.5

func (m *KubernetesDiscoveryStateRunning) Marshal() (dAtA []byte, err error)

func (*KubernetesDiscoveryStateRunning) MarshalTo added in v0.23.5

func (m *KubernetesDiscoveryStateRunning) MarshalTo(dAtA []byte) (int, error)

func (*KubernetesDiscoveryStateRunning) MarshalToSizedBuffer added in v0.23.5

func (m *KubernetesDiscoveryStateRunning) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*KubernetesDiscoveryStateRunning) ProtoMessage added in v0.23.5

func (*KubernetesDiscoveryStateRunning) ProtoMessage()

func (*KubernetesDiscoveryStateRunning) Reset added in v0.23.5

func (*KubernetesDiscoveryStateRunning) Size added in v0.23.5

func (m *KubernetesDiscoveryStateRunning) Size() (n int)

func (*KubernetesDiscoveryStateRunning) String added in v0.23.5

func (this *KubernetesDiscoveryStateRunning) String() string

func (*KubernetesDiscoveryStateRunning) Unmarshal added in v0.23.5

func (m *KubernetesDiscoveryStateRunning) Unmarshal(dAtA []byte) error

func (*KubernetesDiscoveryStateRunning) XXX_DiscardUnknown added in v0.23.5

func (m *KubernetesDiscoveryStateRunning) XXX_DiscardUnknown()

func (*KubernetesDiscoveryStateRunning) XXX_Marshal added in v0.23.5

func (m *KubernetesDiscoveryStateRunning) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*KubernetesDiscoveryStateRunning) XXX_Merge added in v0.23.5

func (m *KubernetesDiscoveryStateRunning) XXX_Merge(src proto.Message)

func (*KubernetesDiscoveryStateRunning) XXX_Size added in v0.23.5

func (m *KubernetesDiscoveryStateRunning) XXX_Size() int

func (*KubernetesDiscoveryStateRunning) XXX_Unmarshal added in v0.23.5

func (m *KubernetesDiscoveryStateRunning) XXX_Unmarshal(b []byte) error

type KubernetesDiscoveryStateWaiting added in v0.23.5

type KubernetesDiscoveryStateWaiting struct {
	// Reason the monitor has not yet been started.
	Reason string `json:"reason" protobuf:"bytes,1,opt,name=reason"`
}

func (*KubernetesDiscoveryStateWaiting) DeepCopy added in v0.23.5

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

func (*KubernetesDiscoveryStateWaiting) DeepCopyInto added in v0.23.5

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

func (*KubernetesDiscoveryStateWaiting) Descriptor added in v0.23.5

func (*KubernetesDiscoveryStateWaiting) Descriptor() ([]byte, []int)

func (*KubernetesDiscoveryStateWaiting) Marshal added in v0.23.5

func (m *KubernetesDiscoveryStateWaiting) Marshal() (dAtA []byte, err error)

func (*KubernetesDiscoveryStateWaiting) MarshalTo added in v0.23.5

func (m *KubernetesDiscoveryStateWaiting) MarshalTo(dAtA []byte) (int, error)

func (*KubernetesDiscoveryStateWaiting) MarshalToSizedBuffer added in v0.23.5

func (m *KubernetesDiscoveryStateWaiting) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*KubernetesDiscoveryStateWaiting) ProtoMessage added in v0.23.5

func (*KubernetesDiscoveryStateWaiting) ProtoMessage()

func (*KubernetesDiscoveryStateWaiting) Reset added in v0.23.5

func (*KubernetesDiscoveryStateWaiting) Size added in v0.23.5

func (m *KubernetesDiscoveryStateWaiting) Size() (n int)

func (*KubernetesDiscoveryStateWaiting) String added in v0.23.5

func (this *KubernetesDiscoveryStateWaiting) String() string

func (*KubernetesDiscoveryStateWaiting) Unmarshal added in v0.23.5

func (m *KubernetesDiscoveryStateWaiting) Unmarshal(dAtA []byte) error

func (*KubernetesDiscoveryStateWaiting) XXX_DiscardUnknown added in v0.23.5

func (m *KubernetesDiscoveryStateWaiting) XXX_DiscardUnknown()

func (*KubernetesDiscoveryStateWaiting) XXX_Marshal added in v0.23.5

func (m *KubernetesDiscoveryStateWaiting) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*KubernetesDiscoveryStateWaiting) XXX_Merge added in v0.23.5

func (m *KubernetesDiscoveryStateWaiting) XXX_Merge(src proto.Message)

func (*KubernetesDiscoveryStateWaiting) XXX_Size added in v0.23.5

func (m *KubernetesDiscoveryStateWaiting) XXX_Size() int

func (*KubernetesDiscoveryStateWaiting) XXX_Unmarshal added in v0.23.5

func (m *KubernetesDiscoveryStateWaiting) XXX_Unmarshal(b []byte) error

type KubernetesDiscoveryStatus added in v0.20.0

type KubernetesDiscoveryStatus struct {
	// MonitorStartTime is the timestamp of when Kubernetes resource discovery was started.
	//
	// It is zero if discovery has not been started yet.
	MonitorStartTime metav1.MicroTime `json:"monitorStartTime,omitempty" protobuf:"bytes,2,opt,name=monitorStartTime"`

	// Pods that have been discovered based on the criteria in the spec.
	Pods []Pod `json:"pods" protobuf:"bytes,1,rep,name=pods"`

	// Waiting contains information about why the monitor has not started.
	//
	// +optional
	Waiting *KubernetesDiscoveryStateWaiting `json:"waiting,omitempty" protobuf:"bytes,3,opt,name=waiting"`

	// Running contains information about the currently running monitor.
	//
	// +optional
	Running *KubernetesDiscoveryStateRunning `json:"running,omitempty" protobuf:"bytes,4,opt,name=running"`
}

KubernetesDiscoveryStatus defines the observed state of KubernetesDiscovery

func (KubernetesDiscoveryStatus) CopyTo added in v0.20.0

func (*KubernetesDiscoveryStatus) DeepCopy added in v0.20.0

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

func (*KubernetesDiscoveryStatus) DeepCopyInto added in v0.20.0

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

func (*KubernetesDiscoveryStatus) Descriptor added in v0.20.0

func (*KubernetesDiscoveryStatus) Descriptor() ([]byte, []int)

func (*KubernetesDiscoveryStatus) Marshal added in v0.20.0

func (m *KubernetesDiscoveryStatus) Marshal() (dAtA []byte, err error)

func (*KubernetesDiscoveryStatus) MarshalTo added in v0.20.0

func (m *KubernetesDiscoveryStatus) MarshalTo(dAtA []byte) (int, error)

func (*KubernetesDiscoveryStatus) MarshalToSizedBuffer added in v0.20.0

func (m *KubernetesDiscoveryStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*KubernetesDiscoveryStatus) ProtoMessage added in v0.20.0

func (*KubernetesDiscoveryStatus) ProtoMessage()

func (*KubernetesDiscoveryStatus) Reset added in v0.20.0

func (m *KubernetesDiscoveryStatus) Reset()

func (*KubernetesDiscoveryStatus) Size added in v0.20.0

func (m *KubernetesDiscoveryStatus) Size() (n int)

func (*KubernetesDiscoveryStatus) String added in v0.20.0

func (this *KubernetesDiscoveryStatus) String() string

func (*KubernetesDiscoveryStatus) Unmarshal added in v0.20.0

func (m *KubernetesDiscoveryStatus) Unmarshal(dAtA []byte) error

func (*KubernetesDiscoveryStatus) XXX_DiscardUnknown added in v0.20.0

func (m *KubernetesDiscoveryStatus) XXX_DiscardUnknown()

func (*KubernetesDiscoveryStatus) XXX_Marshal added in v0.20.0

func (m *KubernetesDiscoveryStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*KubernetesDiscoveryStatus) XXX_Merge added in v0.20.0

func (m *KubernetesDiscoveryStatus) XXX_Merge(src proto.Message)

func (*KubernetesDiscoveryStatus) XXX_Size added in v0.20.0

func (m *KubernetesDiscoveryStatus) XXX_Size() int

func (*KubernetesDiscoveryStatus) XXX_Unmarshal added in v0.20.0

func (m *KubernetesDiscoveryStatus) XXX_Unmarshal(b []byte) error

type KubernetesDiscoveryStrategy added in v0.22.6

type KubernetesDiscoveryStrategy string
var (
	// In the default strategy, we traverse owner references of every pod,
	// and follow pods that belong to an applied resource. If extra selectors
	// are specified, we use them too.
	KubernetesDiscoveryStrategyDefault KubernetesDiscoveryStrategy = "default"

	// In the selectors-only strategy, we only traverse label selectors, and ignore
	// owner references.
	//
	// For example, you might have a CRD that does some of its work in pods, then
	// creates a new Deployment. In that case, the child pods of the CRD aren't
	// the ones we want to track for readiness or live-update. You want the ones
	// from the deployment.
	KubernetesDiscoveryStrategySelectorsOnly KubernetesDiscoveryStrategy = "selectors-only"
)

type KubernetesDiscoveryTemplateSpec added in v0.21.3

type KubernetesDiscoveryTemplateSpec struct {
	// ExtraSelectors are label selectors that will force discovery of a Pod even
	// if it does not match the AncestorUID.
	//
	// This should only be necessary in the event that a CRD creates Pods but does
	// not set an owner reference to itself.
	ExtraSelectors []metav1.LabelSelector `json:"extraSelectors,omitempty" protobuf:"bytes,1,rep,name=extraSelectors"`
}

func (*KubernetesDiscoveryTemplateSpec) DeepCopy added in v0.21.3

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

func (*KubernetesDiscoveryTemplateSpec) DeepCopyInto added in v0.21.3

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

func (*KubernetesDiscoveryTemplateSpec) Descriptor added in v0.21.3

func (*KubernetesDiscoveryTemplateSpec) Descriptor() ([]byte, []int)

func (*KubernetesDiscoveryTemplateSpec) Marshal added in v0.21.3

func (m *KubernetesDiscoveryTemplateSpec) Marshal() (dAtA []byte, err error)

func (*KubernetesDiscoveryTemplateSpec) MarshalTo added in v0.21.3

func (m *KubernetesDiscoveryTemplateSpec) MarshalTo(dAtA []byte) (int, error)

func (*KubernetesDiscoveryTemplateSpec) MarshalToSizedBuffer added in v0.21.3

func (m *KubernetesDiscoveryTemplateSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*KubernetesDiscoveryTemplateSpec) ProtoMessage added in v0.21.3

func (*KubernetesDiscoveryTemplateSpec) ProtoMessage()

func (*KubernetesDiscoveryTemplateSpec) Reset added in v0.21.3

func (*KubernetesDiscoveryTemplateSpec) Size added in v0.21.3

func (m *KubernetesDiscoveryTemplateSpec) Size() (n int)

func (*KubernetesDiscoveryTemplateSpec) String added in v0.21.3

func (this *KubernetesDiscoveryTemplateSpec) String() string

func (*KubernetesDiscoveryTemplateSpec) Unmarshal added in v0.21.3

func (m *KubernetesDiscoveryTemplateSpec) Unmarshal(dAtA []byte) error

func (*KubernetesDiscoveryTemplateSpec) XXX_DiscardUnknown added in v0.21.3

func (m *KubernetesDiscoveryTemplateSpec) XXX_DiscardUnknown()

func (*KubernetesDiscoveryTemplateSpec) XXX_Marshal added in v0.21.3

func (m *KubernetesDiscoveryTemplateSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*KubernetesDiscoveryTemplateSpec) XXX_Merge added in v0.21.3

func (m *KubernetesDiscoveryTemplateSpec) XXX_Merge(src proto.Message)

func (*KubernetesDiscoveryTemplateSpec) XXX_Size added in v0.21.3

func (m *KubernetesDiscoveryTemplateSpec) XXX_Size() int

func (*KubernetesDiscoveryTemplateSpec) XXX_Unmarshal added in v0.21.3

func (m *KubernetesDiscoveryTemplateSpec) XXX_Unmarshal(b []byte) error

type KubernetesImageLocator added in v0.20.8

type KubernetesImageLocator struct {
	// Selects which objects to look in.
	ObjectSelector ObjectSelector `json:"objectSelector" protobuf:"bytes,1,opt,name=objectSelector"`

	// A JSON path to the image reference field.
	//
	// If Object is empty, the field should be a string.
	//
	// If Object is non-empty, the field should be an object with subfields.
	Path string `json:"path" protobuf:"bytes,2,opt,name=path"`

	// A descriptor of the path and structure of an object that describes an image
	// reference. This is a common way to describe images in CRDs, breaking
	// them down into an object rather than an image reference string.
	//
	// +optional
	Object *KubernetesImageObjectDescriptor `json:"object,omitempty" protobuf:"bytes,3,opt,name=object"`
}

Finds image references in Kubernetes YAML.

func (*KubernetesImageLocator) DeepCopy added in v0.20.8

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

func (*KubernetesImageLocator) DeepCopyInto added in v0.20.8

func (in *KubernetesImageLocator) DeepCopyInto(out *KubernetesImageLocator)

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

func (*KubernetesImageLocator) Descriptor added in v0.20.8

func (*KubernetesImageLocator) Descriptor() ([]byte, []int)

func (*KubernetesImageLocator) Marshal added in v0.20.8

func (m *KubernetesImageLocator) Marshal() (dAtA []byte, err error)

func (*KubernetesImageLocator) MarshalTo added in v0.20.8

func (m *KubernetesImageLocator) MarshalTo(dAtA []byte) (int, error)

func (*KubernetesImageLocator) MarshalToSizedBuffer added in v0.20.8

func (m *KubernetesImageLocator) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*KubernetesImageLocator) ProtoMessage added in v0.20.8

func (*KubernetesImageLocator) ProtoMessage()

func (*KubernetesImageLocator) Reset added in v0.20.8

func (m *KubernetesImageLocator) Reset()

func (*KubernetesImageLocator) Size added in v0.20.8

func (m *KubernetesImageLocator) Size() (n int)

func (*KubernetesImageLocator) String added in v0.20.8

func (this *KubernetesImageLocator) String() string

func (*KubernetesImageLocator) Unmarshal added in v0.20.8

func (m *KubernetesImageLocator) Unmarshal(dAtA []byte) error

func (*KubernetesImageLocator) XXX_DiscardUnknown added in v0.20.8

func (m *KubernetesImageLocator) XXX_DiscardUnknown()

func (*KubernetesImageLocator) XXX_Marshal added in v0.20.8

func (m *KubernetesImageLocator) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*KubernetesImageLocator) XXX_Merge added in v0.20.8

func (m *KubernetesImageLocator) XXX_Merge(src proto.Message)

func (*KubernetesImageLocator) XXX_Size added in v0.20.8

func (m *KubernetesImageLocator) XXX_Size() int

func (*KubernetesImageLocator) XXX_Unmarshal added in v0.20.8

func (m *KubernetesImageLocator) XXX_Unmarshal(b []byte) error

type KubernetesImageObjectDescriptor added in v0.20.8

type KubernetesImageObjectDescriptor struct {
	// The name of the field that contains the image repository.
	RepoField string `json:"repoField" protobuf:"bytes,1,opt,name=repoField"`

	// The name of the field that contains the image tag.
	TagField string `json:"tagField" protobuf:"bytes,2,opt,name=tagField"`
}

func (*KubernetesImageObjectDescriptor) DeepCopy added in v0.20.8

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

func (*KubernetesImageObjectDescriptor) DeepCopyInto added in v0.20.8

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

func (*KubernetesImageObjectDescriptor) Descriptor added in v0.20.8

func (*KubernetesImageObjectDescriptor) Descriptor() ([]byte, []int)

func (*KubernetesImageObjectDescriptor) Marshal added in v0.20.8

func (m *KubernetesImageObjectDescriptor) Marshal() (dAtA []byte, err error)

func (*KubernetesImageObjectDescriptor) MarshalTo added in v0.20.8

func (m *KubernetesImageObjectDescriptor) MarshalTo(dAtA []byte) (int, error)

func (*KubernetesImageObjectDescriptor) MarshalToSizedBuffer added in v0.20.8

func (m *KubernetesImageObjectDescriptor) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*KubernetesImageObjectDescriptor) ProtoMessage added in v0.20.8

func (*KubernetesImageObjectDescriptor) ProtoMessage()

func (*KubernetesImageObjectDescriptor) Reset added in v0.20.8

func (*KubernetesImageObjectDescriptor) Size added in v0.20.8

func (m *KubernetesImageObjectDescriptor) Size() (n int)

func (*KubernetesImageObjectDescriptor) String added in v0.20.8

func (this *KubernetesImageObjectDescriptor) String() string

func (*KubernetesImageObjectDescriptor) Unmarshal added in v0.20.8

func (m *KubernetesImageObjectDescriptor) Unmarshal(dAtA []byte) error

func (*KubernetesImageObjectDescriptor) XXX_DiscardUnknown added in v0.20.8

func (m *KubernetesImageObjectDescriptor) XXX_DiscardUnknown()

func (*KubernetesImageObjectDescriptor) XXX_Marshal added in v0.20.8

func (m *KubernetesImageObjectDescriptor) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*KubernetesImageObjectDescriptor) XXX_Merge added in v0.20.8

func (m *KubernetesImageObjectDescriptor) XXX_Merge(src proto.Message)

func (*KubernetesImageObjectDescriptor) XXX_Size added in v0.20.8

func (m *KubernetesImageObjectDescriptor) XXX_Size() int

func (*KubernetesImageObjectDescriptor) XXX_Unmarshal added in v0.20.8

func (m *KubernetesImageObjectDescriptor) XXX_Unmarshal(b []byte) error

type KubernetesWatchRef added in v0.20.0

type KubernetesWatchRef struct {
	// UID is a Kubernetes object UID.
	//
	// It should either be the exact object UID or the transitive owner.
	//
	// +optional
	UID string `json:"uid,omitempty" protobuf:"bytes,1,opt,name=uid"`

	// Namespace is the Kubernetes namespace for discovery. Required.
	Namespace string `json:"namespace" protobuf:"bytes,2,opt,name=namespace"`

	// Name is the Kubernetes object name.
	//
	// This is not directly used in discovery; it is extra metadata.
	//
	// +optional
	Name string `json:"name,omitempty" protobuf:"bytes,3,opt,name=name"`
}

KubernetesWatchRef is similar to v1.ObjectReference from the Kubernetes API and is used to determine what objects should be reported on based on discovery.

func (*KubernetesWatchRef) DeepCopy added in v0.20.0

func (in *KubernetesWatchRef) DeepCopy() *KubernetesWatchRef

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

func (*KubernetesWatchRef) DeepCopyInto added in v0.20.0

func (in *KubernetesWatchRef) DeepCopyInto(out *KubernetesWatchRef)

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

func (*KubernetesWatchRef) Descriptor added in v0.20.0

func (*KubernetesWatchRef) Descriptor() ([]byte, []int)

func (*KubernetesWatchRef) Marshal added in v0.20.0

func (m *KubernetesWatchRef) Marshal() (dAtA []byte, err error)

func (*KubernetesWatchRef) MarshalTo added in v0.20.0

func (m *KubernetesWatchRef) MarshalTo(dAtA []byte) (int, error)

func (*KubernetesWatchRef) MarshalToSizedBuffer added in v0.20.0

func (m *KubernetesWatchRef) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*KubernetesWatchRef) ProtoMessage added in v0.20.0

func (*KubernetesWatchRef) ProtoMessage()

func (*KubernetesWatchRef) Reset added in v0.20.0

func (m *KubernetesWatchRef) Reset()

func (*KubernetesWatchRef) Size added in v0.20.0

func (m *KubernetesWatchRef) Size() (n int)

func (*KubernetesWatchRef) String added in v0.20.0

func (this *KubernetesWatchRef) String() string

func (*KubernetesWatchRef) Unmarshal added in v0.20.0

func (m *KubernetesWatchRef) Unmarshal(dAtA []byte) error

func (*KubernetesWatchRef) XXX_DiscardUnknown added in v0.20.0

func (m *KubernetesWatchRef) XXX_DiscardUnknown()

func (*KubernetesWatchRef) XXX_Marshal added in v0.20.0

func (m *KubernetesWatchRef) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*KubernetesWatchRef) XXX_Merge added in v0.20.0

func (m *KubernetesWatchRef) XXX_Merge(src proto.Message)

func (*KubernetesWatchRef) XXX_Size added in v0.20.0

func (m *KubernetesWatchRef) XXX_Size() int

func (*KubernetesWatchRef) XXX_Unmarshal added in v0.20.0

func (m *KubernetesWatchRef) XXX_Unmarshal(b []byte) error

type LiveUpdate added in v0.22.10

type LiveUpdate struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Spec   LiveUpdateSpec   `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
	Status LiveUpdateStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
}

LiveUpdate +k8s:openapi-gen=true

func (*LiveUpdate) DeepCopy added in v0.22.10

func (in *LiveUpdate) DeepCopy() *LiveUpdate

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

func (*LiveUpdate) DeepCopyInto added in v0.22.10

func (in *LiveUpdate) DeepCopyInto(out *LiveUpdate)

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

func (*LiveUpdate) DeepCopyObject added in v0.22.10

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

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

func (*LiveUpdate) Descriptor added in v0.22.10

func (*LiveUpdate) Descriptor() ([]byte, []int)

func (*LiveUpdate) GetGroupVersionResource added in v0.22.10

func (in *LiveUpdate) GetGroupVersionResource() schema.GroupVersionResource

func (*LiveUpdate) GetObjectMeta added in v0.22.10

func (in *LiveUpdate) GetObjectMeta() *metav1.ObjectMeta

func (*LiveUpdate) GetSingularName added in v0.33.0

func (in *LiveUpdate) GetSingularName() string

func (*LiveUpdate) GetSpec added in v0.22.14

func (in *LiveUpdate) GetSpec() interface{}

func (*LiveUpdate) GetStatus added in v0.22.10

func (in *LiveUpdate) GetStatus() resource.StatusSubResource

func (*LiveUpdate) IsStorageVersion added in v0.22.10

func (in *LiveUpdate) IsStorageVersion() bool

func (*LiveUpdate) Marshal added in v0.22.10

func (m *LiveUpdate) Marshal() (dAtA []byte, err error)

func (*LiveUpdate) MarshalTo added in v0.22.10

func (m *LiveUpdate) MarshalTo(dAtA []byte) (int, error)

func (*LiveUpdate) MarshalToSizedBuffer added in v0.22.10

func (m *LiveUpdate) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*LiveUpdate) NamespaceScoped added in v0.22.10

func (in *LiveUpdate) NamespaceScoped() bool

func (*LiveUpdate) New added in v0.22.10

func (in *LiveUpdate) New() runtime.Object

func (*LiveUpdate) NewList added in v0.22.10

func (in *LiveUpdate) NewList() runtime.Object

func (*LiveUpdate) ProtoMessage added in v0.22.10

func (*LiveUpdate) ProtoMessage()

func (*LiveUpdate) Reset added in v0.22.10

func (m *LiveUpdate) Reset()

func (*LiveUpdate) Size added in v0.22.10

func (m *LiveUpdate) Size() (n int)

func (*LiveUpdate) String added in v0.22.10

func (this *LiveUpdate) String() string

func (*LiveUpdate) Unmarshal added in v0.22.10

func (m *LiveUpdate) Unmarshal(dAtA []byte) error

func (*LiveUpdate) Validate added in v0.22.10

func (in *LiveUpdate) Validate(ctx context.Context) field.ErrorList

func (*LiveUpdate) XXX_DiscardUnknown added in v0.22.10

func (m *LiveUpdate) XXX_DiscardUnknown()

func (*LiveUpdate) XXX_Marshal added in v0.22.10

func (m *LiveUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*LiveUpdate) XXX_Merge added in v0.22.10

func (m *LiveUpdate) XXX_Merge(src proto.Message)

func (*LiveUpdate) XXX_Size added in v0.22.10

func (m *LiveUpdate) XXX_Size() int

func (*LiveUpdate) XXX_Unmarshal added in v0.22.10

func (m *LiveUpdate) XXX_Unmarshal(b []byte) error

type LiveUpdateContainerStateWaiting added in v0.22.15

type LiveUpdateContainerStateWaiting struct {
	// One word camel-case reason why we're in a waiting state.
	// +optional
	Reason string `json:"reason,omitempty" protobuf:"bytes,1,opt,name=reason"`

	// Human-readable description of what's blocking.
	// +optional
	Message string `json:"message,omitempty" protobuf:"bytes,2,opt,name=message"`
}

func (*LiveUpdateContainerStateWaiting) DeepCopy added in v0.22.15

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

func (*LiveUpdateContainerStateWaiting) DeepCopyInto added in v0.22.15

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

func (*LiveUpdateContainerStateWaiting) Descriptor added in v0.22.15

func (*LiveUpdateContainerStateWaiting) Descriptor() ([]byte, []int)

func (*LiveUpdateContainerStateWaiting) Marshal added in v0.22.15

func (m *LiveUpdateContainerStateWaiting) Marshal() (dAtA []byte, err error)

func (*LiveUpdateContainerStateWaiting) MarshalTo added in v0.22.15

func (m *LiveUpdateContainerStateWaiting) MarshalTo(dAtA []byte) (int, error)

func (*LiveUpdateContainerStateWaiting) MarshalToSizedBuffer added in v0.22.15

func (m *LiveUpdateContainerStateWaiting) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*LiveUpdateContainerStateWaiting) ProtoMessage added in v0.22.15

func (*LiveUpdateContainerStateWaiting) ProtoMessage()

func (*LiveUpdateContainerStateWaiting) Reset added in v0.22.15

func (*LiveUpdateContainerStateWaiting) Size added in v0.22.15

func (m *LiveUpdateContainerStateWaiting) Size() (n int)

func (*LiveUpdateContainerStateWaiting) String added in v0.22.15

func (this *LiveUpdateContainerStateWaiting) String() string

func (*LiveUpdateContainerStateWaiting) Unmarshal added in v0.22.15

func (m *LiveUpdateContainerStateWaiting) Unmarshal(dAtA []byte) error

func (*LiveUpdateContainerStateWaiting) XXX_DiscardUnknown added in v0.22.15

func (m *LiveUpdateContainerStateWaiting) XXX_DiscardUnknown()

func (*LiveUpdateContainerStateWaiting) XXX_Marshal added in v0.22.15

func (m *LiveUpdateContainerStateWaiting) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*LiveUpdateContainerStateWaiting) XXX_Merge added in v0.22.15

func (m *LiveUpdateContainerStateWaiting) XXX_Merge(src proto.Message)

func (*LiveUpdateContainerStateWaiting) XXX_Size added in v0.22.15

func (m *LiveUpdateContainerStateWaiting) XXX_Size() int

func (*LiveUpdateContainerStateWaiting) XXX_Unmarshal added in v0.22.15

func (m *LiveUpdateContainerStateWaiting) XXX_Unmarshal(b []byte) error

type LiveUpdateContainerStatus added in v0.22.12

type LiveUpdateContainerStatus struct {
	// The name of the container in the pod.
	ContainerName string `json:"containerName" protobuf:"bytes,1,opt,name=containerName"`

	// The ID of the container in the pod, in the format 'docker://<container_id>'.
	// +optional
	ContainerID string `json:"containerID,omitempty" protobuf:"bytes,2,opt,name=containerID"`

	// The name of the pod this container belongs to.
	PodName string `json:"podName" protobuf:"bytes,3,opt,name=podName"`

	// The namespace of the pod this container belongs to.
	Namespace string `json:"namespace" protobuf:"bytes,4,opt,name=namespace"`

	// The timestamp of the most recent file update successfully synced to the
	// container.
	//
	// Must match the timestamp in a FileEvent, not the time the sync was performed.
	//
	// +optional
	LastFileTimeSynced metav1.MicroTime `json:"lastFileTimeSynced,omitempty" protobuf:"bytes,5,opt,name=lastFileTimeSynced"`

	// Contains any error messages from the most recent sequence of Execs.
	//
	// Empty if the most recent Execs completed successfully.
	//
	// An ExecError is not necessarily a failure state. For example, a linter
	// error in the container is something we'd want to surface to the user, but
	// not an indication that the live-updater did something wrong.
	//
	// +optional
	LastExecError string `json:"lastExecError,omitempty" protobuf:"bytes,6,opt,name=lastExecError"`

	// Details about a waiting live update.
	//
	// A live update is waiting when the reconciler is aware of file changes
	// that need to be synced to the container, but has decided not to sync them yet.
	Waiting *LiveUpdateContainerStateWaiting `json:"waiting,omitempty" protobuf:"bytes,7,opt,name=waiting"`
}

LiveUpdateContainerStatus defines the observed state of the live-update syncer for a particular container.

func (*LiveUpdateContainerStatus) DeepCopy added in v0.22.12

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

func (*LiveUpdateContainerStatus) DeepCopyInto added in v0.22.12

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

func (*LiveUpdateContainerStatus) Descriptor added in v0.22.12

func (*LiveUpdateContainerStatus) Descriptor() ([]byte, []int)

func (*LiveUpdateContainerStatus) Marshal added in v0.22.12

func (m *LiveUpdateContainerStatus) Marshal() (dAtA []byte, err error)

func (*LiveUpdateContainerStatus) MarshalTo added in v0.22.12

func (m *LiveUpdateContainerStatus) MarshalTo(dAtA []byte) (int, error)

func (*LiveUpdateContainerStatus) MarshalToSizedBuffer added in v0.22.12

func (m *LiveUpdateContainerStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*LiveUpdateContainerStatus) ProtoMessage added in v0.22.12

func (*LiveUpdateContainerStatus) ProtoMessage()

func (*LiveUpdateContainerStatus) Reset added in v0.22.12

func (m *LiveUpdateContainerStatus) Reset()

func (*LiveUpdateContainerStatus) Size added in v0.22.12

func (m *LiveUpdateContainerStatus) Size() (n int)

func (*LiveUpdateContainerStatus) String added in v0.22.12

func (this *LiveUpdateContainerStatus) String() string

func (*LiveUpdateContainerStatus) Unmarshal added in v0.22.12

func (m *LiveUpdateContainerStatus) Unmarshal(dAtA []byte) error

func (*LiveUpdateContainerStatus) XXX_DiscardUnknown added in v0.22.12

func (m *LiveUpdateContainerStatus) XXX_DiscardUnknown()

func (*LiveUpdateContainerStatus) XXX_Marshal added in v0.22.12

func (m *LiveUpdateContainerStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*LiveUpdateContainerStatus) XXX_Merge added in v0.22.12

func (m *LiveUpdateContainerStatus) XXX_Merge(src proto.Message)

func (*LiveUpdateContainerStatus) XXX_Size added in v0.22.12

func (m *LiveUpdateContainerStatus) XXX_Size() int

func (*LiveUpdateContainerStatus) XXX_Unmarshal added in v0.22.12

func (m *LiveUpdateContainerStatus) XXX_Unmarshal(b []byte) error

type LiveUpdateDockerComposeSelector added in v0.26.3

type LiveUpdateDockerComposeSelector struct {
	// The name of a DockerComposeService object.
	//
	// For simple projects, this is usually the same as the service
	// name in the docker-compose.yml file. (But it doesn't necessarily
	// have to be.)
	Service string `json:"service" protobuf:"bytes,1,opt,name=service"`
}

Specifies how to select containers to live update inside Docker Compose.

func (*LiveUpdateDockerComposeSelector) DeepCopy added in v0.26.3

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

func (*LiveUpdateDockerComposeSelector) DeepCopyInto added in v0.26.3

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

func (*LiveUpdateDockerComposeSelector) Descriptor added in v0.26.3

func (*LiveUpdateDockerComposeSelector) Descriptor() ([]byte, []int)

func (*LiveUpdateDockerComposeSelector) Marshal added in v0.26.3

func (m *LiveUpdateDockerComposeSelector) Marshal() (dAtA []byte, err error)

func (*LiveUpdateDockerComposeSelector) MarshalTo added in v0.26.3

func (m *LiveUpdateDockerComposeSelector) MarshalTo(dAtA []byte) (int, error)

func (*LiveUpdateDockerComposeSelector) MarshalToSizedBuffer added in v0.26.3

func (m *LiveUpdateDockerComposeSelector) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*LiveUpdateDockerComposeSelector) ProtoMessage added in v0.26.3

func (*LiveUpdateDockerComposeSelector) ProtoMessage()

func (*LiveUpdateDockerComposeSelector) Reset added in v0.26.3

func (*LiveUpdateDockerComposeSelector) Size added in v0.26.3

func (m *LiveUpdateDockerComposeSelector) Size() (n int)

func (*LiveUpdateDockerComposeSelector) String added in v0.26.3

func (this *LiveUpdateDockerComposeSelector) String() string

func (*LiveUpdateDockerComposeSelector) Unmarshal added in v0.26.3

func (m *LiveUpdateDockerComposeSelector) Unmarshal(dAtA []byte) error

func (*LiveUpdateDockerComposeSelector) XXX_DiscardUnknown added in v0.26.3

func (m *LiveUpdateDockerComposeSelector) XXX_DiscardUnknown()

func (*LiveUpdateDockerComposeSelector) XXX_Marshal added in v0.26.3

func (m *LiveUpdateDockerComposeSelector) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*LiveUpdateDockerComposeSelector) XXX_Merge added in v0.26.3

func (m *LiveUpdateDockerComposeSelector) XXX_Merge(src proto.Message)

func (*LiveUpdateDockerComposeSelector) XXX_Size added in v0.26.3

func (m *LiveUpdateDockerComposeSelector) XXX_Size() int

func (*LiveUpdateDockerComposeSelector) XXX_Unmarshal added in v0.26.3

func (m *LiveUpdateDockerComposeSelector) XXX_Unmarshal(b []byte) error

type LiveUpdateExec added in v0.22.10

type LiveUpdateExec struct {
	// Command-line arguments to run inside the container. Must have length at least 1.
	Args []string `json:"args" protobuf:"bytes,1,rep,name=args"`

	// A list of relative paths that trigger this command exec.
	//
	// If not specified, all file changes seen by the LiveUpdate trigger this exec.
	//
	// Paths are specified relative to the the BasePath of the LiveUpdate.
	//
	// +optional
	TriggerPaths []string `json:"triggerPaths" protobuf:"bytes,2,rep,name=triggerPaths"`
}

Runs a remote command after files have been synced to the container. Commonly used for small in-container changes (like moving files around, or restart processes).

func (*LiveUpdateExec) DeepCopy added in v0.22.10

func (in *LiveUpdateExec) DeepCopy() *LiveUpdateExec

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

func (*LiveUpdateExec) DeepCopyInto added in v0.22.10

func (in *LiveUpdateExec) DeepCopyInto(out *LiveUpdateExec)

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

func (*LiveUpdateExec) Descriptor added in v0.22.10

func (*LiveUpdateExec) Descriptor() ([]byte, []int)

func (*LiveUpdateExec) Marshal added in v0.22.10

func (m *LiveUpdateExec) Marshal() (dAtA []byte, err error)

func (*LiveUpdateExec) MarshalTo added in v0.22.10

func (m *LiveUpdateExec) MarshalTo(dAtA []byte) (int, error)

func (*LiveUpdateExec) MarshalToSizedBuffer added in v0.22.10

func (m *LiveUpdateExec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*LiveUpdateExec) ProtoMessage added in v0.22.10

func (*LiveUpdateExec) ProtoMessage()

func (*LiveUpdateExec) Reset added in v0.22.10

func (m *LiveUpdateExec) Reset()

func (*LiveUpdateExec) Size added in v0.22.10

func (m *LiveUpdateExec) Size() (n int)

func (*LiveUpdateExec) String added in v0.22.10

func (this *LiveUpdateExec) String() string

func (*LiveUpdateExec) Unmarshal added in v0.22.10

func (m *LiveUpdateExec) Unmarshal(dAtA []byte) error

func (*LiveUpdateExec) XXX_DiscardUnknown added in v0.22.10

func (m *LiveUpdateExec) XXX_DiscardUnknown()

func (*LiveUpdateExec) XXX_Marshal added in v0.22.10

func (m *LiveUpdateExec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*LiveUpdateExec) XXX_Merge added in v0.22.10

func (m *LiveUpdateExec) XXX_Merge(src proto.Message)

func (*LiveUpdateExec) XXX_Size added in v0.22.10

func (m *LiveUpdateExec) XXX_Size() int

func (*LiveUpdateExec) XXX_Unmarshal added in v0.22.10

func (m *LiveUpdateExec) XXX_Unmarshal(b []byte) error

type LiveUpdateKubernetesSelector added in v0.22.10

type LiveUpdateKubernetesSelector struct {
	// The name of a KubernetesDiscovery object for finding pods.
	DiscoveryName string `json:"discoveryName" protobuf:"bytes,1,opt,name=discoveryName"`

	// ApplyName is the name of a KubernetesApply object for filtering discovered pods to prevent updating old
	// deployments.
	//
	// If not provided, no filtering will be applied and all discovered Pods will be eligible for update.
	//
	// +optional
	ApplyName string `json:"applyName,omitempty" protobuf:"bytes,3,opt,name=applyName"`

	// Image specifies the name of the image that we're copying files into.
	//
	// Determines which containers in a pod to live-update.
	// Matches images by name unless tag is explicitly specified.
	//
	// Exactly one of Image, ContainerName, or ImageMapName MUST be specified.
	//
	// +optional
	Image string `json:"image,omitempty" protobuf:"bytes,2,opt,name=image"`

	// ContainerName specifies the name of the container that we're copying files into.
	//
	// Exactly one of Image, ContainerName, or ImageMapName MUST be specified.
	//
	// +optional
	ContainerName string `json:"containerName,omitempty" protobuf:"bytes,4,opt,name=containerName"`

	// ImageMapName specifies the name of an ImageMapName object to use for determining
	// the image we're copying files into.
	//
	// Exactly one of Image, ContainerName, or ImageMapName MUST be specified.
	//
	// +optional
	ImageMapName string `json:"imageMapName,omitempty" protobuf:"bytes,5,opt,name=imageMapName"`
}

Specifies how to select containers to live update inside K8s.

func (*LiveUpdateKubernetesSelector) DeepCopy added in v0.22.10

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

func (*LiveUpdateKubernetesSelector) DeepCopyInto added in v0.22.10

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

func (*LiveUpdateKubernetesSelector) Descriptor added in v0.22.10

func (*LiveUpdateKubernetesSelector) Descriptor() ([]byte, []int)

func (*LiveUpdateKubernetesSelector) Marshal added in v0.22.10

func (m *LiveUpdateKubernetesSelector) Marshal() (dAtA []byte, err error)

func (*LiveUpdateKubernetesSelector) MarshalTo added in v0.22.10

func (m *LiveUpdateKubernetesSelector) MarshalTo(dAtA []byte) (int, error)

func (*LiveUpdateKubernetesSelector) MarshalToSizedBuffer added in v0.22.10

func (m *LiveUpdateKubernetesSelector) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*LiveUpdateKubernetesSelector) ProtoMessage added in v0.22.10

func (*LiveUpdateKubernetesSelector) ProtoMessage()

func (*LiveUpdateKubernetesSelector) Reset added in v0.22.10

func (m *LiveUpdateKubernetesSelector) Reset()

func (*LiveUpdateKubernetesSelector) Size added in v0.22.10

func (m *LiveUpdateKubernetesSelector) Size() (n int)

func (*LiveUpdateKubernetesSelector) String added in v0.22.10

func (this *LiveUpdateKubernetesSelector) String() string

func (*LiveUpdateKubernetesSelector) Unmarshal added in v0.22.10

func (m *LiveUpdateKubernetesSelector) Unmarshal(dAtA []byte) error

func (*LiveUpdateKubernetesSelector) XXX_DiscardUnknown added in v0.22.10

func (m *LiveUpdateKubernetesSelector) XXX_DiscardUnknown()

func (*LiveUpdateKubernetesSelector) XXX_Marshal added in v0.22.10

func (m *LiveUpdateKubernetesSelector) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*LiveUpdateKubernetesSelector) XXX_Merge added in v0.22.10

func (m *LiveUpdateKubernetesSelector) XXX_Merge(src proto.Message)

func (*LiveUpdateKubernetesSelector) XXX_Size added in v0.22.10

func (m *LiveUpdateKubernetesSelector) XXX_Size() int

func (*LiveUpdateKubernetesSelector) XXX_Unmarshal added in v0.22.10

func (m *LiveUpdateKubernetesSelector) XXX_Unmarshal(b []byte) error

type LiveUpdateList added in v0.22.10

type LiveUpdateList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Items []LiveUpdate `json:"items" protobuf:"bytes,2,rep,name=items"`
}

LiveUpdateList +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*LiveUpdateList) DeepCopy added in v0.22.10

func (in *LiveUpdateList) DeepCopy() *LiveUpdateList

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

func (*LiveUpdateList) DeepCopyInto added in v0.22.10

func (in *LiveUpdateList) DeepCopyInto(out *LiveUpdateList)

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

func (*LiveUpdateList) DeepCopyObject added in v0.22.10

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

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

func (*LiveUpdateList) Descriptor added in v0.22.10

func (*LiveUpdateList) Descriptor() ([]byte, []int)

func (*LiveUpdateList) GetListMeta added in v0.22.10

func (in *LiveUpdateList) GetListMeta() *metav1.ListMeta

func (*LiveUpdateList) Marshal added in v0.22.10

func (m *LiveUpdateList) Marshal() (dAtA []byte, err error)

func (*LiveUpdateList) MarshalTo added in v0.22.10

func (m *LiveUpdateList) MarshalTo(dAtA []byte) (int, error)

func (*LiveUpdateList) MarshalToSizedBuffer added in v0.22.10

func (m *LiveUpdateList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*LiveUpdateList) ProtoMessage added in v0.22.10

func (*LiveUpdateList) ProtoMessage()

func (*LiveUpdateList) Reset added in v0.22.10

func (m *LiveUpdateList) Reset()

func (*LiveUpdateList) Size added in v0.22.10

func (m *LiveUpdateList) Size() (n int)

func (*LiveUpdateList) String added in v0.22.10

func (this *LiveUpdateList) String() string

func (*LiveUpdateList) Unmarshal added in v0.22.10

func (m *LiveUpdateList) Unmarshal(dAtA []byte) error

func (*LiveUpdateList) XXX_DiscardUnknown added in v0.22.10

func (m *LiveUpdateList) XXX_DiscardUnknown()

func (*LiveUpdateList) XXX_Marshal added in v0.22.10

func (m *LiveUpdateList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*LiveUpdateList) XXX_Merge added in v0.22.10

func (m *LiveUpdateList) XXX_Merge(src proto.Message)

func (*LiveUpdateList) XXX_Size added in v0.22.10

func (m *LiveUpdateList) XXX_Size() int

func (*LiveUpdateList) XXX_Unmarshal added in v0.22.10

func (m *LiveUpdateList) XXX_Unmarshal(b []byte) error

type LiveUpdateRestartStrategy added in v0.22.10

type LiveUpdateRestartStrategy string

Specifies whether Tilt should try to natively restart the container in-place after syncs and execs.

Note that native restarts are only supported by Docker and Docker Compose (and NOT docker-shim or containerd, the most common Kubernetes runtimes).

To restart on live-update in Kubernetes, see the guide for how to apply extensions to add restart behavior:

https://docs.tilt.dev/live_update_reference.html

var (
	// Never use native restarts.
	LiveUpdateRestartStrategyNone LiveUpdateRestartStrategy = "none"

	// Always try to restart the container.
	//
	// If you're connected to a container runtime that does not support native
	// restarts, this will be an error.
	LiveUpdateRestartStrategyAlways LiveUpdateRestartStrategy = "always"
)

type LiveUpdateSelector added in v0.22.10

type LiveUpdateSelector struct {
	// Finds containers in Kubernetes.
	Kubernetes *LiveUpdateKubernetesSelector `json:"kubernetes,omitempty" protobuf:"bytes,1,opt,name=kubernetes"`

	// Finds containers in Docker Compose.
	DockerCompose *LiveUpdateDockerComposeSelector `json:"dockerCompose,omitempty" protobuf:"bytes,2,opt,name=dockerCompose"`
}

Specifies how to select containers to live update.

Every live update must be associated with some object for finding containers. In the future, we expect there to be other types of container discovery objects (like Docker Compose container discovery).

func (*LiveUpdateSelector) DeepCopy added in v0.22.10

func (in *LiveUpdateSelector) DeepCopy() *LiveUpdateSelector

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

func (*LiveUpdateSelector) DeepCopyInto added in v0.22.10

func (in *LiveUpdateSelector) DeepCopyInto(out *LiveUpdateSelector)

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

func (*LiveUpdateSelector) Descriptor added in v0.22.10

func (*LiveUpdateSelector) Descriptor() ([]byte, []int)

func (*LiveUpdateSelector) Marshal added in v0.22.10

func (m *LiveUpdateSelector) Marshal() (dAtA []byte, err error)

func (*LiveUpdateSelector) MarshalTo added in v0.22.10

func (m *LiveUpdateSelector) MarshalTo(dAtA []byte) (int, error)

func (*LiveUpdateSelector) MarshalToSizedBuffer added in v0.22.10

func (m *LiveUpdateSelector) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*LiveUpdateSelector) ProtoMessage added in v0.22.10

func (*LiveUpdateSelector) ProtoMessage()

func (*LiveUpdateSelector) Reset added in v0.22.10

func (m *LiveUpdateSelector) Reset()

func (*LiveUpdateSelector) Size added in v0.22.10

func (m *LiveUpdateSelector) Size() (n int)

func (*LiveUpdateSelector) String added in v0.22.10

func (this *LiveUpdateSelector) String() string

func (*LiveUpdateSelector) Unmarshal added in v0.22.10

func (m *LiveUpdateSelector) Unmarshal(dAtA []byte) error

func (*LiveUpdateSelector) XXX_DiscardUnknown added in v0.22.10

func (m *LiveUpdateSelector) XXX_DiscardUnknown()

func (*LiveUpdateSelector) XXX_Marshal added in v0.22.10

func (m *LiveUpdateSelector) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*LiveUpdateSelector) XXX_Merge added in v0.22.10

func (m *LiveUpdateSelector) XXX_Merge(src proto.Message)

func (*LiveUpdateSelector) XXX_Size added in v0.22.10

func (m *LiveUpdateSelector) XXX_Size() int

func (*LiveUpdateSelector) XXX_Unmarshal added in v0.22.10

func (m *LiveUpdateSelector) XXX_Unmarshal(b []byte) error

type LiveUpdateSource added in v0.22.15

type LiveUpdateSource struct {
	// The name of a FileWatch to use as a file source.
	//
	// +optional
	FileWatch string `json:"fileWatch,omitempty" protobuf:"bytes,1,opt,name=fileWatch"`

	// Name of the ImageMap object to watch for which file changes from this source
	// are included in the container image.
	//
	// If not provided, the live-updater will copy any file changes that it's aware of,
	// even if they're already included in the container.
	//
	// +optional
	ImageMap string `json:"imageMap,omitempty" protobuf:"bytes,2,opt,name=imageMap"`
}

Specifies how to pull in files.

func (*LiveUpdateSource) DeepCopy added in v0.22.15

func (in *LiveUpdateSource) DeepCopy() *LiveUpdateSource

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

func (*LiveUpdateSource) DeepCopyInto added in v0.22.15

func (in *LiveUpdateSource) DeepCopyInto(out *LiveUpdateSource)

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

func (*LiveUpdateSource) Descriptor added in v0.22.15

func (*LiveUpdateSource) Descriptor() ([]byte, []int)

func (*LiveUpdateSource) Marshal added in v0.22.15

func (m *LiveUpdateSource) Marshal() (dAtA []byte, err error)

func (*LiveUpdateSource) MarshalTo added in v0.22.15

func (m *LiveUpdateSource) MarshalTo(dAtA []byte) (int, error)

func (*LiveUpdateSource) MarshalToSizedBuffer added in v0.22.15

func (m *LiveUpdateSource) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*LiveUpdateSource) ProtoMessage added in v0.22.15

func (*LiveUpdateSource) ProtoMessage()

func (*LiveUpdateSource) Reset added in v0.22.15

func (m *LiveUpdateSource) Reset()

func (*LiveUpdateSource) Size added in v0.22.15

func (m *LiveUpdateSource) Size() (n int)

func (*LiveUpdateSource) String added in v0.22.15

func (this *LiveUpdateSource) String() string

func (*LiveUpdateSource) Unmarshal added in v0.22.15

func (m *LiveUpdateSource) Unmarshal(dAtA []byte) error

func (*LiveUpdateSource) XXX_DiscardUnknown added in v0.22.15

func (m *LiveUpdateSource) XXX_DiscardUnknown()

func (*LiveUpdateSource) XXX_Marshal added in v0.22.15

func (m *LiveUpdateSource) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*LiveUpdateSource) XXX_Merge added in v0.22.15

func (m *LiveUpdateSource) XXX_Merge(src proto.Message)

func (*LiveUpdateSource) XXX_Size added in v0.22.15

func (m *LiveUpdateSource) XXX_Size() int

func (*LiveUpdateSource) XXX_Unmarshal added in v0.22.15

func (m *LiveUpdateSource) XXX_Unmarshal(b []byte) error

type LiveUpdateSpec added in v0.22.10

type LiveUpdateSpec struct {
	// An absolute local path that serves as the basis for all
	// path calculations.
	//
	// Relative paths in this object are calculated relative to the base path. It
	// cannot be empty.
	//
	// +tilt:local-path=true
	BasePath string `json:"basePath" protobuf:"bytes,1,opt,name=basePath"`

	// Specifies how this live-updater finds the containers that need live update.
	Selector LiveUpdateSelector `json:"selector" protobuf:"bytes,8,opt,name=selector"`

	// Sources of files to sync.
	//
	// Every live update must be associated with at least one Source object
	// to trigger the update. Usually, Tilt structures it so that there's
	// a Source for each image we depend on.
	Sources []LiveUpdateSource `json:"sources,omitempty" protobuf:"bytes,9,rep,name=sources"`

	// A list of relative paths that will immediately stop the live-update for the
	// current container.
	//
	// Used to detect file changes that invalidate the entire container image,
	// forcing a complete rebuild.
	//
	// +optional
	StopPaths []string `json:"stopPaths,omitempty" protobuf:"bytes,4,rep,name=stopPaths"`

	// Specify paths that can be live-updated into the container and their destinations.
	// Any file changes observed that do not match any of these will invalidate the container image and force a complete rebuild.
	//
	// +optional
	Syncs []LiveUpdateSync `json:"syncs,omitempty" protobuf:"bytes,5,rep,name=syncs"`

	// A list of commands to run inside the container after files are synced.
	//
	// NB: In some documentation, we call these 'runs'. 'exec' more clearly
	// matches kubectl exec for remote commands.
	//
	// +optional
	Execs []LiveUpdateExec `json:"execs,omitempty" protobuf:"bytes,6,rep,name=execs"`

	// Specifies whether Tilt should try to natively restart the container in-place
	// after syncs and execs.
	//
	// Note that native restarts are only supported by Docker and Docker Compose
	// (and NOT docker-shim or containerd, the most common Kubernetes runtimes).
	//
	// To restart on live-update in Kubernetes, see the guide for how
	// to apply extensions to add restart behavior:
	//
	// https://docs.tilt.dev/live_update_reference.html
	//
	// +optional
	Restart LiveUpdateRestartStrategy `json:"restart,omitempty" protobuf:"bytes,7,opt,name=restart,casttype=LiveUpdateRestartStrategy"`
}

LiveUpdateSpec defines the desired state of LiveUpdate

func (*LiveUpdateSpec) DeepCopy added in v0.22.10

func (in *LiveUpdateSpec) DeepCopy() *LiveUpdateSpec

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

func (*LiveUpdateSpec) DeepCopyInto added in v0.22.10

func (in *LiveUpdateSpec) DeepCopyInto(out *LiveUpdateSpec)

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

func (*LiveUpdateSpec) Descriptor added in v0.22.10

func (*LiveUpdateSpec) Descriptor() ([]byte, []int)

func (*LiveUpdateSpec) Marshal added in v0.22.10

func (m *LiveUpdateSpec) Marshal() (dAtA []byte, err error)

func (*LiveUpdateSpec) MarshalTo added in v0.22.10

func (m *LiveUpdateSpec) MarshalTo(dAtA []byte) (int, error)

func (*LiveUpdateSpec) MarshalToSizedBuffer added in v0.22.10

func (m *LiveUpdateSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*LiveUpdateSpec) ProtoMessage added in v0.22.10

func (*LiveUpdateSpec) ProtoMessage()

func (*LiveUpdateSpec) Reset added in v0.22.10

func (m *LiveUpdateSpec) Reset()

func (*LiveUpdateSpec) Size added in v0.22.10

func (m *LiveUpdateSpec) Size() (n int)

func (*LiveUpdateSpec) String added in v0.22.10

func (this *LiveUpdateSpec) String() string

func (*LiveUpdateSpec) Unmarshal added in v0.22.10

func (m *LiveUpdateSpec) Unmarshal(dAtA []byte) error

func (*LiveUpdateSpec) XXX_DiscardUnknown added in v0.22.10

func (m *LiveUpdateSpec) XXX_DiscardUnknown()

func (*LiveUpdateSpec) XXX_Marshal added in v0.22.10

func (m *LiveUpdateSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*LiveUpdateSpec) XXX_Merge added in v0.22.10

func (m *LiveUpdateSpec) XXX_Merge(src proto.Message)

func (*LiveUpdateSpec) XXX_Size added in v0.22.10

func (m *LiveUpdateSpec) XXX_Size() int

func (*LiveUpdateSpec) XXX_Unmarshal added in v0.22.10

func (m *LiveUpdateSpec) XXX_Unmarshal(b []byte) error

type LiveUpdateStateFailed added in v0.22.12

type LiveUpdateStateFailed struct {
	// One word camel-case reason why we've reached a failure state.
	// +optional
	Reason string `json:"reason,omitempty" protobuf:"bytes,1,opt,name=reason"`

	// Human-readable description of what's wrong.
	// +optional
	Message string `json:"message,omitempty" protobuf:"bytes,2,opt,name=message"`

	// When the live-updater transitioned into a Failed state.
	// +optional
	LastTransitionTime metav1.MicroTime `json:"lastTransitionTime,omitempty" protobuf:"bytes,3,opt,name=lastTransitionTime"`
}

If any of the containers are currently failing to process updates, the LiveUpdateStateFailed surfaces information about what's happening and what the live-updater is doing to fix the problem.

func (*LiveUpdateStateFailed) DeepCopy added in v0.22.12

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

func (*LiveUpdateStateFailed) DeepCopyInto added in v0.22.12

func (in *LiveUpdateStateFailed) DeepCopyInto(out *LiveUpdateStateFailed)

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

func (*LiveUpdateStateFailed) Descriptor added in v0.22.12

func (*LiveUpdateStateFailed) Descriptor() ([]byte, []int)

func (*LiveUpdateStateFailed) Marshal added in v0.22.12

func (m *LiveUpdateStateFailed) Marshal() (dAtA []byte, err error)

func (*LiveUpdateStateFailed) MarshalTo added in v0.22.12

func (m *LiveUpdateStateFailed) MarshalTo(dAtA []byte) (int, error)

func (*LiveUpdateStateFailed) MarshalToSizedBuffer added in v0.22.12

func (m *LiveUpdateStateFailed) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*LiveUpdateStateFailed) ProtoMessage added in v0.22.12

func (*LiveUpdateStateFailed) ProtoMessage()

func (*LiveUpdateStateFailed) Reset added in v0.22.12

func (m *LiveUpdateStateFailed) Reset()

func (*LiveUpdateStateFailed) Size added in v0.22.12

func (m *LiveUpdateStateFailed) Size() (n int)

func (*LiveUpdateStateFailed) String added in v0.22.12

func (this *LiveUpdateStateFailed) String() string

func (*LiveUpdateStateFailed) Unmarshal added in v0.22.12

func (m *LiveUpdateStateFailed) Unmarshal(dAtA []byte) error

func (*LiveUpdateStateFailed) XXX_DiscardUnknown added in v0.22.12

func (m *LiveUpdateStateFailed) XXX_DiscardUnknown()

func (*LiveUpdateStateFailed) XXX_Marshal added in v0.22.12

func (m *LiveUpdateStateFailed) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*LiveUpdateStateFailed) XXX_Merge added in v0.22.12

func (m *LiveUpdateStateFailed) XXX_Merge(src proto.Message)

func (*LiveUpdateStateFailed) XXX_Size added in v0.22.12

func (m *LiveUpdateStateFailed) XXX_Size() int

func (*LiveUpdateStateFailed) XXX_Unmarshal added in v0.22.12

func (m *LiveUpdateStateFailed) XXX_Unmarshal(b []byte) error

type LiveUpdateStatus added in v0.22.10

type LiveUpdateStatus struct {
	// A list of all containers that the live-updater is currently connected to.
	// +optional
	Containers []LiveUpdateContainerStatus `json:"containers,omitempty" protobuf:"bytes,1,rep,name=containers"`

	// If any of the containers are currently failing to process updates,
	// the Failed state surfaces information about what's happening and what
	// the live-updater is doing to fix the problem.
	//
	// If all containers are updating successfully, Failed will be nil.
	//
	// +optional
	Failed *LiveUpdateStateFailed `json:"failed,omitempty" protobuf:"bytes,2,opt,name=failed"`
}

LiveUpdateStatus defines the observed state of LiveUpdate

func (LiveUpdateStatus) CopyTo added in v0.22.10

func (*LiveUpdateStatus) DeepCopy added in v0.22.10

func (in *LiveUpdateStatus) DeepCopy() *LiveUpdateStatus

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

func (*LiveUpdateStatus) DeepCopyInto added in v0.22.10

func (in *LiveUpdateStatus) DeepCopyInto(out *LiveUpdateStatus)

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

func (*LiveUpdateStatus) Descriptor added in v0.22.10

func (*LiveUpdateStatus) Descriptor() ([]byte, []int)

func (*LiveUpdateStatus) Marshal added in v0.22.10

func (m *LiveUpdateStatus) Marshal() (dAtA []byte, err error)

func (*LiveUpdateStatus) MarshalTo added in v0.22.10

func (m *LiveUpdateStatus) MarshalTo(dAtA []byte) (int, error)

func (*LiveUpdateStatus) MarshalToSizedBuffer added in v0.22.10

func (m *LiveUpdateStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*LiveUpdateStatus) ProtoMessage added in v0.22.10

func (*LiveUpdateStatus) ProtoMessage()

func (*LiveUpdateStatus) Reset added in v0.22.10

func (m *LiveUpdateStatus) Reset()

func (*LiveUpdateStatus) Size added in v0.22.10

func (m *LiveUpdateStatus) Size() (n int)

func (*LiveUpdateStatus) String added in v0.22.10

func (this *LiveUpdateStatus) String() string

func (*LiveUpdateStatus) Unmarshal added in v0.22.10

func (m *LiveUpdateStatus) Unmarshal(dAtA []byte) error

func (*LiveUpdateStatus) XXX_DiscardUnknown added in v0.22.10

func (m *LiveUpdateStatus) XXX_DiscardUnknown()

func (*LiveUpdateStatus) XXX_Marshal added in v0.22.10

func (m *LiveUpdateStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*LiveUpdateStatus) XXX_Merge added in v0.22.10

func (m *LiveUpdateStatus) XXX_Merge(src proto.Message)

func (*LiveUpdateStatus) XXX_Size added in v0.22.10

func (m *LiveUpdateStatus) XXX_Size() int

func (*LiveUpdateStatus) XXX_Unmarshal added in v0.22.10

func (m *LiveUpdateStatus) XXX_Unmarshal(b []byte) error

type LiveUpdateSync added in v0.22.10

type LiveUpdateSync struct {
	// A relative path to local files. Required.
	//
	// Computed relative to the live-update BasePath.
	LocalPath string `json:"localPath" protobuf:"bytes,1,opt,name=localPath"`

	// An absolute path inside the container. Required.
	ContainerPath string `json:"containerPath" protobuf:"bytes,2,opt,name=containerPath"`
}

Determines how a local path maps into a container image.

func (*LiveUpdateSync) DeepCopy added in v0.22.10

func (in *LiveUpdateSync) DeepCopy() *LiveUpdateSync

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

func (*LiveUpdateSync) DeepCopyInto added in v0.22.10

func (in *LiveUpdateSync) DeepCopyInto(out *LiveUpdateSync)

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

func (*LiveUpdateSync) Descriptor added in v0.22.10

func (*LiveUpdateSync) Descriptor() ([]byte, []int)

func (*LiveUpdateSync) Marshal added in v0.22.10

func (m *LiveUpdateSync) Marshal() (dAtA []byte, err error)

func (*LiveUpdateSync) MarshalTo added in v0.22.10

func (m *LiveUpdateSync) MarshalTo(dAtA []byte) (int, error)

func (*LiveUpdateSync) MarshalToSizedBuffer added in v0.22.10

func (m *LiveUpdateSync) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*LiveUpdateSync) ProtoMessage added in v0.22.10

func (*LiveUpdateSync) ProtoMessage()

func (*LiveUpdateSync) Reset added in v0.22.10

func (m *LiveUpdateSync) Reset()

func (*LiveUpdateSync) Size added in v0.22.10

func (m *LiveUpdateSync) Size() (n int)

func (*LiveUpdateSync) String added in v0.22.10

func (this *LiveUpdateSync) String() string

func (*LiveUpdateSync) Unmarshal added in v0.22.10

func (m *LiveUpdateSync) Unmarshal(dAtA []byte) error

func (*LiveUpdateSync) XXX_DiscardUnknown added in v0.22.10

func (m *LiveUpdateSync) XXX_DiscardUnknown()

func (*LiveUpdateSync) XXX_Marshal added in v0.22.10

func (m *LiveUpdateSync) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*LiveUpdateSync) XXX_Merge added in v0.22.10

func (m *LiveUpdateSync) XXX_Merge(src proto.Message)

func (*LiveUpdateSync) XXX_Size added in v0.22.10

func (m *LiveUpdateSync) XXX_Size() int

func (*LiveUpdateSync) XXX_Unmarshal added in v0.22.10

func (m *LiveUpdateSync) XXX_Unmarshal(b []byte) error

type ObjectSelector added in v0.20.8

type ObjectSelector struct {

	// A regular expression apiVersion match.
	// +optional
	APIVersionRegexp string `json:"apiVersionRegexp,omitempty" protobuf:"bytes,1,opt,name=apiVersionRegexp"`

	// A regular expression kind match.
	// +optional
	KindRegexp string `json:"kindRegexp,omitempty" protobuf:"bytes,2,opt,name=kindRegexp"`

	// A regular expression name match.
	// +optional
	NameRegexp string `json:"nameRegexp,omitempty" protobuf:"bytes,3,opt,name=nameRegexp"`

	// A regular expression namespace match.
	// +optional
	NamespaceRegexp string `json:"namespaceRegexp,omitempty" protobuf:"bytes,4,opt,name=namespaceRegexp"`
}

Selector for any Kubernetes-style API.

func (*ObjectSelector) DeepCopy added in v0.20.8

func (in *ObjectSelector) DeepCopy() *ObjectSelector

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

func (*ObjectSelector) DeepCopyInto added in v0.20.8

func (in *ObjectSelector) DeepCopyInto(out *ObjectSelector)

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

func (*ObjectSelector) Descriptor added in v0.20.8

func (*ObjectSelector) Descriptor() ([]byte, []int)

func (*ObjectSelector) Marshal added in v0.20.8

func (m *ObjectSelector) Marshal() (dAtA []byte, err error)

func (*ObjectSelector) MarshalTo added in v0.20.8

func (m *ObjectSelector) MarshalTo(dAtA []byte) (int, error)

func (*ObjectSelector) MarshalToSizedBuffer added in v0.20.8

func (m *ObjectSelector) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ObjectSelector) ProtoMessage added in v0.20.8

func (*ObjectSelector) ProtoMessage()

func (*ObjectSelector) Reset added in v0.20.8

func (m *ObjectSelector) Reset()

func (*ObjectSelector) Size added in v0.20.8

func (m *ObjectSelector) Size() (n int)

func (*ObjectSelector) String added in v0.20.8

func (this *ObjectSelector) String() string

func (*ObjectSelector) Unmarshal added in v0.20.8

func (m *ObjectSelector) Unmarshal(dAtA []byte) error

func (*ObjectSelector) XXX_DiscardUnknown added in v0.20.8

func (m *ObjectSelector) XXX_DiscardUnknown()

func (*ObjectSelector) XXX_Marshal added in v0.20.8

func (m *ObjectSelector) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ObjectSelector) XXX_Merge added in v0.20.8

func (m *ObjectSelector) XXX_Merge(src proto.Message)

func (*ObjectSelector) XXX_Size added in v0.20.8

func (m *ObjectSelector) XXX_Size() int

func (*ObjectSelector) XXX_Unmarshal added in v0.20.8

func (m *ObjectSelector) XXX_Unmarshal(b []byte) error

type Pod added in v0.19.7

type Pod struct {
	// UID is the unique Pod UID within the K8s cluster.
	UID string `json:"uid" protobuf:"bytes,14,opt,name=uid"`
	// Name is the Pod name within the K8s cluster.
	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
	// Namespace is the Pod namespace within the K8s cluster.
	Namespace string `json:"namespace" protobuf:"bytes,2,opt,name=namespace"`
	// CreatedAt is when the Pod was created.
	CreatedAt metav1.Time `json:"createdAt" protobuf:"bytes,3,opt,name=createdAt"`
	// Phase is where the Pod is at in its current lifecycle.
	//
	// Valid values for this are v1.PodPhase values from the Kubernetes API.
	Phase string `json:"phase" protobuf:"bytes,4,opt,name=phase"`
	// Deleting indicates that the Pod is in the process of being removed.
	Deleting bool `json:"deleting" protobuf:"varint,5,opt,name=deleting"`
	// Conditions are various lifecycle conditions for this Pod.
	//
	// See also v1.PodCondition in the Kubernetes API.
	Conditions []PodCondition `json:"conditions,omitempty" protobuf:"bytes,6,rep,name=conditions"`
	// InitContainers are containers executed prior to the Pod containers being executed.
	InitContainers []Container `json:"initContainers,omitempty" protobuf:"bytes,7,rep,name=initContainers"`
	// Containers are the containers belonging to the Pod.
	Containers []Container `json:"containers" protobuf:"bytes,8,rep,name=containers"`

	// AncestorUID is the UID from the WatchRef that matched this Pod.
	//
	// If the Pod matched based on extra label selectors, this will be empty.
	//
	// +optional
	AncestorUID string `json:"ancestorUID,omitempty" protobuf:"bytes,15,opt,name=ancestorUID"`
	// PodTemplateSpecHash is a hash of the Pod template spec.
	//
	// Tilt uses this to associate Pods with the build that triggered them.
	PodTemplateSpecHash string `json:"podTemplateSpecHash,omitempty" protobuf:"bytes,10,opt,name=podTemplateSpecHash"`
	// Status is a concise description for the Pod's current state.
	//
	// This is based off the status output from `kubectl get pod` and is not an "enum-like"
	// value.
	Status string `json:"status" protobuf:"bytes,12,opt,name=status"`
	// Errors are aggregated error messages for the Pod and its containers.
	Errors []string `json:"errors" protobuf:"bytes,13,rep,name=errors"`

	// Direct owner of this pod, if available.
	Owner *PodOwner `json:"owner,omitempty" protobuf:"bytes,16,opt,name=owner"`
}

Pod is a collection of containers that can run on a host.

The Tilt API representation mirrors the Kubernetes API very closely. Irrelevant data is not included, and some fields might be simplified.

There might also be Tilt-specific status fields.

func (*Pod) DeepCopy added in v0.19.7

func (in *Pod) DeepCopy() *Pod

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

func (*Pod) DeepCopyInto added in v0.19.7

func (in *Pod) DeepCopyInto(out *Pod)

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

func (*Pod) Descriptor added in v0.20.0

func (*Pod) Descriptor() ([]byte, []int)

func (*Pod) Marshal added in v0.20.0

func (m *Pod) Marshal() (dAtA []byte, err error)

func (*Pod) MarshalTo added in v0.20.0

func (m *Pod) MarshalTo(dAtA []byte) (int, error)

func (*Pod) MarshalToSizedBuffer added in v0.20.0

func (m *Pod) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Pod) ProtoMessage added in v0.20.0

func (*Pod) ProtoMessage()

func (*Pod) Reset added in v0.20.0

func (m *Pod) Reset()

func (*Pod) Size added in v0.20.0

func (m *Pod) Size() (n int)

func (*Pod) String added in v0.20.0

func (this *Pod) String() string

func (*Pod) Unmarshal added in v0.20.0

func (m *Pod) Unmarshal(dAtA []byte) error

func (*Pod) XXX_DiscardUnknown added in v0.20.0

func (m *Pod) XXX_DiscardUnknown()

func (*Pod) XXX_Marshal added in v0.20.0

func (m *Pod) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Pod) XXX_Merge added in v0.20.0

func (m *Pod) XXX_Merge(src proto.Message)

func (*Pod) XXX_Size added in v0.20.0

func (m *Pod) XXX_Size() int

func (*Pod) XXX_Unmarshal added in v0.20.0

func (m *Pod) XXX_Unmarshal(b []byte) error

type PodCondition added in v0.19.7

type PodCondition struct {
	// Type is the type of condition.
	//
	// Valid values for this are v1.PodConditionType values from the Kubernetes API.
	Type string `json:"type" protobuf:"bytes,1,opt,name=type"`
	// Status is the current state of the condition (True, False, or Unknown).
	//
	// Valid values for this are v1.PodConditionStatus values from the Kubernetes API.
	Status string `json:"status" protobuf:"bytes,2,opt,name=status"`
	// LastTransitionTime is the last time the status changed.
	LastTransitionTime metav1.Time `json:"lastTransitionTime,omitempty" protobuf:"bytes,3,opt,name=lastTransitionTime"`
	// Reason is a unique, one-word, CamelCase value for the cause of the last status change.
	Reason string `json:"reason,omitempty" protobuf:"bytes,4,opt,name=reason"`
	// Message is a human-readable description of the last status change.
	Message string `json:"message,omitempty" protobuf:"bytes,5,opt,name=message"`
}

PodCondition is a lifecycle condition for a Pod.

func (*PodCondition) DeepCopy added in v0.19.7

func (in *PodCondition) DeepCopy() *PodCondition

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

func (*PodCondition) DeepCopyInto added in v0.19.7

func (in *PodCondition) DeepCopyInto(out *PodCondition)

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

func (*PodCondition) Descriptor added in v0.20.0

func (*PodCondition) Descriptor() ([]byte, []int)

func (*PodCondition) Marshal added in v0.20.0

func (m *PodCondition) Marshal() (dAtA []byte, err error)

func (*PodCondition) MarshalTo added in v0.20.0

func (m *PodCondition) MarshalTo(dAtA []byte) (int, error)

func (*PodCondition) MarshalToSizedBuffer added in v0.20.0

func (m *PodCondition) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PodCondition) ProtoMessage added in v0.20.0

func (*PodCondition) ProtoMessage()

func (*PodCondition) Reset added in v0.20.0

func (m *PodCondition) Reset()

func (*PodCondition) Size added in v0.20.0

func (m *PodCondition) Size() (n int)

func (*PodCondition) String added in v0.20.0

func (this *PodCondition) String() string

func (*PodCondition) Unmarshal added in v0.20.0

func (m *PodCondition) Unmarshal(dAtA []byte) error

func (*PodCondition) XXX_DiscardUnknown added in v0.20.0

func (m *PodCondition) XXX_DiscardUnknown()

func (*PodCondition) XXX_Marshal added in v0.20.0

func (m *PodCondition) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PodCondition) XXX_Merge added in v0.20.0

func (m *PodCondition) XXX_Merge(src proto.Message)

func (*PodCondition) XXX_Size added in v0.20.0

func (m *PodCondition) XXX_Size() int

func (*PodCondition) XXX_Unmarshal added in v0.20.0

func (m *PodCondition) XXX_Unmarshal(b []byte) error

type PodLogStream added in v0.19.1

type PodLogStream struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Spec   PodLogStreamSpec   `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
	Status PodLogStreamStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
}

PodLogStream

Streams logs from a pod on Kubernetes into the core Tilt engine.

+k8s:openapi-gen=true

func (*PodLogStream) DeepCopy added in v0.19.1

func (in *PodLogStream) DeepCopy() *PodLogStream

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

func (*PodLogStream) DeepCopyInto added in v0.19.1

func (in *PodLogStream) DeepCopyInto(out *PodLogStream)

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

func (*PodLogStream) DeepCopyObject added in v0.19.1

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

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

func (*PodLogStream) Default added in v0.23.5

func (in *PodLogStream) Default()

func (*PodLogStream) Descriptor added in v0.20.0

func (*PodLogStream) Descriptor() ([]byte, []int)

func (*PodLogStream) GetGroupVersionResource added in v0.19.1

func (in *PodLogStream) GetGroupVersionResource() schema.GroupVersionResource

func (*PodLogStream) GetObjectMeta added in v0.19.1

func (in *PodLogStream) GetObjectMeta() *metav1.ObjectMeta

func (*PodLogStream) GetSingularName added in v0.33.0

func (in *PodLogStream) GetSingularName() string

func (*PodLogStream) GetStatus added in v0.19.1

func (in *PodLogStream) GetStatus() resource.StatusSubResource

func (*PodLogStream) IsStorageVersion added in v0.19.1

func (in *PodLogStream) IsStorageVersion() bool

func (*PodLogStream) Marshal added in v0.20.0

func (m *PodLogStream) Marshal() (dAtA []byte, err error)

func (*PodLogStream) MarshalTo added in v0.20.0

func (m *PodLogStream) MarshalTo(dAtA []byte) (int, error)

func (*PodLogStream) MarshalToSizedBuffer added in v0.20.0

func (m *PodLogStream) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PodLogStream) NamespaceScoped added in v0.19.1

func (in *PodLogStream) NamespaceScoped() bool

func (*PodLogStream) New added in v0.19.1

func (in *PodLogStream) New() runtime.Object

func (*PodLogStream) NewList added in v0.19.1

func (in *PodLogStream) NewList() runtime.Object

func (*PodLogStream) ProtoMessage added in v0.20.0

func (*PodLogStream) ProtoMessage()

func (*PodLogStream) Reset added in v0.20.0

func (m *PodLogStream) Reset()

func (*PodLogStream) ShortNames added in v0.20.4

func (in *PodLogStream) ShortNames() []string

func (*PodLogStream) Size added in v0.20.0

func (m *PodLogStream) Size() (n int)

func (*PodLogStream) String added in v0.20.0

func (this *PodLogStream) String() string

func (*PodLogStream) Unmarshal added in v0.20.0

func (m *PodLogStream) Unmarshal(dAtA []byte) error

func (*PodLogStream) Validate added in v0.19.1

func (in *PodLogStream) Validate(ctx context.Context) field.ErrorList

func (*PodLogStream) XXX_DiscardUnknown added in v0.20.0

func (m *PodLogStream) XXX_DiscardUnknown()

func (*PodLogStream) XXX_Marshal added in v0.20.0

func (m *PodLogStream) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PodLogStream) XXX_Merge added in v0.20.0

func (m *PodLogStream) XXX_Merge(src proto.Message)

func (*PodLogStream) XXX_Size added in v0.20.0

func (m *PodLogStream) XXX_Size() int

func (*PodLogStream) XXX_Unmarshal added in v0.20.0

func (m *PodLogStream) XXX_Unmarshal(b []byte) error

type PodLogStreamList added in v0.19.1

type PodLogStreamList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Items []PodLogStream `json:"items" protobuf:"bytes,2,rep,name=items"`
}

PodLogStreamList +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*PodLogStreamList) DeepCopy added in v0.19.1

func (in *PodLogStreamList) DeepCopy() *PodLogStreamList

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

func (*PodLogStreamList) DeepCopyInto added in v0.19.1

func (in *PodLogStreamList) DeepCopyInto(out *PodLogStreamList)

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

func (*PodLogStreamList) DeepCopyObject added in v0.19.1

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

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

func (*PodLogStreamList) Descriptor added in v0.20.0

func (*PodLogStreamList) Descriptor() ([]byte, []int)

func (*PodLogStreamList) GetListMeta added in v0.19.1

func (in *PodLogStreamList) GetListMeta() *metav1.ListMeta

func (*PodLogStreamList) Marshal added in v0.20.0

func (m *PodLogStreamList) Marshal() (dAtA []byte, err error)

func (*PodLogStreamList) MarshalTo added in v0.20.0

func (m *PodLogStreamList) MarshalTo(dAtA []byte) (int, error)

func (*PodLogStreamList) MarshalToSizedBuffer added in v0.20.0

func (m *PodLogStreamList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PodLogStreamList) ProtoMessage added in v0.20.0

func (*PodLogStreamList) ProtoMessage()

func (*PodLogStreamList) Reset added in v0.20.0

func (m *PodLogStreamList) Reset()

func (*PodLogStreamList) Size added in v0.20.0

func (m *PodLogStreamList) Size() (n int)

func (*PodLogStreamList) String added in v0.20.0

func (this *PodLogStreamList) String() string

func (*PodLogStreamList) Unmarshal added in v0.20.0

func (m *PodLogStreamList) Unmarshal(dAtA []byte) error

func (*PodLogStreamList) XXX_DiscardUnknown added in v0.20.0

func (m *PodLogStreamList) XXX_DiscardUnknown()

func (*PodLogStreamList) XXX_Marshal added in v0.20.0

func (m *PodLogStreamList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PodLogStreamList) XXX_Merge added in v0.20.0

func (m *PodLogStreamList) XXX_Merge(src proto.Message)

func (*PodLogStreamList) XXX_Size added in v0.20.0

func (m *PodLogStreamList) XXX_Size() int

func (*PodLogStreamList) XXX_Unmarshal added in v0.20.0

func (m *PodLogStreamList) XXX_Unmarshal(b []byte) error

type PodLogStreamSpec added in v0.19.1

type PodLogStreamSpec struct {
	// The name of the pod to watch. Required.
	Pod string `json:"pod,omitempty" protobuf:"bytes,1,opt,name=pod"`

	// The namespace of the pod to watch. Defaults to the kubecontext default namespace.
	//
	// +optional
	Namespace string `json:"namespace,omitempty" protobuf:"bytes,2,opt,name=namespace"`

	// An RFC3339 timestamp from which to show logs. If this value
	// precedes the time a pod was started, only logs since the pod start will be returned.
	// If this value is in the future, no logs will be returned.
	//
	// Translates directly to the underlying PodLogOptions.
	//
	// +optional
	SinceTime *metav1.Time `json:"sinceTime,omitempty" protobuf:"bytes,3,opt,name=sinceTime"`

	// The names of containers to include in the stream.
	//
	// If `onlyContainers` and `ignoreContainers` are not set,
	// will watch all containers in the pod.
	//
	// +optional
	OnlyContainers []string `json:"onlyContainers,omitempty" protobuf:"bytes,4,rep,name=onlyContainers"`

	// The names of containers to exclude from the stream.
	//
	// If `onlyContainers` and `ignoreContainers` are not set,
	// will watch all containers in the pod.
	//
	// +optional
	IgnoreContainers []string `json:"ignoreContainers,omitempty" protobuf:"bytes,5,rep,name=ignoreContainers"`

	// Cluster the Pod belongs to.
	//
	// If not provided, "default" will be used.
	//
	// +optional
	Cluster string `json:"cluster" protobuf:"bytes,6,opt,name=cluster"`
}

PodLogStreamSpec defines the desired state of PodLogStream

Translated into a PodLog query to the current Kubernetes cluster: https://pkg.go.dev/k8s.io/api/core/v1#PodLogOptions

TODO(nick): Should all Kubernetes types have an object that describes which Kubernetes context to use?

func (*PodLogStreamSpec) DeepCopy added in v0.19.1

func (in *PodLogStreamSpec) DeepCopy() *PodLogStreamSpec

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

func (*PodLogStreamSpec) DeepCopyInto added in v0.19.1

func (in *PodLogStreamSpec) DeepCopyInto(out *PodLogStreamSpec)

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

func (*PodLogStreamSpec) Descriptor added in v0.20.0

func (*PodLogStreamSpec) Descriptor() ([]byte, []int)

func (*PodLogStreamSpec) Marshal added in v0.20.0

func (m *PodLogStreamSpec) Marshal() (dAtA []byte, err error)

func (*PodLogStreamSpec) MarshalTo added in v0.20.0

func (m *PodLogStreamSpec) MarshalTo(dAtA []byte) (int, error)

func (*PodLogStreamSpec) MarshalToSizedBuffer added in v0.20.0

func (m *PodLogStreamSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PodLogStreamSpec) ProtoMessage added in v0.20.0

func (*PodLogStreamSpec) ProtoMessage()

func (*PodLogStreamSpec) Reset added in v0.20.0

func (m *PodLogStreamSpec) Reset()

func (*PodLogStreamSpec) Size added in v0.20.0

func (m *PodLogStreamSpec) Size() (n int)

func (*PodLogStreamSpec) String added in v0.20.0

func (this *PodLogStreamSpec) String() string

func (*PodLogStreamSpec) Unmarshal added in v0.20.0

func (m *PodLogStreamSpec) Unmarshal(dAtA []byte) error

func (*PodLogStreamSpec) XXX_DiscardUnknown added in v0.20.0

func (m *PodLogStreamSpec) XXX_DiscardUnknown()

func (*PodLogStreamSpec) XXX_Marshal added in v0.20.0

func (m *PodLogStreamSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PodLogStreamSpec) XXX_Merge added in v0.20.0

func (m *PodLogStreamSpec) XXX_Merge(src proto.Message)

func (*PodLogStreamSpec) XXX_Size added in v0.20.0

func (m *PodLogStreamSpec) XXX_Size() int

func (*PodLogStreamSpec) XXX_Unmarshal added in v0.20.0

func (m *PodLogStreamSpec) XXX_Unmarshal(b []byte) error

type PodLogStreamStatus added in v0.19.1

type PodLogStreamStatus struct {
	// A list of containers being watched.
	//
	// +optional
	ContainerStatuses []ContainerLogStreamStatus `json:"containerStatuses,omitempty" protobuf:"bytes,1,rep,name=containerStatuses"`

	// Error message encountered while setting up the stream.
	//
	// +optional
	Error string `json:"error,omitempty" protobuf:"bytes,2,opt,name=error"`
}

PodLogStreamStatus defines the observed state of PodLogStream

func (PodLogStreamStatus) CopyTo added in v0.19.1

func (*PodLogStreamStatus) DeepCopy added in v0.19.1

func (in *PodLogStreamStatus) DeepCopy() *PodLogStreamStatus

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

func (*PodLogStreamStatus) DeepCopyInto added in v0.19.1

func (in *PodLogStreamStatus) DeepCopyInto(out *PodLogStreamStatus)

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

func (*PodLogStreamStatus) Descriptor added in v0.20.0

func (*PodLogStreamStatus) Descriptor() ([]byte, []int)

func (*PodLogStreamStatus) Marshal added in v0.20.0

func (m *PodLogStreamStatus) Marshal() (dAtA []byte, err error)

func (*PodLogStreamStatus) MarshalTo added in v0.20.0

func (m *PodLogStreamStatus) MarshalTo(dAtA []byte) (int, error)

func (*PodLogStreamStatus) MarshalToSizedBuffer added in v0.20.0

func (m *PodLogStreamStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PodLogStreamStatus) ProtoMessage added in v0.20.0

func (*PodLogStreamStatus) ProtoMessage()

func (*PodLogStreamStatus) Reset added in v0.20.0

func (m *PodLogStreamStatus) Reset()

func (*PodLogStreamStatus) Size added in v0.20.0

func (m *PodLogStreamStatus) Size() (n int)

func (*PodLogStreamStatus) String added in v0.20.0

func (this *PodLogStreamStatus) String() string

func (*PodLogStreamStatus) Unmarshal added in v0.20.0

func (m *PodLogStreamStatus) Unmarshal(dAtA []byte) error

func (*PodLogStreamStatus) XXX_DiscardUnknown added in v0.20.0

func (m *PodLogStreamStatus) XXX_DiscardUnknown()

func (*PodLogStreamStatus) XXX_Marshal added in v0.20.0

func (m *PodLogStreamStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PodLogStreamStatus) XXX_Merge added in v0.20.0

func (m *PodLogStreamStatus) XXX_Merge(src proto.Message)

func (*PodLogStreamStatus) XXX_Size added in v0.20.0

func (m *PodLogStreamStatus) XXX_Size() int

func (*PodLogStreamStatus) XXX_Unmarshal added in v0.20.0

func (m *PodLogStreamStatus) XXX_Unmarshal(b []byte) error

type PodLogStreamTemplateSpec added in v0.21.1

type PodLogStreamTemplateSpec struct {
	// An RFC3339 timestamp from which to show logs. If this value
	// precedes the time a pod was started, only logs since the pod start will be returned.
	// If this value is in the future, no logs will be returned.
	//
	// Translates directly to the underlying PodLogOptions.
	//
	// +optional
	SinceTime *metav1.Time `json:"sinceTime,omitempty" protobuf:"bytes,1,opt,name=sinceTime"`

	// The names of containers to include in the stream.
	//
	// If `onlyContainers` and `ignoreContainers` are not set,
	// will watch all containers in the pod.
	//
	// +optional
	OnlyContainers []string `json:"onlyContainers,omitempty" protobuf:"bytes,2,rep,name=onlyContainers"`

	// The names of containers to exclude from the stream.
	//
	// If `onlyContainers` and `ignoreContainers` are not set,
	// will watch all containers in the pod.
	//
	// +optional
	IgnoreContainers []string `json:"ignoreContainers,omitempty" protobuf:"bytes,3,rep,name=ignoreContainers"`
}

PodLogStreamTemplateSpec describes common attributes for PodLogStreams that can be shared across pods.

func (*PodLogStreamTemplateSpec) DeepCopy added in v0.21.1

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

func (*PodLogStreamTemplateSpec) DeepCopyInto added in v0.21.1

func (in *PodLogStreamTemplateSpec) DeepCopyInto(out *PodLogStreamTemplateSpec)

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

func (*PodLogStreamTemplateSpec) Descriptor added in v0.21.1

func (*PodLogStreamTemplateSpec) Descriptor() ([]byte, []int)

func (*PodLogStreamTemplateSpec) Marshal added in v0.21.1

func (m *PodLogStreamTemplateSpec) Marshal() (dAtA []byte, err error)

func (*PodLogStreamTemplateSpec) MarshalTo added in v0.21.1

func (m *PodLogStreamTemplateSpec) MarshalTo(dAtA []byte) (int, error)

func (*PodLogStreamTemplateSpec) MarshalToSizedBuffer added in v0.21.1

func (m *PodLogStreamTemplateSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PodLogStreamTemplateSpec) ProtoMessage added in v0.21.1

func (*PodLogStreamTemplateSpec) ProtoMessage()

func (*PodLogStreamTemplateSpec) Reset added in v0.21.1

func (m *PodLogStreamTemplateSpec) Reset()

func (*PodLogStreamTemplateSpec) Size added in v0.21.1

func (m *PodLogStreamTemplateSpec) Size() (n int)

func (*PodLogStreamTemplateSpec) String added in v0.21.1

func (this *PodLogStreamTemplateSpec) String() string

func (*PodLogStreamTemplateSpec) Unmarshal added in v0.21.1

func (m *PodLogStreamTemplateSpec) Unmarshal(dAtA []byte) error

func (*PodLogStreamTemplateSpec) XXX_DiscardUnknown added in v0.21.1

func (m *PodLogStreamTemplateSpec) XXX_DiscardUnknown()

func (*PodLogStreamTemplateSpec) XXX_Marshal added in v0.21.1

func (m *PodLogStreamTemplateSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PodLogStreamTemplateSpec) XXX_Merge added in v0.21.1

func (m *PodLogStreamTemplateSpec) XXX_Merge(src proto.Message)

func (*PodLogStreamTemplateSpec) XXX_Size added in v0.21.1

func (m *PodLogStreamTemplateSpec) XXX_Size() int

func (*PodLogStreamTemplateSpec) XXX_Unmarshal added in v0.21.1

func (m *PodLogStreamTemplateSpec) XXX_Unmarshal(b []byte) error

type PodOwner added in v0.23.1

type PodOwner struct {
	// The name of the owner.
	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`

	// API version of the owner.
	APIVersion string `json:"apiVersion" protobuf:"bytes,3,opt,name=apiVersion"`

	// Kind of the owner
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Kind string `json:"kind" protobuf:"bytes,4,opt,name=kind"`

	// The creation timestamp of the owner.
	// +optional
	CreationTimestamp metav1.Time `json:"creationTimestamp,omitempty" protobuf:"bytes,2,opt,name=creationTimestamp"`
}

PodOwner contains information of the direct owner of the pod, if available.

Tools that need to select a most relevant pod or set of pods can use this info to group pods by owner.

func (*PodOwner) DeepCopy added in v0.23.1

func (in *PodOwner) DeepCopy() *PodOwner

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

func (*PodOwner) DeepCopyInto added in v0.23.1

func (in *PodOwner) DeepCopyInto(out *PodOwner)

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

func (*PodOwner) Descriptor added in v0.23.1

func (*PodOwner) Descriptor() ([]byte, []int)

func (*PodOwner) Marshal added in v0.23.1

func (m *PodOwner) Marshal() (dAtA []byte, err error)

func (*PodOwner) MarshalTo added in v0.23.1

func (m *PodOwner) MarshalTo(dAtA []byte) (int, error)

func (*PodOwner) MarshalToSizedBuffer added in v0.23.1

func (m *PodOwner) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PodOwner) ProtoMessage added in v0.23.1

func (*PodOwner) ProtoMessage()

func (*PodOwner) Reset added in v0.23.1

func (m *PodOwner) Reset()

func (*PodOwner) Size added in v0.23.1

func (m *PodOwner) Size() (n int)

func (*PodOwner) String added in v0.23.1

func (this *PodOwner) String() string

func (*PodOwner) Unmarshal added in v0.23.1

func (m *PodOwner) Unmarshal(dAtA []byte) error

func (*PodOwner) XXX_DiscardUnknown added in v0.23.1

func (m *PodOwner) XXX_DiscardUnknown()

func (*PodOwner) XXX_Marshal added in v0.23.1

func (m *PodOwner) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PodOwner) XXX_Merge added in v0.23.1

func (m *PodOwner) XXX_Merge(src proto.Message)

func (*PodOwner) XXX_Size added in v0.23.1

func (m *PodOwner) XXX_Size() int

func (*PodOwner) XXX_Unmarshal added in v0.23.1

func (m *PodOwner) XXX_Unmarshal(b []byte) error

type PortForward added in v0.19.7

type PortForward struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Spec   PortForwardSpec   `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
	Status PortForwardStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
}

PortForward +k8s:openapi-gen=true

func (*PortForward) DeepCopy added in v0.19.7

func (in *PortForward) DeepCopy() *PortForward

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

func (*PortForward) DeepCopyInto added in v0.19.7

func (in *PortForward) DeepCopyInto(out *PortForward)

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

func (*PortForward) DeepCopyObject added in v0.19.7

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

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

func (*PortForward) Default added in v0.27.2

func (in *PortForward) Default()

func (*PortForward) Descriptor added in v0.20.0

func (*PortForward) Descriptor() ([]byte, []int)

func (*PortForward) GetGroupVersionResource added in v0.19.7

func (in *PortForward) GetGroupVersionResource() schema.GroupVersionResource

func (*PortForward) GetObjectMeta added in v0.19.7

func (in *PortForward) GetObjectMeta() *metav1.ObjectMeta

func (*PortForward) GetSingularName added in v0.33.0

func (in *PortForward) GetSingularName() string

func (*PortForward) GetStatus added in v0.19.7

func (in *PortForward) GetStatus() resource.StatusSubResource

func (*PortForward) IsStorageVersion added in v0.19.7

func (in *PortForward) IsStorageVersion() bool

func (*PortForward) Marshal added in v0.20.0

func (m *PortForward) Marshal() (dAtA []byte, err error)

func (*PortForward) MarshalTo added in v0.20.0

func (m *PortForward) MarshalTo(dAtA []byte) (int, error)

func (*PortForward) MarshalToSizedBuffer added in v0.20.0

func (m *PortForward) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PortForward) NamespaceScoped added in v0.19.7

func (in *PortForward) NamespaceScoped() bool

func (*PortForward) New added in v0.19.7

func (in *PortForward) New() runtime.Object

func (*PortForward) NewList added in v0.19.7

func (in *PortForward) NewList() runtime.Object

func (*PortForward) ProtoMessage added in v0.20.0

func (*PortForward) ProtoMessage()

func (*PortForward) Reset added in v0.20.0

func (m *PortForward) Reset()

func (*PortForward) ShortNames added in v0.21.3

func (in *PortForward) ShortNames() []string

func (*PortForward) Size added in v0.20.0

func (m *PortForward) Size() (n int)

func (*PortForward) String added in v0.20.0

func (this *PortForward) String() string

func (*PortForward) Unmarshal added in v0.20.0

func (m *PortForward) Unmarshal(dAtA []byte) error

func (*PortForward) Validate added in v0.19.7

func (in *PortForward) Validate(_ context.Context) field.ErrorList

func (*PortForward) XXX_DiscardUnknown added in v0.20.0

func (m *PortForward) XXX_DiscardUnknown()

func (*PortForward) XXX_Marshal added in v0.20.0

func (m *PortForward) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PortForward) XXX_Merge added in v0.20.0

func (m *PortForward) XXX_Merge(src proto.Message)

func (*PortForward) XXX_Size added in v0.20.0

func (m *PortForward) XXX_Size() int

func (*PortForward) XXX_Unmarshal added in v0.20.0

func (m *PortForward) XXX_Unmarshal(b []byte) error

type PortForwardList added in v0.19.7

type PortForwardList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Items []PortForward `json:"items" protobuf:"bytes,2,rep,name=items"`
}

PortForwardList +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*PortForwardList) DeepCopy added in v0.19.7

func (in *PortForwardList) DeepCopy() *PortForwardList

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

func (*PortForwardList) DeepCopyInto added in v0.19.7

func (in *PortForwardList) DeepCopyInto(out *PortForwardList)

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

func (*PortForwardList) DeepCopyObject added in v0.19.7

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

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

func (*PortForwardList) Descriptor added in v0.20.0

func (*PortForwardList) Descriptor() ([]byte, []int)

func (*PortForwardList) GetListMeta added in v0.19.7

func (in *PortForwardList) GetListMeta() *metav1.ListMeta

func (*PortForwardList) Marshal added in v0.20.0

func (m *PortForwardList) Marshal() (dAtA []byte, err error)

func (*PortForwardList) MarshalTo added in v0.20.0

func (m *PortForwardList) MarshalTo(dAtA []byte) (int, error)

func (*PortForwardList) MarshalToSizedBuffer added in v0.20.0

func (m *PortForwardList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PortForwardList) ProtoMessage added in v0.20.0

func (*PortForwardList) ProtoMessage()

func (*PortForwardList) Reset added in v0.20.0

func (m *PortForwardList) Reset()

func (*PortForwardList) Size added in v0.20.0

func (m *PortForwardList) Size() (n int)

func (*PortForwardList) String added in v0.20.0

func (this *PortForwardList) String() string

func (*PortForwardList) Unmarshal added in v0.20.0

func (m *PortForwardList) Unmarshal(dAtA []byte) error

func (*PortForwardList) XXX_DiscardUnknown added in v0.20.0

func (m *PortForwardList) XXX_DiscardUnknown()

func (*PortForwardList) XXX_Marshal added in v0.20.0

func (m *PortForwardList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PortForwardList) XXX_Merge added in v0.20.0

func (m *PortForwardList) XXX_Merge(src proto.Message)

func (*PortForwardList) XXX_Size added in v0.20.0

func (m *PortForwardList) XXX_Size() int

func (*PortForwardList) XXX_Unmarshal added in v0.20.0

func (m *PortForwardList) XXX_Unmarshal(b []byte) error

type PortForwardSpec added in v0.19.7

type PortForwardSpec struct {
	// The name of the pod to port forward to/from. Required.
	PodName string `json:"podName" protobuf:"bytes,1,opt,name=podName"`

	// The namespace of the pod to port forward to/from. Defaults to the kubecontext default namespace.
	//
	// +optional
	Namespace string `json:"namespace,omitempty" protobuf:"bytes,2,opt,name=namespace"`

	// One or more port forwards to execute on the given pod. Required.
	Forwards []Forward `json:"forwards" protobuf:"bytes,3,rep,name=forwards"`

	// Cluster to forward ports from to the local machine.
	//
	// If not specified, the default Kubernetes cluster will be used.
	//
	// +optional
	Cluster string `json:"cluster" protobuf:"bytes,4,opt,name=cluster"`
}

PortForwardSpec defines the desired state of PortForward

func (*PortForwardSpec) DeepCopy added in v0.19.7

func (in *PortForwardSpec) DeepCopy() *PortForwardSpec

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

func (*PortForwardSpec) DeepCopyInto added in v0.19.7

func (in *PortForwardSpec) DeepCopyInto(out *PortForwardSpec)

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

func (*PortForwardSpec) Descriptor added in v0.20.0

func (*PortForwardSpec) Descriptor() ([]byte, []int)

func (*PortForwardSpec) Marshal added in v0.20.0

func (m *PortForwardSpec) Marshal() (dAtA []byte, err error)

func (*PortForwardSpec) MarshalTo added in v0.20.0

func (m *PortForwardSpec) MarshalTo(dAtA []byte) (int, error)

func (*PortForwardSpec) MarshalToSizedBuffer added in v0.20.0

func (m *PortForwardSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PortForwardSpec) ProtoMessage added in v0.20.0

func (*PortForwardSpec) ProtoMessage()

func (*PortForwardSpec) Reset added in v0.20.0

func (m *PortForwardSpec) Reset()

func (*PortForwardSpec) Size added in v0.20.0

func (m *PortForwardSpec) Size() (n int)

func (*PortForwardSpec) String added in v0.20.0

func (this *PortForwardSpec) String() string

func (*PortForwardSpec) Unmarshal added in v0.20.0

func (m *PortForwardSpec) Unmarshal(dAtA []byte) error

func (*PortForwardSpec) XXX_DiscardUnknown added in v0.20.0

func (m *PortForwardSpec) XXX_DiscardUnknown()

func (*PortForwardSpec) XXX_Marshal added in v0.20.0

func (m *PortForwardSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PortForwardSpec) XXX_Merge added in v0.20.0

func (m *PortForwardSpec) XXX_Merge(src proto.Message)

func (*PortForwardSpec) XXX_Size added in v0.20.0

func (m *PortForwardSpec) XXX_Size() int

func (*PortForwardSpec) XXX_Unmarshal added in v0.20.0

func (m *PortForwardSpec) XXX_Unmarshal(b []byte) error

type PortForwardStatus added in v0.19.7

type PortForwardStatus struct {
	ForwardStatuses []ForwardStatus `json:"forwardStatuses,omitempty" protobuf:"bytes,2,opt,name=forwardStatuses"`
}

PortForwardStatus defines the observed state of PortForward

func (PortForwardStatus) CopyTo added in v0.19.7

func (*PortForwardStatus) DeepCopy added in v0.19.7

func (in *PortForwardStatus) DeepCopy() *PortForwardStatus

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

func (*PortForwardStatus) DeepCopyInto added in v0.19.7

func (in *PortForwardStatus) DeepCopyInto(out *PortForwardStatus)

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

func (*PortForwardStatus) Descriptor added in v0.20.0

func (*PortForwardStatus) Descriptor() ([]byte, []int)

func (*PortForwardStatus) Marshal added in v0.20.0

func (m *PortForwardStatus) Marshal() (dAtA []byte, err error)

func (*PortForwardStatus) MarshalTo added in v0.20.0

func (m *PortForwardStatus) MarshalTo(dAtA []byte) (int, error)

func (*PortForwardStatus) MarshalToSizedBuffer added in v0.20.0

func (m *PortForwardStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PortForwardStatus) ProtoMessage added in v0.20.0

func (*PortForwardStatus) ProtoMessage()

func (*PortForwardStatus) Reset added in v0.20.0

func (m *PortForwardStatus) Reset()

func (*PortForwardStatus) Size added in v0.20.0

func (m *PortForwardStatus) Size() (n int)

func (*PortForwardStatus) String added in v0.20.0

func (this *PortForwardStatus) String() string

func (*PortForwardStatus) Unmarshal added in v0.20.0

func (m *PortForwardStatus) Unmarshal(dAtA []byte) error

func (*PortForwardStatus) XXX_DiscardUnknown added in v0.20.0

func (m *PortForwardStatus) XXX_DiscardUnknown()

func (*PortForwardStatus) XXX_Marshal added in v0.20.0

func (m *PortForwardStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PortForwardStatus) XXX_Merge added in v0.20.0

func (m *PortForwardStatus) XXX_Merge(src proto.Message)

func (*PortForwardStatus) XXX_Size added in v0.20.0

func (m *PortForwardStatus) XXX_Size() int

func (*PortForwardStatus) XXX_Unmarshal added in v0.20.0

func (m *PortForwardStatus) XXX_Unmarshal(b []byte) error

type PortForwardTemplateSpec added in v0.21.1

type PortForwardTemplateSpec struct {
	// One or more port forwards to execute on the given pod. Required.
	Forwards []Forward `json:"forwards" protobuf:"bytes,1,rep,name=forwards"`
}

PortForwardTemplateSpec describes common attributes for PortForwards that can be shared across pods.

func (*PortForwardTemplateSpec) DeepCopy added in v0.21.1

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

func (*PortForwardTemplateSpec) DeepCopyInto added in v0.21.1

func (in *PortForwardTemplateSpec) DeepCopyInto(out *PortForwardTemplateSpec)

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

func (*PortForwardTemplateSpec) Descriptor added in v0.21.1

func (*PortForwardTemplateSpec) Descriptor() ([]byte, []int)

func (*PortForwardTemplateSpec) Marshal added in v0.21.1

func (m *PortForwardTemplateSpec) Marshal() (dAtA []byte, err error)

func (*PortForwardTemplateSpec) MarshalTo added in v0.21.1

func (m *PortForwardTemplateSpec) MarshalTo(dAtA []byte) (int, error)

func (*PortForwardTemplateSpec) MarshalToSizedBuffer added in v0.21.1

func (m *PortForwardTemplateSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PortForwardTemplateSpec) ProtoMessage added in v0.21.1

func (*PortForwardTemplateSpec) ProtoMessage()

func (*PortForwardTemplateSpec) Reset added in v0.21.1

func (m *PortForwardTemplateSpec) Reset()

func (*PortForwardTemplateSpec) Size added in v0.21.1

func (m *PortForwardTemplateSpec) Size() (n int)

func (*PortForwardTemplateSpec) String added in v0.21.1

func (this *PortForwardTemplateSpec) String() string

func (*PortForwardTemplateSpec) Unmarshal added in v0.21.1

func (m *PortForwardTemplateSpec) Unmarshal(dAtA []byte) error

func (*PortForwardTemplateSpec) XXX_DiscardUnknown added in v0.21.1

func (m *PortForwardTemplateSpec) XXX_DiscardUnknown()

func (*PortForwardTemplateSpec) XXX_Marshal added in v0.21.1

func (m *PortForwardTemplateSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PortForwardTemplateSpec) XXX_Merge added in v0.21.1

func (m *PortForwardTemplateSpec) XXX_Merge(src proto.Message)

func (*PortForwardTemplateSpec) XXX_Size added in v0.21.1

func (m *PortForwardTemplateSpec) XXX_Size() int

func (*PortForwardTemplateSpec) XXX_Unmarshal added in v0.21.1

func (m *PortForwardTemplateSpec) XXX_Unmarshal(b []byte) error

type Probe added in v0.18.11

type Probe struct {
	// The action taken to determine the health of a container
	Handler `json:",inline" protobuf:"bytes,1,opt,name=handler"`
	// Number of seconds after the container has started before liveness probes are initiated.
	// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
	// +optional
	InitialDelaySeconds int32 `json:"initialDelaySeconds,omitempty" protobuf:"varint,2,opt,name=initialDelaySeconds"`
	// Number of seconds after which the probe times out.
	// Defaults to 1 second. Minimum value is 1.
	// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
	// +optional
	TimeoutSeconds int32 `json:"timeoutSeconds,omitempty" protobuf:"varint,3,opt,name=timeoutSeconds"`
	// How often (in seconds) to perform the probe.
	// Default to 10 seconds. Minimum value is 1.
	// +optional
	PeriodSeconds int32 `json:"periodSeconds,omitempty" protobuf:"varint,4,opt,name=periodSeconds"`
	// Minimum consecutive successes for the probe to be considered successful after having failed.
	// Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.
	// +optional
	SuccessThreshold int32 `json:"successThreshold,omitempty" protobuf:"varint,5,opt,name=successThreshold"`
	// Minimum consecutive failures for the probe to be considered failed after having succeeded.
	// Defaults to 3. Minimum value is 1.
	// +optional
	FailureThreshold int32 `json:"failureThreshold,omitempty" protobuf:"varint,6,opt,name=failureThreshold"`
}

Probe describes a health check to be performed to determine whether it is alive or ready to receive traffic.

func (*Probe) DeepCopy added in v0.18.11

func (in *Probe) DeepCopy() *Probe

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

func (*Probe) DeepCopyInto added in v0.18.11

func (in *Probe) DeepCopyInto(out *Probe)

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

func (*Probe) Descriptor added in v0.20.0

func (*Probe) Descriptor() ([]byte, []int)

func (*Probe) Marshal added in v0.20.0

func (m *Probe) Marshal() (dAtA []byte, err error)

func (*Probe) MarshalTo added in v0.20.0

func (m *Probe) MarshalTo(dAtA []byte) (int, error)

func (*Probe) MarshalToSizedBuffer added in v0.20.0

func (m *Probe) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Probe) ProtoMessage added in v0.20.0

func (*Probe) ProtoMessage()

func (*Probe) Reset added in v0.20.0

func (m *Probe) Reset()

func (*Probe) Size added in v0.20.0

func (m *Probe) Size() (n int)

func (*Probe) String added in v0.20.0

func (this *Probe) String() string

func (*Probe) Unmarshal added in v0.20.0

func (m *Probe) Unmarshal(dAtA []byte) error

func (*Probe) XXX_DiscardUnknown added in v0.20.0

func (m *Probe) XXX_DiscardUnknown()

func (*Probe) XXX_Marshal added in v0.20.0

func (m *Probe) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Probe) XXX_Merge added in v0.20.0

func (m *Probe) XXX_Merge(src proto.Message)

func (*Probe) XXX_Size added in v0.20.0

func (m *Probe) XXX_Size() int

func (*Probe) XXX_Unmarshal added in v0.20.0

func (m *Probe) XXX_Unmarshal(b []byte) error

type RegistryHosting added in v0.27.0

type RegistryHosting struct {
	// Host documents the host (hostname and port) of the registry, as seen from
	// outside the cluster.
	//
	// This is the registry host that tools outside the cluster should push images
	// to.
	Host string `json:"host" yaml:"host" protobuf:"bytes,1,opt,name=host"`

	// HostFromClusterNetwork documents the host (hostname and port) of the
	// registry, as seen from networking inside the container pods.
	//
	// This is the registry host that tools running on pods inside the cluster
	// should push images to. If not set, then tools inside the cluster should
	// assume the local registry is not available to them.
	//
	// +optional
	HostFromClusterNetwork string `` /* 130-byte string literal not displayed */

	// HostFromContainerRuntime documents the host (hostname and port) of the
	// registry, as seen from the cluster's container runtime.
	//
	// When tools apply Kubernetes objects to the cluster, this host should be
	// used for image name fields. If not set, users of this field should use the
	// value of Host instead.
	//
	// Note that it doesn't make sense semantically to define this field, but not
	// define Host or HostFromClusterNetwork. That would imply a way to pull
	// images without a way to push images.
	//
	// +optional
	HostFromContainerRuntime string `` /* 136-byte string literal not displayed */

	// Help contains a URL pointing to documentation for users on how to set
	// up and configure a local registry.
	//
	// Tools can use this to nudge users to enable the registry. When possible,
	// the writer should use as permanent a URL as possible to prevent drift
	// (e.g., a version control SHA).
	//
	// When image pushes to a registry host specified in one of the other fields
	// fail, the tool should display this help URL to the user. The help URL
	// should contain instructions on how to diagnose broken or misconfigured
	// registries.
	//
	// +optional
	Help string `json:"help,omitempty" yaml:"help,omitempty" protobuf:"bytes,4,opt,name=help"`

	// SingleName uses a shared image name for _all_ Tilt-built images and
	// relies on tags to distinguish between logically distinct images.
	//
	// This is most commonly used with Amazon Elastic Container Registry (ECR),
	// which works differently than other image registries.
	//
	// An ECR host takes the form https://aws_account_id.dkr.ecr.region.amazonaws.com.
	// Each image name in that registry must be pre-created ಠ_ಠ and assigned
	// IAM permissions.
	// For example: https://aws_account_id.dkr.ecr.region.amazonaws.com/my-repo
	// (They call this a repo).
	//
	// For this reason, some users using ECR prefer to push all images to a
	// single image name (ECR repo).
	//
	// A recommended pattern here is to create a "personal" image repo for each
	// user during development.
	//
	// See:
	// https://docs.aws.amazon.com/AmazonECR/latest/userguide/Repositories.html
	// https://github.com/tilt-dev/tilt/issues/2419
	//
	// +optional
	SingleName string `json:"singleName,omitempty" protobuf:"bytes,5,opt,name=singleName"`
}

func (*RegistryHosting) DeepCopy added in v0.27.0

func (in *RegistryHosting) DeepCopy() *RegistryHosting

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

func (*RegistryHosting) DeepCopyInto added in v0.27.0

func (in *RegistryHosting) DeepCopyInto(out *RegistryHosting)

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

func (*RegistryHosting) Descriptor added in v0.27.0

func (*RegistryHosting) Descriptor() ([]byte, []int)

func (*RegistryHosting) Marshal added in v0.27.0

func (m *RegistryHosting) Marshal() (dAtA []byte, err error)

func (*RegistryHosting) MarshalTo added in v0.27.0

func (m *RegistryHosting) MarshalTo(dAtA []byte) (int, error)

func (*RegistryHosting) MarshalToSizedBuffer added in v0.27.0

func (m *RegistryHosting) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RegistryHosting) ProtoMessage added in v0.27.0

func (*RegistryHosting) ProtoMessage()

func (*RegistryHosting) Reset added in v0.27.0

func (m *RegistryHosting) Reset()

func (*RegistryHosting) Size added in v0.27.0

func (m *RegistryHosting) Size() (n int)

func (*RegistryHosting) String added in v0.27.0

func (this *RegistryHosting) String() string

func (*RegistryHosting) Unmarshal added in v0.27.0

func (m *RegistryHosting) Unmarshal(dAtA []byte) error

func (*RegistryHosting) Validate added in v0.29.0

func (in *RegistryHosting) Validate(ctx context.Context) field.ErrorList

func (*RegistryHosting) XXX_DiscardUnknown added in v0.27.0

func (m *RegistryHosting) XXX_DiscardUnknown()

func (*RegistryHosting) XXX_Marshal added in v0.27.0

func (m *RegistryHosting) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RegistryHosting) XXX_Merge added in v0.27.0

func (m *RegistryHosting) XXX_Merge(src proto.Message)

func (*RegistryHosting) XXX_Size added in v0.27.0

func (m *RegistryHosting) XXX_Size() int

func (*RegistryHosting) XXX_Unmarshal added in v0.27.0

func (m *RegistryHosting) XXX_Unmarshal(b []byte) error

type RestartOnSpec added in v0.19.0

type RestartOnSpec struct {
	// FileWatches that can trigger a restart.
	// +optional
	FileWatches []string `json:"fileWatches,omitempty" protobuf:"bytes,1,rep,name=fileWatches"`

	// UIButtons that can trigger a restart.
	// +optional
	UIButtons []string `json:"uiButtons,omitempty" protobuf:"bytes,2,rep,name=uiButtons"`
}

RestartOnSpec indicates the set of objects that can trigger a restart of this object.

func (*RestartOnSpec) DeepCopy added in v0.19.0

func (in *RestartOnSpec) DeepCopy() *RestartOnSpec

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

func (*RestartOnSpec) DeepCopyInto added in v0.19.0

func (in *RestartOnSpec) DeepCopyInto(out *RestartOnSpec)

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

func (*RestartOnSpec) Descriptor added in v0.20.0

func (*RestartOnSpec) Descriptor() ([]byte, []int)

func (*RestartOnSpec) Marshal added in v0.20.0

func (m *RestartOnSpec) Marshal() (dAtA []byte, err error)

func (*RestartOnSpec) MarshalTo added in v0.20.0

func (m *RestartOnSpec) MarshalTo(dAtA []byte) (int, error)

func (*RestartOnSpec) MarshalToSizedBuffer added in v0.20.0

func (m *RestartOnSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RestartOnSpec) ProtoMessage added in v0.20.0

func (*RestartOnSpec) ProtoMessage()

func (*RestartOnSpec) Reset added in v0.20.0

func (m *RestartOnSpec) Reset()

func (*RestartOnSpec) Size added in v0.20.0

func (m *RestartOnSpec) Size() (n int)

func (*RestartOnSpec) String added in v0.20.0

func (this *RestartOnSpec) String() string

func (*RestartOnSpec) Unmarshal added in v0.20.0

func (m *RestartOnSpec) Unmarshal(dAtA []byte) error

func (*RestartOnSpec) XXX_DiscardUnknown added in v0.20.0

func (m *RestartOnSpec) XXX_DiscardUnknown()

func (*RestartOnSpec) XXX_Marshal added in v0.20.0

func (m *RestartOnSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RestartOnSpec) XXX_Merge added in v0.20.0

func (m *RestartOnSpec) XXX_Merge(src proto.Message)

func (*RestartOnSpec) XXX_Size added in v0.20.0

func (m *RestartOnSpec) XXX_Size() int

func (*RestartOnSpec) XXX_Unmarshal added in v0.20.0

func (m *RestartOnSpec) XXX_Unmarshal(b []byte) error

type RuntimeStatus added in v0.19.2

type RuntimeStatus string

The RuntimeStatus is a simple, high-level summary of the runtime state of a server.

const (
	// The server runtime status hasn't been read yet.
	RuntimeStatusUnknown RuntimeStatus = "unknown"

	// The server runtime is OK and passing health checks.
	RuntimeStatusOK RuntimeStatus = "ok"

	// The server runtime is still being scheduled or waiting on health checks.
	RuntimeStatusPending RuntimeStatus = "pending"

	// The server runtime is in an error state.
	RuntimeStatusError RuntimeStatus = "error"

	// There's no server runtime for this resource and never will be.
	RuntimeStatusNotApplicable RuntimeStatus = "not_applicable"

	// This server hasn't had any reason to start yet.
	// This usually indicates that it's a manual trigger with no auto_init.
	RuntimeStatusNone RuntimeStatus = "none"
)

type Session added in v0.19.3

type Session struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Spec   SessionSpec   `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
	Status SessionStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
}

Session provides introspective data about the status of the Tilt process. +k8s:openapi-gen=true

func (*Session) DeepCopy added in v0.19.3

func (in *Session) DeepCopy() *Session

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

func (*Session) DeepCopyInto added in v0.19.3

func (in *Session) DeepCopyInto(out *Session)

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

func (*Session) DeepCopyObject added in v0.19.3

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

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

func (*Session) Descriptor added in v0.20.0

func (*Session) Descriptor() ([]byte, []int)

func (*Session) GetGroupVersionResource added in v0.19.3

func (in *Session) GetGroupVersionResource() schema.GroupVersionResource

func (*Session) GetObjectMeta added in v0.19.3

func (in *Session) GetObjectMeta() *metav1.ObjectMeta

func (*Session) GetSingularName added in v0.33.0

func (in *Session) GetSingularName() string

func (*Session) GetSpec added in v0.31.0

func (in *Session) GetSpec() interface{}

func (*Session) GetStatus added in v0.19.3

func (in *Session) GetStatus() resource.StatusSubResource

func (*Session) IsStorageVersion added in v0.19.3

func (in *Session) IsStorageVersion() bool

func (*Session) Marshal added in v0.20.0

func (m *Session) Marshal() (dAtA []byte, err error)

func (*Session) MarshalTo added in v0.20.0

func (m *Session) MarshalTo(dAtA []byte) (int, error)

func (*Session) MarshalToSizedBuffer added in v0.20.0

func (m *Session) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Session) NamespaceScoped added in v0.19.3

func (in *Session) NamespaceScoped() bool

func (*Session) New added in v0.19.3

func (in *Session) New() runtime.Object

func (*Session) NewList added in v0.19.3

func (in *Session) NewList() runtime.Object

func (*Session) ProtoMessage added in v0.20.0

func (*Session) ProtoMessage()

func (*Session) Reset added in v0.20.0

func (m *Session) Reset()

func (*Session) Size added in v0.20.0

func (m *Session) Size() (n int)

func (*Session) String added in v0.20.0

func (this *Session) String() string

func (*Session) Unmarshal added in v0.20.0

func (m *Session) Unmarshal(dAtA []byte) error

func (*Session) Validate added in v0.19.3

func (in *Session) Validate(_ context.Context) field.ErrorList

func (*Session) XXX_DiscardUnknown added in v0.20.0

func (m *Session) XXX_DiscardUnknown()

func (*Session) XXX_Marshal added in v0.20.0

func (m *Session) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Session) XXX_Merge added in v0.20.0

func (m *Session) XXX_Merge(src proto.Message)

func (*Session) XXX_Size added in v0.20.0

func (m *Session) XXX_Size() int

func (*Session) XXX_Unmarshal added in v0.20.0

func (m *Session) XXX_Unmarshal(b []byte) error

type SessionCISpec added in v0.31.0

type SessionCISpec struct {
	// Grace period given for Kubernetes resources to recover after
	// they start failing.
	//
	// If omitted, and in exitCondition=ci, the session will exit as soon
	// as we see a pod failure.
	K8sGracePeriod *metav1.Duration `json:"k8sGracePeriod,omitempty" protobuf:"bytes,1,opt,name=k8sGracePeriod"`

	// Timeout for the whole CI pipeline. Defaults to 30m.
	Timeout *metav1.Duration `json:"timeout,omitempty" protobuf:"bytes,2,opt,name=timeout"`
}

func (*SessionCISpec) DeepCopy added in v0.31.0

func (in *SessionCISpec) DeepCopy() *SessionCISpec

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

func (*SessionCISpec) DeepCopyInto added in v0.31.0

func (in *SessionCISpec) DeepCopyInto(out *SessionCISpec)

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

func (*SessionCISpec) Descriptor added in v0.31.0

func (*SessionCISpec) Descriptor() ([]byte, []int)

func (*SessionCISpec) Marshal added in v0.31.0

func (m *SessionCISpec) Marshal() (dAtA []byte, err error)

func (*SessionCISpec) MarshalTo added in v0.31.0

func (m *SessionCISpec) MarshalTo(dAtA []byte) (int, error)

func (*SessionCISpec) MarshalToSizedBuffer added in v0.31.0

func (m *SessionCISpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*SessionCISpec) ProtoMessage added in v0.31.0

func (*SessionCISpec) ProtoMessage()

func (*SessionCISpec) Reset added in v0.31.0

func (m *SessionCISpec) Reset()

func (*SessionCISpec) Size added in v0.31.0

func (m *SessionCISpec) Size() (n int)

func (*SessionCISpec) String added in v0.31.0

func (this *SessionCISpec) String() string

func (*SessionCISpec) Unmarshal added in v0.31.0

func (m *SessionCISpec) Unmarshal(dAtA []byte) error

func (*SessionCISpec) XXX_DiscardUnknown added in v0.31.0

func (m *SessionCISpec) XXX_DiscardUnknown()

func (*SessionCISpec) XXX_Marshal added in v0.31.0

func (m *SessionCISpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SessionCISpec) XXX_Merge added in v0.31.0

func (m *SessionCISpec) XXX_Merge(src proto.Message)

func (*SessionCISpec) XXX_Size added in v0.31.0

func (m *SessionCISpec) XXX_Size() int

func (*SessionCISpec) XXX_Unmarshal added in v0.31.0

func (m *SessionCISpec) XXX_Unmarshal(b []byte) error

type SessionList added in v0.19.3

type SessionList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Items []Session `json:"items" protobuf:"bytes,2,rep,name=items"`
}

SessionList is a list of Session objects. +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*SessionList) DeepCopy added in v0.19.3

func (in *SessionList) DeepCopy() *SessionList

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

func (*SessionList) DeepCopyInto added in v0.19.3

func (in *SessionList) DeepCopyInto(out *SessionList)

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

func (*SessionList) DeepCopyObject added in v0.19.3

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

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

func (*SessionList) Descriptor added in v0.20.0

func (*SessionList) Descriptor() ([]byte, []int)

func (*SessionList) GetListMeta added in v0.19.3

func (in *SessionList) GetListMeta() *metav1.ListMeta

func (*SessionList) Marshal added in v0.20.0

func (m *SessionList) Marshal() (dAtA []byte, err error)

func (*SessionList) MarshalTo added in v0.20.0

func (m *SessionList) MarshalTo(dAtA []byte) (int, error)

func (*SessionList) MarshalToSizedBuffer added in v0.20.0

func (m *SessionList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*SessionList) ProtoMessage added in v0.20.0

func (*SessionList) ProtoMessage()

func (*SessionList) Reset added in v0.20.0

func (m *SessionList) Reset()

func (*SessionList) Size added in v0.20.0

func (m *SessionList) Size() (n int)

func (*SessionList) String added in v0.20.0

func (this *SessionList) String() string

func (*SessionList) Unmarshal added in v0.20.0

func (m *SessionList) Unmarshal(dAtA []byte) error

func (*SessionList) XXX_DiscardUnknown added in v0.20.0

func (m *SessionList) XXX_DiscardUnknown()

func (*SessionList) XXX_Marshal added in v0.20.0

func (m *SessionList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SessionList) XXX_Merge added in v0.20.0

func (m *SessionList) XXX_Merge(src proto.Message)

func (*SessionList) XXX_Size added in v0.20.0

func (m *SessionList) XXX_Size() int

func (*SessionList) XXX_Unmarshal added in v0.20.0

func (m *SessionList) XXX_Unmarshal(b []byte) error

type SessionSpec added in v0.19.3

type SessionSpec struct {
	// TiltfilePath is the path to the Tiltfile for the run. It cannot be empty.
	TiltfilePath string `json:"tiltfilePath" protobuf:"bytes,1,opt,name=tiltfilePath"`

	// ExitCondition defines the criteria for Tilt to exit.
	ExitCondition ExitCondition `json:"exitCondition" protobuf:"bytes,2,opt,name=exitCondition,casttype=ExitCondition"`

	// Additional settings when in exitCondition=CI.
	CI *SessionCISpec `json:"ci,omitempty" protobuf:"bytes,3,opt,name=ci"`
}

SessionSpec defines the desired state of Session

func (*SessionSpec) DeepCopy added in v0.19.3

func (in *SessionSpec) DeepCopy() *SessionSpec

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

func (*SessionSpec) DeepCopyInto added in v0.19.3

func (in *SessionSpec) DeepCopyInto(out *SessionSpec)

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

func (*SessionSpec) Descriptor added in v0.20.0

func (*SessionSpec) Descriptor() ([]byte, []int)

func (*SessionSpec) Marshal added in v0.20.0

func (m *SessionSpec) Marshal() (dAtA []byte, err error)

func (*SessionSpec) MarshalTo added in v0.20.0

func (m *SessionSpec) MarshalTo(dAtA []byte) (int, error)

func (*SessionSpec) MarshalToSizedBuffer added in v0.20.0

func (m *SessionSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*SessionSpec) ProtoMessage added in v0.20.0

func (*SessionSpec) ProtoMessage()

func (*SessionSpec) Reset added in v0.20.0

func (m *SessionSpec) Reset()

func (*SessionSpec) Size added in v0.20.0

func (m *SessionSpec) Size() (n int)

func (*SessionSpec) String added in v0.20.0

func (this *SessionSpec) String() string

func (*SessionSpec) Unmarshal added in v0.20.0

func (m *SessionSpec) Unmarshal(dAtA []byte) error

func (*SessionSpec) XXX_DiscardUnknown added in v0.20.0

func (m *SessionSpec) XXX_DiscardUnknown()

func (*SessionSpec) XXX_Marshal added in v0.20.0

func (m *SessionSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SessionSpec) XXX_Merge added in v0.20.0

func (m *SessionSpec) XXX_Merge(src proto.Message)

func (*SessionSpec) XXX_Size added in v0.20.0

func (m *SessionSpec) XXX_Size() int

func (*SessionSpec) XXX_Unmarshal added in v0.20.0

func (m *SessionSpec) XXX_Unmarshal(b []byte) error

type SessionStatus added in v0.19.3

type SessionStatus struct {
	// PID is the process identifier for this instance of Tilt.
	PID int64 `json:"pid" protobuf:"varint,1,opt,name=pid"`
	// StartTime is when the Tilt engine was first started.
	StartTime metav1.MicroTime `json:"startTime" protobuf:"bytes,2,opt,name=startTime"`
	// Targets are normalized representations of the servers/jobs managed by this Session.
	//
	// A resource from a Tiltfile might produce one or more targets. A target can also be shared across
	// multiple resources (e.g. an image referenced by multiple K8s pods).
	Targets []Target `json:"targets" protobuf:"bytes,3,rep,name=targets"`

	// Done indicates whether this Session has completed its work and is ready to exit.
	Done bool `json:"done" protobuf:"varint,4,opt,name=done"`
	// Error is a non-empty string when the Session is Done but encountered a failure as defined by the ExitCondition
	// from the SessionSpec.
	//
	// +optional
	Error string `json:"error,omitempty" protobuf:"bytes,5,opt,name=error"`
}

SessionStatus defines the observed state of Session

func (SessionStatus) CopyTo added in v0.19.3

func (*SessionStatus) DeepCopy added in v0.19.3

func (in *SessionStatus) DeepCopy() *SessionStatus

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

func (*SessionStatus) DeepCopyInto added in v0.19.3

func (in *SessionStatus) DeepCopyInto(out *SessionStatus)

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

func (*SessionStatus) Descriptor added in v0.20.0

func (*SessionStatus) Descriptor() ([]byte, []int)

func (*SessionStatus) Marshal added in v0.20.0

func (m *SessionStatus) Marshal() (dAtA []byte, err error)

func (*SessionStatus) MarshalTo added in v0.20.0

func (m *SessionStatus) MarshalTo(dAtA []byte) (int, error)

func (*SessionStatus) MarshalToSizedBuffer added in v0.20.0

func (m *SessionStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*SessionStatus) ProtoMessage added in v0.20.0

func (*SessionStatus) ProtoMessage()

func (*SessionStatus) Reset added in v0.20.0

func (m *SessionStatus) Reset()

func (*SessionStatus) Size added in v0.20.0

func (m *SessionStatus) Size() (n int)

func (*SessionStatus) String added in v0.20.0

func (this *SessionStatus) String() string

func (*SessionStatus) Unmarshal added in v0.20.0

func (m *SessionStatus) Unmarshal(dAtA []byte) error

func (*SessionStatus) XXX_DiscardUnknown added in v0.20.0

func (m *SessionStatus) XXX_DiscardUnknown()

func (*SessionStatus) XXX_Marshal added in v0.20.0

func (m *SessionStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SessionStatus) XXX_Merge added in v0.20.0

func (m *SessionStatus) XXX_Merge(src proto.Message)

func (*SessionStatus) XXX_Size added in v0.20.0

func (m *SessionStatus) XXX_Size() int

func (*SessionStatus) XXX_Unmarshal added in v0.20.0

func (m *SessionStatus) XXX_Unmarshal(b []byte) error

type StartOnSpec added in v0.20.8

type StartOnSpec struct {
	// StartAfter indicates that events before this time should be ignored.
	//
	// +optional
	StartAfter v1.Time `json:"startAfter,omitempty" protobuf:"bytes,1,opt,name=startAfter"`

	// UIButtons that can trigger a start/restart.
	UIButtons []string `json:"uiButtons" protobuf:"bytes,2,rep,name=uiButtons"`
}

StartOnSpec indicates the set of objects that can trigger a start/restart of this object.

func (*StartOnSpec) DeepCopy added in v0.20.8

func (in *StartOnSpec) DeepCopy() *StartOnSpec

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

func (*StartOnSpec) DeepCopyInto added in v0.20.8

func (in *StartOnSpec) DeepCopyInto(out *StartOnSpec)

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

func (*StartOnSpec) Descriptor added in v0.20.8

func (*StartOnSpec) Descriptor() ([]byte, []int)

func (*StartOnSpec) Marshal added in v0.20.8

func (m *StartOnSpec) Marshal() (dAtA []byte, err error)

func (*StartOnSpec) MarshalTo added in v0.20.8

func (m *StartOnSpec) MarshalTo(dAtA []byte) (int, error)

func (*StartOnSpec) MarshalToSizedBuffer added in v0.20.8

func (m *StartOnSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*StartOnSpec) ProtoMessage added in v0.20.8

func (*StartOnSpec) ProtoMessage()

func (*StartOnSpec) Reset added in v0.20.8

func (m *StartOnSpec) Reset()

func (*StartOnSpec) Size added in v0.20.8

func (m *StartOnSpec) Size() (n int)

func (*StartOnSpec) String added in v0.20.8

func (this *StartOnSpec) String() string

func (*StartOnSpec) Unmarshal added in v0.20.8

func (m *StartOnSpec) Unmarshal(dAtA []byte) error

func (*StartOnSpec) XXX_DiscardUnknown added in v0.20.8

func (m *StartOnSpec) XXX_DiscardUnknown()

func (*StartOnSpec) XXX_Marshal added in v0.20.8

func (m *StartOnSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StartOnSpec) XXX_Merge added in v0.20.8

func (m *StartOnSpec) XXX_Merge(src proto.Message)

func (*StartOnSpec) XXX_Size added in v0.20.8

func (m *StartOnSpec) XXX_Size() int

func (*StartOnSpec) XXX_Unmarshal added in v0.20.8

func (m *StartOnSpec) XXX_Unmarshal(b []byte) error

type StateSource added in v0.22.12

type StateSource struct {
	// State is stored in a ConfigMap.
	//
	// +optional
	ConfigMap *ConfigMapStateSource `json:"configMap,omitempty" protobuf:"bytes,1,opt,name=configMap"`
}

Describes where a ToggleButton's state is stored. Exactly one type of source must be set.

func (*StateSource) DeepCopy added in v0.22.12

func (in *StateSource) DeepCopy() *StateSource

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

func (*StateSource) DeepCopyInto added in v0.22.12

func (in *StateSource) DeepCopyInto(out *StateSource)

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

func (*StateSource) Descriptor added in v0.22.12

func (*StateSource) Descriptor() ([]byte, []int)

func (*StateSource) Marshal added in v0.22.12

func (m *StateSource) Marshal() (dAtA []byte, err error)

func (*StateSource) MarshalTo added in v0.22.12

func (m *StateSource) MarshalTo(dAtA []byte) (int, error)

func (*StateSource) MarshalToSizedBuffer added in v0.22.12

func (m *StateSource) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*StateSource) ProtoMessage added in v0.22.12

func (*StateSource) ProtoMessage()

func (*StateSource) Reset added in v0.22.12

func (m *StateSource) Reset()

func (*StateSource) Size added in v0.22.12

func (m *StateSource) Size() (n int)

func (*StateSource) String added in v0.22.12

func (this *StateSource) String() string

func (*StateSource) Unmarshal added in v0.22.12

func (m *StateSource) Unmarshal(dAtA []byte) error

func (*StateSource) XXX_DiscardUnknown added in v0.22.12

func (m *StateSource) XXX_DiscardUnknown()

func (*StateSource) XXX_Marshal added in v0.22.12

func (m *StateSource) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StateSource) XXX_Merge added in v0.22.12

func (m *StateSource) XXX_Merge(src proto.Message)

func (*StateSource) XXX_Size added in v0.22.12

func (m *StateSource) XXX_Size() int

func (*StateSource) XXX_Unmarshal added in v0.22.12

func (m *StateSource) XXX_Unmarshal(b []byte) error

type StopOnSpec added in v0.25.0

type StopOnSpec struct {
	// UIButtons that can trigger a stop.
	UIButtons []string `json:"uiButtons" protobuf:"bytes,2,rep,name=uiButtons"`
}

func (*StopOnSpec) DeepCopy added in v0.25.0

func (in *StopOnSpec) DeepCopy() *StopOnSpec

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

func (*StopOnSpec) DeepCopyInto added in v0.25.0

func (in *StopOnSpec) DeepCopyInto(out *StopOnSpec)

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

func (*StopOnSpec) Descriptor added in v0.25.0

func (*StopOnSpec) Descriptor() ([]byte, []int)

func (*StopOnSpec) Marshal added in v0.25.0

func (m *StopOnSpec) Marshal() (dAtA []byte, err error)

func (*StopOnSpec) MarshalTo added in v0.25.0

func (m *StopOnSpec) MarshalTo(dAtA []byte) (int, error)

func (*StopOnSpec) MarshalToSizedBuffer added in v0.25.0

func (m *StopOnSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*StopOnSpec) ProtoMessage added in v0.25.0

func (*StopOnSpec) ProtoMessage()

func (*StopOnSpec) Reset added in v0.25.0

func (m *StopOnSpec) Reset()

func (*StopOnSpec) Size added in v0.25.0

func (m *StopOnSpec) Size() (n int)

func (*StopOnSpec) String added in v0.25.0

func (this *StopOnSpec) String() string

func (*StopOnSpec) Unmarshal added in v0.25.0

func (m *StopOnSpec) Unmarshal(dAtA []byte) error

func (*StopOnSpec) XXX_DiscardUnknown added in v0.25.0

func (m *StopOnSpec) XXX_DiscardUnknown()

func (*StopOnSpec) XXX_Marshal added in v0.25.0

func (m *StopOnSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StopOnSpec) XXX_Merge added in v0.25.0

func (m *StopOnSpec) XXX_Merge(src proto.Message)

func (*StopOnSpec) XXX_Size added in v0.25.0

func (m *StopOnSpec) XXX_Size() int

func (*StopOnSpec) XXX_Unmarshal added in v0.25.0

func (m *StopOnSpec) XXX_Unmarshal(b []byte) error

type TCPSocketAction added in v0.18.11

type TCPSocketAction struct {
	// Number or name of the port to access on the container.
	// Number must be in the range 1 to 65535.
	Port int32 `json:"port" protobuf:"bytes,1,opt,name=port"`
	// Optional: Host name to connect to, defaults to the pod IP.
	// +optional
	Host string `json:"host,omitempty" protobuf:"bytes,2,opt,name=host"`
}

TCPSocketAction describes an action based on opening a socket

func (*TCPSocketAction) DeepCopy added in v0.18.11

func (in *TCPSocketAction) DeepCopy() *TCPSocketAction

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

func (*TCPSocketAction) DeepCopyInto added in v0.18.11

func (in *TCPSocketAction) DeepCopyInto(out *TCPSocketAction)

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

func (*TCPSocketAction) Descriptor added in v0.20.0

func (*TCPSocketAction) Descriptor() ([]byte, []int)

func (*TCPSocketAction) Marshal added in v0.20.0

func (m *TCPSocketAction) Marshal() (dAtA []byte, err error)

func (*TCPSocketAction) MarshalTo added in v0.20.0

func (m *TCPSocketAction) MarshalTo(dAtA []byte) (int, error)

func (*TCPSocketAction) MarshalToSizedBuffer added in v0.20.0

func (m *TCPSocketAction) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*TCPSocketAction) ProtoMessage added in v0.20.0

func (*TCPSocketAction) ProtoMessage()

func (*TCPSocketAction) Reset added in v0.20.0

func (m *TCPSocketAction) Reset()

func (*TCPSocketAction) Size added in v0.20.0

func (m *TCPSocketAction) Size() (n int)

func (*TCPSocketAction) String added in v0.20.0

func (this *TCPSocketAction) String() string

func (*TCPSocketAction) Unmarshal added in v0.20.0

func (m *TCPSocketAction) Unmarshal(dAtA []byte) error

func (*TCPSocketAction) XXX_DiscardUnknown added in v0.20.0

func (m *TCPSocketAction) XXX_DiscardUnknown()

func (*TCPSocketAction) XXX_Marshal added in v0.20.0

func (m *TCPSocketAction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TCPSocketAction) XXX_Merge added in v0.20.0

func (m *TCPSocketAction) XXX_Merge(src proto.Message)

func (*TCPSocketAction) XXX_Size added in v0.20.0

func (m *TCPSocketAction) XXX_Size() int

func (*TCPSocketAction) XXX_Unmarshal added in v0.20.0

func (m *TCPSocketAction) XXX_Unmarshal(b []byte) error

type Target added in v0.19.3

type Target struct {
	// Name is the name of the target; this is auto-generated from Tiltfile resources.
	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
	// Type is the execution profile for this resource.
	//
	// Job targets run to completion (e.g. a build script or database migration script).
	// Server targets run indefinitely (e.g. an HTTP server).
	Type TargetType `json:"type" protobuf:"bytes,2,opt,name=type,casttype=TargetType"`
	// Resources are one or more Tiltfile resources that this target is associated with.
	Resources []string `json:"resources" protobuf:"bytes,3,rep,name=resources"`
	// State provides information about the current status of the target.
	State TargetState `json:"state" protobuf:"bytes,4,opt,name=state"`
}

Target is a server or job whose execution is managed as part of this Session.

func (*Target) DeepCopy added in v0.19.3

func (in *Target) DeepCopy() *Target

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

func (*Target) DeepCopyInto added in v0.19.3

func (in *Target) DeepCopyInto(out *Target)

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

func (*Target) Descriptor added in v0.20.0

func (*Target) Descriptor() ([]byte, []int)

func (*Target) Marshal added in v0.20.0

func (m *Target) Marshal() (dAtA []byte, err error)

func (*Target) MarshalTo added in v0.20.0

func (m *Target) MarshalTo(dAtA []byte) (int, error)

func (*Target) MarshalToSizedBuffer added in v0.20.0

func (m *Target) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Target) ProtoMessage added in v0.20.0

func (*Target) ProtoMessage()

func (*Target) Reset added in v0.20.0

func (m *Target) Reset()

func (*Target) Size added in v0.20.0

func (m *Target) Size() (n int)

func (*Target) String added in v0.20.0

func (this *Target) String() string

func (*Target) Unmarshal added in v0.20.0

func (m *Target) Unmarshal(dAtA []byte) error

func (*Target) XXX_DiscardUnknown added in v0.20.0

func (m *Target) XXX_DiscardUnknown()

func (*Target) XXX_Marshal added in v0.20.0

func (m *Target) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Target) XXX_Merge added in v0.20.0

func (m *Target) XXX_Merge(src proto.Message)

func (*Target) XXX_Size added in v0.20.0

func (m *Target) XXX_Size() int

func (*Target) XXX_Unmarshal added in v0.20.0

func (m *Target) XXX_Unmarshal(b []byte) error

type TargetGraceStatus added in v0.31.0

type TargetGraceStatus string
const (
	// No grace period applies to the target.
	TargetGraceNotApplicable TargetGraceStatus = ""

	// The target is in the error state, but has not
	// yet exceeded the grace period.
	TargetGraceTolerated TargetGraceStatus = "Tolerated"

	// The target was in an error state longer than
	// the grace perod.
	TargetGraceExceeded TargetGraceStatus = "Exceeded"
)

type TargetState added in v0.19.3

type TargetState struct {
	// Waiting being non-nil indicates that the next execution of the target has been queued but not yet started.
	//
	// +optional
	Waiting *TargetStateWaiting `json:"waiting,omitempty" protobuf:"bytes,1,opt,name=waiting"`
	// Active being non-nil indicates that the target is currently executing.
	//
	// +optional
	Active *TargetStateActive `json:"active,omitempty" protobuf:"bytes,2,opt,name=active"`
	// Terminated being non-nil indicates that the target finished execution either normally or due to failure.
	//
	// +optional
	Terminated *TargetStateTerminated `json:"terminated,omitempty" protobuf:"bytes,3,opt,name=terminated"`

	// Disabled being non-nil indicates that the target is disabled.
	//
	// +optional
	Disabled *TargetStateDisabled `json:"disabled,omitempty" protobuf:"bytes,4,opt,name=disabled"`
}

TargetState describes the current execution status for a target.

Either EXACTLY one of Waiting, Active, Disabled, or Terminated will be populated or NONE of them will be. In the event that all states are null, the target is currently inactive or disabled and should not be expected to execute.

func (*TargetState) DeepCopy added in v0.19.3

func (in *TargetState) DeepCopy() *TargetState

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

func (*TargetState) DeepCopyInto added in v0.19.3

func (in *TargetState) DeepCopyInto(out *TargetState)

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

func (*TargetState) Descriptor added in v0.20.0

func (*TargetState) Descriptor() ([]byte, []int)

func (*TargetState) Marshal added in v0.20.0

func (m *TargetState) Marshal() (dAtA []byte, err error)

func (*TargetState) MarshalTo added in v0.20.0

func (m *TargetState) MarshalTo(dAtA []byte) (int, error)

func (*TargetState) MarshalToSizedBuffer added in v0.20.0

func (m *TargetState) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*TargetState) ProtoMessage added in v0.20.0

func (*TargetState) ProtoMessage()

func (*TargetState) Reset added in v0.20.0

func (m *TargetState) Reset()

func (*TargetState) Size added in v0.20.0

func (m *TargetState) Size() (n int)

func (*TargetState) String added in v0.20.0

func (this *TargetState) String() string

func (*TargetState) Unmarshal added in v0.20.0

func (m *TargetState) Unmarshal(dAtA []byte) error

func (*TargetState) XXX_DiscardUnknown added in v0.20.0

func (m *TargetState) XXX_DiscardUnknown()

func (*TargetState) XXX_Marshal added in v0.20.0

func (m *TargetState) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TargetState) XXX_Merge added in v0.20.0

func (m *TargetState) XXX_Merge(src proto.Message)

func (*TargetState) XXX_Size added in v0.20.0

func (m *TargetState) XXX_Size() int

func (*TargetState) XXX_Unmarshal added in v0.20.0

func (m *TargetState) XXX_Unmarshal(b []byte) error

type TargetStateActive added in v0.19.3

type TargetStateActive struct {
	// StartTime is when execution began.
	StartTime metav1.MicroTime `json:"startTime" protobuf:"bytes,1,opt,name=startTime"`
	// Ready indicates that the target has passed readiness checks.
	//
	// If the target does not use or support readiness checks, this is always true.
	Ready bool `json:"ready" protobuf:"varint,2,opt,name=ready"`
}

TargetStateActive is a target that is currently running but has not yet finished.

func (*TargetStateActive) DeepCopy added in v0.19.3

func (in *TargetStateActive) DeepCopy() *TargetStateActive

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

func (*TargetStateActive) DeepCopyInto added in v0.19.3

func (in *TargetStateActive) DeepCopyInto(out *TargetStateActive)

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

func (*TargetStateActive) Descriptor added in v0.20.0

func (*TargetStateActive) Descriptor() ([]byte, []int)

func (*TargetStateActive) Marshal added in v0.20.0

func (m *TargetStateActive) Marshal() (dAtA []byte, err error)

func (*TargetStateActive) MarshalTo added in v0.20.0

func (m *TargetStateActive) MarshalTo(dAtA []byte) (int, error)

func (*TargetStateActive) MarshalToSizedBuffer added in v0.20.0

func (m *TargetStateActive) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*TargetStateActive) ProtoMessage added in v0.20.0

func (*TargetStateActive) ProtoMessage()

func (*TargetStateActive) Reset added in v0.20.0

func (m *TargetStateActive) Reset()

func (*TargetStateActive) Size added in v0.20.0

func (m *TargetStateActive) Size() (n int)

func (*TargetStateActive) String added in v0.20.0

func (this *TargetStateActive) String() string

func (*TargetStateActive) Unmarshal added in v0.20.0

func (m *TargetStateActive) Unmarshal(dAtA []byte) error

func (*TargetStateActive) XXX_DiscardUnknown added in v0.20.0

func (m *TargetStateActive) XXX_DiscardUnknown()

func (*TargetStateActive) XXX_Marshal added in v0.20.0

func (m *TargetStateActive) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TargetStateActive) XXX_Merge added in v0.20.0

func (m *TargetStateActive) XXX_Merge(src proto.Message)

func (*TargetStateActive) XXX_Size added in v0.20.0

func (m *TargetStateActive) XXX_Size() int

func (*TargetStateActive) XXX_Unmarshal added in v0.20.0

func (m *TargetStateActive) XXX_Unmarshal(b []byte) error

type TargetStateDisabled added in v0.24.0

type TargetStateDisabled struct {
}

TargetStateDisabled is a target that has been disabled.

func (*TargetStateDisabled) DeepCopy added in v0.24.0

func (in *TargetStateDisabled) DeepCopy() *TargetStateDisabled

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

func (*TargetStateDisabled) DeepCopyInto added in v0.24.0

func (in *TargetStateDisabled) DeepCopyInto(out *TargetStateDisabled)

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

func (*TargetStateDisabled) Descriptor added in v0.24.0

func (*TargetStateDisabled) Descriptor() ([]byte, []int)

func (*TargetStateDisabled) Marshal added in v0.24.0

func (m *TargetStateDisabled) Marshal() (dAtA []byte, err error)

func (*TargetStateDisabled) MarshalTo added in v0.24.0

func (m *TargetStateDisabled) MarshalTo(dAtA []byte) (int, error)

func (*TargetStateDisabled) MarshalToSizedBuffer added in v0.24.0

func (m *TargetStateDisabled) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*TargetStateDisabled) ProtoMessage added in v0.24.0

func (*TargetStateDisabled) ProtoMessage()

func (*TargetStateDisabled) Reset added in v0.24.0

func (m *TargetStateDisabled) Reset()

func (*TargetStateDisabled) Size added in v0.24.0

func (m *TargetStateDisabled) Size() (n int)

func (*TargetStateDisabled) String added in v0.24.0

func (this *TargetStateDisabled) String() string

func (*TargetStateDisabled) Unmarshal added in v0.24.0

func (m *TargetStateDisabled) Unmarshal(dAtA []byte) error

func (*TargetStateDisabled) XXX_DiscardUnknown added in v0.24.0

func (m *TargetStateDisabled) XXX_DiscardUnknown()

func (*TargetStateDisabled) XXX_Marshal added in v0.24.0

func (m *TargetStateDisabled) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TargetStateDisabled) XXX_Merge added in v0.24.0

func (m *TargetStateDisabled) XXX_Merge(src proto.Message)

func (*TargetStateDisabled) XXX_Size added in v0.24.0

func (m *TargetStateDisabled) XXX_Size() int

func (*TargetStateDisabled) XXX_Unmarshal added in v0.24.0

func (m *TargetStateDisabled) XXX_Unmarshal(b []byte) error

type TargetStateTerminated added in v0.19.3

type TargetStateTerminated struct {
	// StartTime is when the target began executing.
	StartTime metav1.MicroTime `json:"startTime" protobuf:"bytes,1,opt,name=startTime"`
	// FinishTime is when the target stopped executing.
	FinishTime metav1.MicroTime `json:"finishTime" protobuf:"bytes,2,opt,name=finishTime"`
	// Error is a non-empty string if the target encountered a failure during execution that caused it to stop.
	//
	// For targets of type TargetTypeServer, this is always populated, as the target is expected to run indefinitely,
	// and thus any termination is an error.
	//
	// +optional
	Error string `json:"error,omitempty" protobuf:"bytes,3,opt,name=error"`

	// Errors may be tolerated if the target is still within a grace period set on
	// the session.
	GraceStatus TargetGraceStatus `json:"graceStatus,omitempty" protobuf:"bytes,4,opt,name=graceStatus,casttype=TargetGraceStatus"`
}

TargetStateTerminated is a target that finished running, either because it completed successfully or encountered an error.

func (*TargetStateTerminated) DeepCopy added in v0.19.3

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

func (*TargetStateTerminated) DeepCopyInto added in v0.19.3

func (in *TargetStateTerminated) DeepCopyInto(out *TargetStateTerminated)

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

func (*TargetStateTerminated) Descriptor added in v0.20.0

func (*TargetStateTerminated) Descriptor() ([]byte, []int)

func (*TargetStateTerminated) Marshal added in v0.20.0

func (m *TargetStateTerminated) Marshal() (dAtA []byte, err error)

func (*TargetStateTerminated) MarshalTo added in v0.20.0

func (m *TargetStateTerminated) MarshalTo(dAtA []byte) (int, error)

func (*TargetStateTerminated) MarshalToSizedBuffer added in v0.20.0

func (m *TargetStateTerminated) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*TargetStateTerminated) ProtoMessage added in v0.20.0

func (*TargetStateTerminated) ProtoMessage()

func (*TargetStateTerminated) Reset added in v0.20.0

func (m *TargetStateTerminated) Reset()

func (*TargetStateTerminated) Size added in v0.20.0

func (m *TargetStateTerminated) Size() (n int)

func (*TargetStateTerminated) String added in v0.20.0

func (this *TargetStateTerminated) String() string

func (*TargetStateTerminated) Unmarshal added in v0.20.0

func (m *TargetStateTerminated) Unmarshal(dAtA []byte) error

func (*TargetStateTerminated) XXX_DiscardUnknown added in v0.20.0

func (m *TargetStateTerminated) XXX_DiscardUnknown()

func (*TargetStateTerminated) XXX_Marshal added in v0.20.0

func (m *TargetStateTerminated) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TargetStateTerminated) XXX_Merge added in v0.20.0

func (m *TargetStateTerminated) XXX_Merge(src proto.Message)

func (*TargetStateTerminated) XXX_Size added in v0.20.0

func (m *TargetStateTerminated) XXX_Size() int

func (*TargetStateTerminated) XXX_Unmarshal added in v0.20.0

func (m *TargetStateTerminated) XXX_Unmarshal(b []byte) error

type TargetStateWaiting added in v0.19.3

type TargetStateWaiting struct {
	// WaitReason is a description for why the target is waiting and not yet active.
	//
	// This is NOT the "cause" or "trigger" for the target being invoked.
	WaitReason string `json:"waitReason" protobuf:"bytes,1,opt,name=waitReason"`
}

TargetStateWaiting is a target that has been enqueued for execution but has not yet started.

func (*TargetStateWaiting) DeepCopy added in v0.19.3

func (in *TargetStateWaiting) DeepCopy() *TargetStateWaiting

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

func (*TargetStateWaiting) DeepCopyInto added in v0.19.3

func (in *TargetStateWaiting) DeepCopyInto(out *TargetStateWaiting)

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

func (*TargetStateWaiting) Descriptor added in v0.20.0

func (*TargetStateWaiting) Descriptor() ([]byte, []int)

func (*TargetStateWaiting) Marshal added in v0.20.0

func (m *TargetStateWaiting) Marshal() (dAtA []byte, err error)

func (*TargetStateWaiting) MarshalTo added in v0.20.0

func (m *TargetStateWaiting) MarshalTo(dAtA []byte) (int, error)

func (*TargetStateWaiting) MarshalToSizedBuffer added in v0.20.0

func (m *TargetStateWaiting) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*TargetStateWaiting) ProtoMessage added in v0.20.0

func (*TargetStateWaiting) ProtoMessage()

func (*TargetStateWaiting) Reset added in v0.20.0

func (m *TargetStateWaiting) Reset()

func (*TargetStateWaiting) Size added in v0.20.0

func (m *TargetStateWaiting) Size() (n int)

func (*TargetStateWaiting) String added in v0.20.0

func (this *TargetStateWaiting) String() string

func (*TargetStateWaiting) Unmarshal added in v0.20.0

func (m *TargetStateWaiting) Unmarshal(dAtA []byte) error

func (*TargetStateWaiting) XXX_DiscardUnknown added in v0.20.0

func (m *TargetStateWaiting) XXX_DiscardUnknown()

func (*TargetStateWaiting) XXX_Marshal added in v0.20.0

func (m *TargetStateWaiting) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TargetStateWaiting) XXX_Merge added in v0.20.0

func (m *TargetStateWaiting) XXX_Merge(src proto.Message)

func (*TargetStateWaiting) XXX_Size added in v0.20.0

func (m *TargetStateWaiting) XXX_Size() int

func (*TargetStateWaiting) XXX_Unmarshal added in v0.20.0

func (m *TargetStateWaiting) XXX_Unmarshal(b []byte) error

type TargetType added in v0.19.3

type TargetType string

TargetType describes a high-level categorization about the expected execution behavior for the target.

const (
	// TargetTypeJob is a target that is expected to run to completion.
	TargetTypeJob TargetType = "job"
	// TargetTypeServer is a target that runs indefinitely.
	TargetTypeServer TargetType = "server"
)

type TiltBuild added in v0.20.2

type TiltBuild struct {
	// A semantic version string.
	// +optional
	Version string `json:"version,omitempty" protobuf:"bytes,1,opt,name=version"`

	// The Git digest of the commit this binary was built at.
	// +optional
	CommitSHA string `json:"commitSHA,omitempty" protobuf:"bytes,2,opt,name=commitSHA"`

	// A human-readable string representing when the binary was built.
	// +optional
	Date string `json:"date,omitempty" protobuf:"bytes,3,opt,name=date"`

	// Indicates whether this is a development build (true) or an official release (false).
	// +optional
	Dev bool `json:"dev,omitempty" protobuf:"varint,4,opt,name=dev"`
}

Information about the running tilt binary.

func (*TiltBuild) DeepCopy added in v0.20.2

func (in *TiltBuild) DeepCopy() *TiltBuild

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

func (*TiltBuild) DeepCopyInto added in v0.20.2

func (in *TiltBuild) DeepCopyInto(out *TiltBuild)

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

func (*TiltBuild) Descriptor added in v0.20.2

func (*TiltBuild) Descriptor() ([]byte, []int)

func (*TiltBuild) Marshal added in v0.20.2

func (m *TiltBuild) Marshal() (dAtA []byte, err error)

func (*TiltBuild) MarshalTo added in v0.20.2

func (m *TiltBuild) MarshalTo(dAtA []byte) (int, error)

func (*TiltBuild) MarshalToSizedBuffer added in v0.20.2

func (m *TiltBuild) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*TiltBuild) ProtoMessage added in v0.20.2

func (*TiltBuild) ProtoMessage()

func (*TiltBuild) Reset added in v0.20.2

func (m *TiltBuild) Reset()

func (*TiltBuild) Size added in v0.20.2

func (m *TiltBuild) Size() (n int)

func (*TiltBuild) String added in v0.20.2

func (this *TiltBuild) String() string

func (*TiltBuild) Unmarshal added in v0.20.2

func (m *TiltBuild) Unmarshal(dAtA []byte) error

func (*TiltBuild) XXX_DiscardUnknown added in v0.20.2

func (m *TiltBuild) XXX_DiscardUnknown()

func (*TiltBuild) XXX_Marshal added in v0.20.2

func (m *TiltBuild) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TiltBuild) XXX_Merge added in v0.20.2

func (m *TiltBuild) XXX_Merge(src proto.Message)

func (*TiltBuild) XXX_Size added in v0.20.2

func (m *TiltBuild) XXX_Size() int

func (*TiltBuild) XXX_Unmarshal added in v0.20.2

func (m *TiltBuild) XXX_Unmarshal(b []byte) error

type Tiltfile added in v0.22.1

type Tiltfile struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Spec   TiltfileSpec   `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
	Status TiltfileStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
}

Tiltfile is the main way users add services to Tilt.

The Tiltfile evaluator executes the Tiltfile, then adds all the objects it creates as children of the Tiltfile object.

+k8s:openapi-gen=true

func (*Tiltfile) DeepCopy added in v0.22.1

func (in *Tiltfile) DeepCopy() *Tiltfile

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

func (*Tiltfile) DeepCopyInto added in v0.22.1

func (in *Tiltfile) DeepCopyInto(out *Tiltfile)

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

func (*Tiltfile) DeepCopyObject added in v0.22.1

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

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

func (*Tiltfile) Descriptor added in v0.22.1

func (*Tiltfile) Descriptor() ([]byte, []int)

func (*Tiltfile) GetGroupVersionResource added in v0.22.1

func (in *Tiltfile) GetGroupVersionResource() schema.GroupVersionResource

func (*Tiltfile) GetObjectMeta added in v0.22.1

func (in *Tiltfile) GetObjectMeta() *metav1.ObjectMeta

func (*Tiltfile) GetSingularName added in v0.33.0

func (in *Tiltfile) GetSingularName() string

func (*Tiltfile) GetStatus added in v0.22.1

func (in *Tiltfile) GetStatus() resource.StatusSubResource

func (*Tiltfile) IsStorageVersion added in v0.22.1

func (in *Tiltfile) IsStorageVersion() bool

func (*Tiltfile) Marshal added in v0.22.1

func (m *Tiltfile) Marshal() (dAtA []byte, err error)

func (*Tiltfile) MarshalTo added in v0.22.1

func (m *Tiltfile) MarshalTo(dAtA []byte) (int, error)

func (*Tiltfile) MarshalToSizedBuffer added in v0.22.1

func (m *Tiltfile) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Tiltfile) NamespaceScoped added in v0.22.1

func (in *Tiltfile) NamespaceScoped() bool

func (*Tiltfile) New added in v0.22.1

func (in *Tiltfile) New() runtime.Object

func (*Tiltfile) NewList added in v0.22.1

func (in *Tiltfile) NewList() runtime.Object

func (*Tiltfile) ProtoMessage added in v0.22.1

func (*Tiltfile) ProtoMessage()

func (*Tiltfile) Reset added in v0.22.1

func (m *Tiltfile) Reset()

func (*Tiltfile) Size added in v0.22.1

func (m *Tiltfile) Size() (n int)

func (*Tiltfile) String added in v0.22.1

func (this *Tiltfile) String() string

func (*Tiltfile) Unmarshal added in v0.22.1

func (m *Tiltfile) Unmarshal(dAtA []byte) error

func (*Tiltfile) Validate added in v0.22.1

func (in *Tiltfile) Validate(ctx context.Context) field.ErrorList

func (*Tiltfile) XXX_DiscardUnknown added in v0.22.1

func (m *Tiltfile) XXX_DiscardUnknown()

func (*Tiltfile) XXX_Marshal added in v0.22.1

func (m *Tiltfile) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Tiltfile) XXX_Merge added in v0.22.1

func (m *Tiltfile) XXX_Merge(src proto.Message)

func (*Tiltfile) XXX_Size added in v0.22.1

func (m *Tiltfile) XXX_Size() int

func (*Tiltfile) XXX_Unmarshal added in v0.22.1

func (m *Tiltfile) XXX_Unmarshal(b []byte) error

type TiltfileList added in v0.22.1

type TiltfileList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Items []Tiltfile `json:"items" protobuf:"bytes,2,rep,name=items"`
}

TiltfileList +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*TiltfileList) DeepCopy added in v0.22.1

func (in *TiltfileList) DeepCopy() *TiltfileList

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

func (*TiltfileList) DeepCopyInto added in v0.22.1

func (in *TiltfileList) DeepCopyInto(out *TiltfileList)

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

func (*TiltfileList) DeepCopyObject added in v0.22.1

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

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

func (*TiltfileList) Descriptor added in v0.22.1

func (*TiltfileList) Descriptor() ([]byte, []int)

func (*TiltfileList) GetListMeta added in v0.22.1

func (in *TiltfileList) GetListMeta() *metav1.ListMeta

func (*TiltfileList) Marshal added in v0.22.1

func (m *TiltfileList) Marshal() (dAtA []byte, err error)

func (*TiltfileList) MarshalTo added in v0.22.1

func (m *TiltfileList) MarshalTo(dAtA []byte) (int, error)

func (*TiltfileList) MarshalToSizedBuffer added in v0.22.1

func (m *TiltfileList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*TiltfileList) ProtoMessage added in v0.22.1

func (*TiltfileList) ProtoMessage()

func (*TiltfileList) Reset added in v0.22.1

func (m *TiltfileList) Reset()

func (*TiltfileList) Size added in v0.22.1

func (m *TiltfileList) Size() (n int)

func (*TiltfileList) String added in v0.22.1

func (this *TiltfileList) String() string

func (*TiltfileList) Unmarshal added in v0.22.1

func (m *TiltfileList) Unmarshal(dAtA []byte) error

func (*TiltfileList) XXX_DiscardUnknown added in v0.22.1

func (m *TiltfileList) XXX_DiscardUnknown()

func (*TiltfileList) XXX_Marshal added in v0.22.1

func (m *TiltfileList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TiltfileList) XXX_Merge added in v0.22.1

func (m *TiltfileList) XXX_Merge(src proto.Message)

func (*TiltfileList) XXX_Size added in v0.22.1

func (m *TiltfileList) XXX_Size() int

func (*TiltfileList) XXX_Unmarshal added in v0.22.1

func (m *TiltfileList) XXX_Unmarshal(b []byte) error

type TiltfileSpec added in v0.22.1

type TiltfileSpec struct {
	// The path to the Tiltfile on disk.
	Path string `json:"path" protobuf:"bytes,1,opt,name=path"`

	// A set of labels to apply to all objects owned by this Tiltfile.
	// +optional
	Labels map[string]string `json:"labels,omitempty" protobuf:"bytes,2,rep,name=labels"`

	// Objects that can trigger a re-execution of this Tiltfile.
	// +optional
	RestartOn *RestartOnSpec `json:"restartOn,omitempty" protobuf:"bytes,3,opt,name=restartOn"`

	// Arguments to the Tiltfile.
	//
	// Arguments can be positional (['a', 'b', 'c']) or flag-based ('--to-edit=a').
	// By default, a list of arguments indicates the list of services in the tiltfile
	// that should be enabled.
	//
	// +optional
	Args []string `json:"args,omitempty" protobuf:"bytes,4,rep,name=args"`

	// Objects that can stop execution of this Tiltfile.
	//
	// +optional
	StopOn *StopOnSpec `json:"stopOn,omitempty" protobuf:"bytes,5,opt,name=stopOn"`
}

TiltfileSpec defines the desired state of Tiltfile

func (*TiltfileSpec) DeepCopy added in v0.22.1

func (in *TiltfileSpec) DeepCopy() *TiltfileSpec

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

func (*TiltfileSpec) DeepCopyInto added in v0.22.1

func (in *TiltfileSpec) DeepCopyInto(out *TiltfileSpec)

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

func (*TiltfileSpec) Descriptor added in v0.22.1

func (*TiltfileSpec) Descriptor() ([]byte, []int)

func (*TiltfileSpec) Marshal added in v0.22.1

func (m *TiltfileSpec) Marshal() (dAtA []byte, err error)

func (*TiltfileSpec) MarshalTo added in v0.22.1

func (m *TiltfileSpec) MarshalTo(dAtA []byte) (int, error)

func (*TiltfileSpec) MarshalToSizedBuffer added in v0.22.1

func (m *TiltfileSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*TiltfileSpec) ProtoMessage added in v0.22.1

func (*TiltfileSpec) ProtoMessage()

func (*TiltfileSpec) Reset added in v0.22.1

func (m *TiltfileSpec) Reset()

func (*TiltfileSpec) Size added in v0.22.1

func (m *TiltfileSpec) Size() (n int)

func (*TiltfileSpec) String added in v0.22.1

func (this *TiltfileSpec) String() string

func (*TiltfileSpec) Unmarshal added in v0.22.1

func (m *TiltfileSpec) Unmarshal(dAtA []byte) error

func (*TiltfileSpec) XXX_DiscardUnknown added in v0.22.1

func (m *TiltfileSpec) XXX_DiscardUnknown()

func (*TiltfileSpec) XXX_Marshal added in v0.22.1

func (m *TiltfileSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TiltfileSpec) XXX_Merge added in v0.22.1

func (m *TiltfileSpec) XXX_Merge(src proto.Message)

func (*TiltfileSpec) XXX_Size added in v0.22.1

func (m *TiltfileSpec) XXX_Size() int

func (*TiltfileSpec) XXX_Unmarshal added in v0.22.1

func (m *TiltfileSpec) XXX_Unmarshal(b []byte) error

type TiltfileStateRunning added in v0.22.1

type TiltfileStateRunning struct {
	// The reason why this tiltfile was built.
	// May contain more than one reason.
	// +optional
	Reasons []string `json:"reasons,omitempty" protobuf:"bytes,1,rep,name=reasons"`

	// Time at which previous execution of the command started.
	StartedAt metav1.MicroTime `json:"startedAt,omitempty" protobuf:"bytes,2,opt,name=startedAt"`
}

TiltfileStateRunning is a running state of a tiltfile execution.

func (*TiltfileStateRunning) DeepCopy added in v0.22.1

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

func (*TiltfileStateRunning) DeepCopyInto added in v0.22.1

func (in *TiltfileStateRunning) DeepCopyInto(out *TiltfileStateRunning)

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

func (*TiltfileStateRunning) Descriptor added in v0.22.1

func (*TiltfileStateRunning) Descriptor() ([]byte, []int)

func (*TiltfileStateRunning) Marshal added in v0.22.1

func (m *TiltfileStateRunning) Marshal() (dAtA []byte, err error)

func (*TiltfileStateRunning) MarshalTo added in v0.22.1

func (m *TiltfileStateRunning) MarshalTo(dAtA []byte) (int, error)

func (*TiltfileStateRunning) MarshalToSizedBuffer added in v0.22.1

func (m *TiltfileStateRunning) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*TiltfileStateRunning) ProtoMessage added in v0.22.1

func (*TiltfileStateRunning) ProtoMessage()

func (*TiltfileStateRunning) Reset added in v0.22.1

func (m *TiltfileStateRunning) Reset()

func (*TiltfileStateRunning) Size added in v0.22.1

func (m *TiltfileStateRunning) Size() (n int)

func (*TiltfileStateRunning) String added in v0.22.1

func (this *TiltfileStateRunning) String() string

func (*TiltfileStateRunning) Unmarshal added in v0.22.1

func (m *TiltfileStateRunning) Unmarshal(dAtA []byte) error

func (*TiltfileStateRunning) XXX_DiscardUnknown added in v0.22.1

func (m *TiltfileStateRunning) XXX_DiscardUnknown()

func (*TiltfileStateRunning) XXX_Marshal added in v0.22.1

func (m *TiltfileStateRunning) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TiltfileStateRunning) XXX_Merge added in v0.22.1

func (m *TiltfileStateRunning) XXX_Merge(src proto.Message)

func (*TiltfileStateRunning) XXX_Size added in v0.22.1

func (m *TiltfileStateRunning) XXX_Size() int

func (*TiltfileStateRunning) XXX_Unmarshal added in v0.22.1

func (m *TiltfileStateRunning) XXX_Unmarshal(b []byte) error

type TiltfileStateTerminated added in v0.22.1

type TiltfileStateTerminated struct {
	// The reasons why this tiltfile was built.
	// May contain more than one reason.
	// +optional
	Reasons []string `json:"reasons,omitempty" protobuf:"bytes,1,rep,name=reasons"`

	// Error message if this tiltfile execution failed.
	// +optional
	Error string `json:"error,omitempty" protobuf:"bytes,2,opt,name=error"`

	// Time at which previous execution of the command started.
	StartedAt metav1.MicroTime `json:"startedAt,omitempty" protobuf:"bytes,3,opt,name=startedAt"`

	// Time at which the command last terminated.
	FinishedAt metav1.MicroTime `json:"finishedAt,omitempty" protobuf:"bytes,4,opt,name=finishedAt"`

	// Number of warnings generated by this Tiltfile.
	// (brief) reason the process is terminated
	// +optional
	WarningCount int32 `json:"warningCount,omitempty" protobuf:"varint,5,opt,name=warningCount"`
}

TiltfileStateTerminated is a terminated state of a tiltfile execution.

func (*TiltfileStateTerminated) DeepCopy added in v0.22.1

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

func (*TiltfileStateTerminated) DeepCopyInto added in v0.22.1

func (in *TiltfileStateTerminated) DeepCopyInto(out *TiltfileStateTerminated)

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

func (*TiltfileStateTerminated) Descriptor added in v0.22.1

func (*TiltfileStateTerminated) Descriptor() ([]byte, []int)

func (*TiltfileStateTerminated) Marshal added in v0.22.1

func (m *TiltfileStateTerminated) Marshal() (dAtA []byte, err error)

func (*TiltfileStateTerminated) MarshalTo added in v0.22.1

func (m *TiltfileStateTerminated) MarshalTo(dAtA []byte) (int, error)

func (*TiltfileStateTerminated) MarshalToSizedBuffer added in v0.22.1

func (m *TiltfileStateTerminated) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*TiltfileStateTerminated) ProtoMessage added in v0.22.1

func (*TiltfileStateTerminated) ProtoMessage()

func (*TiltfileStateTerminated) Reset added in v0.22.1

func (m *TiltfileStateTerminated) Reset()

func (*TiltfileStateTerminated) Size added in v0.22.1

func (m *TiltfileStateTerminated) Size() (n int)

func (*TiltfileStateTerminated) String added in v0.22.1

func (this *TiltfileStateTerminated) String() string

func (*TiltfileStateTerminated) Unmarshal added in v0.22.1

func (m *TiltfileStateTerminated) Unmarshal(dAtA []byte) error

func (*TiltfileStateTerminated) XXX_DiscardUnknown added in v0.22.1

func (m *TiltfileStateTerminated) XXX_DiscardUnknown()

func (*TiltfileStateTerminated) XXX_Marshal added in v0.22.1

func (m *TiltfileStateTerminated) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TiltfileStateTerminated) XXX_Merge added in v0.22.1

func (m *TiltfileStateTerminated) XXX_Merge(src proto.Message)

func (*TiltfileStateTerminated) XXX_Size added in v0.22.1

func (m *TiltfileStateTerminated) XXX_Size() int

func (*TiltfileStateTerminated) XXX_Unmarshal added in v0.22.1

func (m *TiltfileStateTerminated) XXX_Unmarshal(b []byte) error

type TiltfileStateWaiting added in v0.22.1

type TiltfileStateWaiting struct {
	// (brief) reason the tiltfile is waiting.
	// +optional
	Reason string `json:"reason,omitempty" protobuf:"bytes,1,opt,name=reason"`
}

TiltfileStateWaiting is a waiting state of a tiltfile execution.

func (*TiltfileStateWaiting) DeepCopy added in v0.22.1

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

func (*TiltfileStateWaiting) DeepCopyInto added in v0.22.1

func (in *TiltfileStateWaiting) DeepCopyInto(out *TiltfileStateWaiting)

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

func (*TiltfileStateWaiting) Descriptor added in v0.22.1

func (*TiltfileStateWaiting) Descriptor() ([]byte, []int)

func (*TiltfileStateWaiting) Marshal added in v0.22.1

func (m *TiltfileStateWaiting) Marshal() (dAtA []byte, err error)

func (*TiltfileStateWaiting) MarshalTo added in v0.22.1

func (m *TiltfileStateWaiting) MarshalTo(dAtA []byte) (int, error)

func (*TiltfileStateWaiting) MarshalToSizedBuffer added in v0.22.1

func (m *TiltfileStateWaiting) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*TiltfileStateWaiting) ProtoMessage added in v0.22.1

func (*TiltfileStateWaiting) ProtoMessage()

func (*TiltfileStateWaiting) Reset added in v0.22.1

func (m *TiltfileStateWaiting) Reset()

func (*TiltfileStateWaiting) Size added in v0.22.1

func (m *TiltfileStateWaiting) Size() (n int)

func (*TiltfileStateWaiting) String added in v0.22.1

func (this *TiltfileStateWaiting) String() string

func (*TiltfileStateWaiting) Unmarshal added in v0.22.1

func (m *TiltfileStateWaiting) Unmarshal(dAtA []byte) error

func (*TiltfileStateWaiting) XXX_DiscardUnknown added in v0.22.1

func (m *TiltfileStateWaiting) XXX_DiscardUnknown()

func (*TiltfileStateWaiting) XXX_Marshal added in v0.22.1

func (m *TiltfileStateWaiting) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TiltfileStateWaiting) XXX_Merge added in v0.22.1

func (m *TiltfileStateWaiting) XXX_Merge(src proto.Message)

func (*TiltfileStateWaiting) XXX_Size added in v0.22.1

func (m *TiltfileStateWaiting) XXX_Size() int

func (*TiltfileStateWaiting) XXX_Unmarshal added in v0.22.1

func (m *TiltfileStateWaiting) XXX_Unmarshal(b []byte) error

type TiltfileStatus added in v0.22.1

type TiltfileStatus struct {
	// Details about a waiting tiltfile.
	// +optional
	Waiting *TiltfileStateWaiting `json:"waiting,omitempty" protobuf:"bytes,1,opt,name=waiting"`

	// Details about a running tiltfile.
	// +optional
	Running *TiltfileStateRunning `json:"running,omitempty" protobuf:"bytes,2,opt,name=running"`

	// Details about a terminated tiltfile.
	// +optional
	Terminated *TiltfileStateTerminated `json:"terminated,omitempty" protobuf:"bytes,3,opt,name=terminated"`
}

TiltfileStatus defines the observed state of Tiltfile

func (TiltfileStatus) CopyTo added in v0.22.1

func (*TiltfileStatus) DeepCopy added in v0.22.1

func (in *TiltfileStatus) DeepCopy() *TiltfileStatus

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

func (*TiltfileStatus) DeepCopyInto added in v0.22.1

func (in *TiltfileStatus) DeepCopyInto(out *TiltfileStatus)

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

func (*TiltfileStatus) Descriptor added in v0.22.1

func (*TiltfileStatus) Descriptor() ([]byte, []int)

func (*TiltfileStatus) Marshal added in v0.22.1

func (m *TiltfileStatus) Marshal() (dAtA []byte, err error)

func (*TiltfileStatus) MarshalTo added in v0.22.1

func (m *TiltfileStatus) MarshalTo(dAtA []byte) (int, error)

func (*TiltfileStatus) MarshalToSizedBuffer added in v0.22.1

func (m *TiltfileStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*TiltfileStatus) ProtoMessage added in v0.22.1

func (*TiltfileStatus) ProtoMessage()

func (*TiltfileStatus) Reset added in v0.22.1

func (m *TiltfileStatus) Reset()

func (*TiltfileStatus) Size added in v0.22.1

func (m *TiltfileStatus) Size() (n int)

func (*TiltfileStatus) String added in v0.22.1

func (this *TiltfileStatus) String() string

func (*TiltfileStatus) Unmarshal added in v0.22.1

func (m *TiltfileStatus) Unmarshal(dAtA []byte) error

func (*TiltfileStatus) XXX_DiscardUnknown added in v0.22.1

func (m *TiltfileStatus) XXX_DiscardUnknown()

func (*TiltfileStatus) XXX_Marshal added in v0.22.1

func (m *TiltfileStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TiltfileStatus) XXX_Merge added in v0.22.1

func (m *TiltfileStatus) XXX_Merge(src proto.Message)

func (*TiltfileStatus) XXX_Size added in v0.22.1

func (m *TiltfileStatus) XXX_Size() int

func (*TiltfileStatus) XXX_Unmarshal added in v0.22.1

func (m *TiltfileStatus) XXX_Unmarshal(b []byte) error

type ToggleButton added in v0.22.12

type ToggleButton struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Spec   ToggleButtonSpec   `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
	Status ToggleButtonStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
}

ToggleButton +k8s:openapi-gen=true

func (*ToggleButton) DeepCopy added in v0.22.12

func (in *ToggleButton) DeepCopy() *ToggleButton

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

func (*ToggleButton) DeepCopyInto added in v0.22.12

func (in *ToggleButton) DeepCopyInto(out *ToggleButton)

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

func (*ToggleButton) DeepCopyObject added in v0.22.12

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

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

func (*ToggleButton) Descriptor added in v0.22.12

func (*ToggleButton) Descriptor() ([]byte, []int)

func (*ToggleButton) GetGroupVersionResource added in v0.22.12

func (in *ToggleButton) GetGroupVersionResource() schema.GroupVersionResource

func (*ToggleButton) GetObjectMeta added in v0.22.12

func (in *ToggleButton) GetObjectMeta() *metav1.ObjectMeta

func (*ToggleButton) GetSingularName added in v0.33.0

func (in *ToggleButton) GetSingularName() string

func (*ToggleButton) GetSpec added in v0.23.0

func (in *ToggleButton) GetSpec() interface{}

func (*ToggleButton) GetStatus added in v0.22.12

func (in *ToggleButton) GetStatus() resource.StatusSubResource

func (*ToggleButton) IsStorageVersion added in v0.22.12

func (in *ToggleButton) IsStorageVersion() bool

func (*ToggleButton) Marshal added in v0.22.12

func (m *ToggleButton) Marshal() (dAtA []byte, err error)

func (*ToggleButton) MarshalTo added in v0.22.12

func (m *ToggleButton) MarshalTo(dAtA []byte) (int, error)

func (*ToggleButton) MarshalToSizedBuffer added in v0.22.12

func (m *ToggleButton) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ToggleButton) NamespaceScoped added in v0.22.12

func (in *ToggleButton) NamespaceScoped() bool

func (*ToggleButton) New added in v0.22.12

func (in *ToggleButton) New() runtime.Object

func (*ToggleButton) NewList added in v0.22.12

func (in *ToggleButton) NewList() runtime.Object

func (*ToggleButton) ProtoMessage added in v0.22.12

func (*ToggleButton) ProtoMessage()

func (*ToggleButton) Reset added in v0.22.12

func (m *ToggleButton) Reset()

func (*ToggleButton) Size added in v0.22.12

func (m *ToggleButton) Size() (n int)

func (*ToggleButton) String added in v0.22.12

func (this *ToggleButton) String() string

func (*ToggleButton) Unmarshal added in v0.22.12

func (m *ToggleButton) Unmarshal(dAtA []byte) error

func (*ToggleButton) Validate added in v0.22.12

func (in *ToggleButton) Validate(ctx context.Context) field.ErrorList

func (*ToggleButton) XXX_DiscardUnknown added in v0.22.12

func (m *ToggleButton) XXX_DiscardUnknown()

func (*ToggleButton) XXX_Marshal added in v0.22.12

func (m *ToggleButton) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ToggleButton) XXX_Merge added in v0.22.12

func (m *ToggleButton) XXX_Merge(src proto.Message)

func (*ToggleButton) XXX_Size added in v0.22.12

func (m *ToggleButton) XXX_Size() int

func (*ToggleButton) XXX_Unmarshal added in v0.22.12

func (m *ToggleButton) XXX_Unmarshal(b []byte) error

type ToggleButtonList added in v0.22.12

type ToggleButtonList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Items []ToggleButton `json:"items" protobuf:"bytes,2,rep,name=items"`
}

ToggleButtonList +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*ToggleButtonList) DeepCopy added in v0.22.12

func (in *ToggleButtonList) DeepCopy() *ToggleButtonList

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

func (*ToggleButtonList) DeepCopyInto added in v0.22.12

func (in *ToggleButtonList) DeepCopyInto(out *ToggleButtonList)

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

func (*ToggleButtonList) DeepCopyObject added in v0.22.12

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

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

func (*ToggleButtonList) Descriptor added in v0.22.12

func (*ToggleButtonList) Descriptor() ([]byte, []int)

func (*ToggleButtonList) GetListMeta added in v0.22.12

func (in *ToggleButtonList) GetListMeta() *metav1.ListMeta

func (*ToggleButtonList) Marshal added in v0.22.12

func (m *ToggleButtonList) Marshal() (dAtA []byte, err error)

func (*ToggleButtonList) MarshalTo added in v0.22.12

func (m *ToggleButtonList) MarshalTo(dAtA []byte) (int, error)

func (*ToggleButtonList) MarshalToSizedBuffer added in v0.22.12

func (m *ToggleButtonList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ToggleButtonList) ProtoMessage added in v0.22.12

func (*ToggleButtonList) ProtoMessage()

func (*ToggleButtonList) Reset added in v0.22.12

func (m *ToggleButtonList) Reset()

func (*ToggleButtonList) Size added in v0.22.12

func (m *ToggleButtonList) Size() (n int)

func (*ToggleButtonList) String added in v0.22.12

func (this *ToggleButtonList) String() string

func (*ToggleButtonList) Unmarshal added in v0.22.12

func (m *ToggleButtonList) Unmarshal(dAtA []byte) error

func (*ToggleButtonList) XXX_DiscardUnknown added in v0.22.12

func (m *ToggleButtonList) XXX_DiscardUnknown()

func (*ToggleButtonList) XXX_Marshal added in v0.22.12

func (m *ToggleButtonList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ToggleButtonList) XXX_Merge added in v0.22.12

func (m *ToggleButtonList) XXX_Merge(src proto.Message)

func (*ToggleButtonList) XXX_Size added in v0.22.12

func (m *ToggleButtonList) XXX_Size() int

func (*ToggleButtonList) XXX_Unmarshal added in v0.22.12

func (m *ToggleButtonList) XXX_Unmarshal(b []byte) error

type ToggleButtonSpec added in v0.22.12

type ToggleButtonSpec struct {
	// Where to display the button
	Location UIComponentLocation `json:"location" protobuf:"bytes,1,opt,name=location"`

	// Config for the button when it is "on"
	On ToggleButtonStateSpec `json:"on" protobuf:"bytes,2,opt,name=on"`

	// Config for the button when it is "off"
	Off ToggleButtonStateSpec `json:"off" protobuf:"bytes,3,opt,name=off"`

	// If `StateSource` does not point at a valid value, the initial button
	// state will be "on" or "off" depending on this bool
	DefaultOn bool `json:"defaultOn" protobuf:"varint,4,opt,name=defaultOn"`

	// Where the toggle button's state is stored
	StateSource StateSource `json:"stateSource" protobuf:"bytes,5,opt,name=stateSource"`
}

ToggleButtonSpec defines the desired state of ToggleButton

func (*ToggleButtonSpec) DeepCopy added in v0.22.12

func (in *ToggleButtonSpec) DeepCopy() *ToggleButtonSpec

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

func (*ToggleButtonSpec) DeepCopyInto added in v0.22.12

func (in *ToggleButtonSpec) DeepCopyInto(out *ToggleButtonSpec)

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

func (*ToggleButtonSpec) Descriptor added in v0.22.12

func (*ToggleButtonSpec) Descriptor() ([]byte, []int)

func (*ToggleButtonSpec) Marshal added in v0.22.12

func (m *ToggleButtonSpec) Marshal() (dAtA []byte, err error)

func (*ToggleButtonSpec) MarshalTo added in v0.22.12

func (m *ToggleButtonSpec) MarshalTo(dAtA []byte) (int, error)

func (*ToggleButtonSpec) MarshalToSizedBuffer added in v0.22.12

func (m *ToggleButtonSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ToggleButtonSpec) ProtoMessage added in v0.22.12

func (*ToggleButtonSpec) ProtoMessage()

func (*ToggleButtonSpec) Reset added in v0.22.12

func (m *ToggleButtonSpec) Reset()

func (*ToggleButtonSpec) Size added in v0.22.12

func (m *ToggleButtonSpec) Size() (n int)

func (*ToggleButtonSpec) String added in v0.22.12

func (this *ToggleButtonSpec) String() string

func (*ToggleButtonSpec) Unmarshal added in v0.22.12

func (m *ToggleButtonSpec) Unmarshal(dAtA []byte) error

func (*ToggleButtonSpec) XXX_DiscardUnknown added in v0.22.12

func (m *ToggleButtonSpec) XXX_DiscardUnknown()

func (*ToggleButtonSpec) XXX_Marshal added in v0.22.12

func (m *ToggleButtonSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ToggleButtonSpec) XXX_Merge added in v0.22.12

func (m *ToggleButtonSpec) XXX_Merge(src proto.Message)

func (*ToggleButtonSpec) XXX_Size added in v0.22.12

func (m *ToggleButtonSpec) XXX_Size() int

func (*ToggleButtonSpec) XXX_Unmarshal added in v0.22.12

func (m *ToggleButtonSpec) XXX_Unmarshal(b []byte) error

type ToggleButtonStateSpec added in v0.22.12

type ToggleButtonStateSpec struct {
	// Text to appear on the button itself or as hover text (depending on button location).
	Text string `json:"text" protobuf:"bytes,2,opt,name=text"`

	// IconName is a Material Icon to appear next to button text or on the button itself (depending on button location).
	//
	// Valid values are icon font ligature names from the Material Icons set.
	// See https://fonts.google.com/icons for the full list of available icons.
	//
	// If both IconSVG and IconName are specified, IconSVG will take precedence.
	//
	// +optional
	IconName string `json:"iconName,omitempty" protobuf:"bytes,3,opt,name=iconName"`

	// IconSVG is an SVG to use as the icon to appear next to button text or on the button itself (depending on button
	// location).
	//
	// This should be an <svg> element scaled for a 24x24 viewport.
	//
	// If both IconSVG and IconName are specified, IconSVG will take precedence.
	//
	// +optional
	IconSVG string `json:"iconSVG,omitempty" protobuf:"bytes,4,opt,name=iconSVG"`

	// If true, clicking the button in this state requires a second click
	// to confirm.
	//
	// +optional
	RequiresConfirmation bool `json:"requiresConfirmation,omitempty" protobuf:"varint,5,opt,name=requiresConfirmation"`
}

Describes a state (on/off) of a ToggleButton

func (*ToggleButtonStateSpec) DeepCopy added in v0.22.12

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

func (*ToggleButtonStateSpec) DeepCopyInto added in v0.22.12

func (in *ToggleButtonStateSpec) DeepCopyInto(out *ToggleButtonStateSpec)

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

func (*ToggleButtonStateSpec) Descriptor added in v0.22.12

func (*ToggleButtonStateSpec) Descriptor() ([]byte, []int)

func (*ToggleButtonStateSpec) Marshal added in v0.22.12

func (m *ToggleButtonStateSpec) Marshal() (dAtA []byte, err error)

func (*ToggleButtonStateSpec) MarshalTo added in v0.22.12

func (m *ToggleButtonStateSpec) MarshalTo(dAtA []byte) (int, error)

func (*ToggleButtonStateSpec) MarshalToSizedBuffer added in v0.22.12

func (m *ToggleButtonStateSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ToggleButtonStateSpec) ProtoMessage added in v0.22.12

func (*ToggleButtonStateSpec) ProtoMessage()

func (*ToggleButtonStateSpec) Reset added in v0.22.12

func (m *ToggleButtonStateSpec) Reset()

func (*ToggleButtonStateSpec) Size added in v0.22.12

func (m *ToggleButtonStateSpec) Size() (n int)

func (*ToggleButtonStateSpec) String added in v0.22.12

func (this *ToggleButtonStateSpec) String() string

func (*ToggleButtonStateSpec) Unmarshal added in v0.22.12

func (m *ToggleButtonStateSpec) Unmarshal(dAtA []byte) error

func (*ToggleButtonStateSpec) XXX_DiscardUnknown added in v0.22.12

func (m *ToggleButtonStateSpec) XXX_DiscardUnknown()

func (*ToggleButtonStateSpec) XXX_Marshal added in v0.22.12

func (m *ToggleButtonStateSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ToggleButtonStateSpec) XXX_Merge added in v0.22.12

func (m *ToggleButtonStateSpec) XXX_Merge(src proto.Message)

func (*ToggleButtonStateSpec) XXX_Size added in v0.22.12

func (m *ToggleButtonStateSpec) XXX_Size() int

func (*ToggleButtonStateSpec) XXX_Unmarshal added in v0.22.12

func (m *ToggleButtonStateSpec) XXX_Unmarshal(b []byte) error

type ToggleButtonStatus added in v0.22.12

type ToggleButtonStatus struct {
	// If healthy, empty. If non-healthy, specifies a problem the ToggleButton encountered
	// +optional
	Error string `json:"error" protobuf:"bytes,1,opt,name=error"`
}

ToggleButtonStatus defines the observed state of ToggleButton

func (ToggleButtonStatus) CopyTo added in v0.22.12

func (*ToggleButtonStatus) DeepCopy added in v0.22.12

func (in *ToggleButtonStatus) DeepCopy() *ToggleButtonStatus

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

func (*ToggleButtonStatus) DeepCopyInto added in v0.22.12

func (in *ToggleButtonStatus) DeepCopyInto(out *ToggleButtonStatus)

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

func (*ToggleButtonStatus) Descriptor added in v0.22.12

func (*ToggleButtonStatus) Descriptor() ([]byte, []int)

func (*ToggleButtonStatus) Marshal added in v0.22.12

func (m *ToggleButtonStatus) Marshal() (dAtA []byte, err error)

func (*ToggleButtonStatus) MarshalTo added in v0.22.12

func (m *ToggleButtonStatus) MarshalTo(dAtA []byte) (int, error)

func (*ToggleButtonStatus) MarshalToSizedBuffer added in v0.22.12

func (m *ToggleButtonStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ToggleButtonStatus) ProtoMessage added in v0.22.12

func (*ToggleButtonStatus) ProtoMessage()

func (*ToggleButtonStatus) Reset added in v0.22.12

func (m *ToggleButtonStatus) Reset()

func (*ToggleButtonStatus) Size added in v0.22.12

func (m *ToggleButtonStatus) Size() (n int)

func (*ToggleButtonStatus) String added in v0.22.12

func (this *ToggleButtonStatus) String() string

func (*ToggleButtonStatus) Unmarshal added in v0.22.12

func (m *ToggleButtonStatus) Unmarshal(dAtA []byte) error

func (*ToggleButtonStatus) XXX_DiscardUnknown added in v0.22.12

func (m *ToggleButtonStatus) XXX_DiscardUnknown()

func (*ToggleButtonStatus) XXX_Marshal added in v0.22.12

func (m *ToggleButtonStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ToggleButtonStatus) XXX_Merge added in v0.22.12

func (m *ToggleButtonStatus) XXX_Merge(src proto.Message)

func (*ToggleButtonStatus) XXX_Size added in v0.22.12

func (m *ToggleButtonStatus) XXX_Size() int

func (*ToggleButtonStatus) XXX_Unmarshal added in v0.22.12

func (m *ToggleButtonStatus) XXX_Unmarshal(b []byte) error

type UIBoolInputSpec added in v0.22.6

type UIBoolInputSpec struct {
	// Whether the input is initially true or false.
	// +optional
	DefaultValue bool `json:"defaultValue,omitempty" protobuf:"varint,1,opt,name=defaultValue"`

	// If the input's value is converted to a string, use this when the value is true.
	// If unspecified, its string value will be `"true"`
	// +optional
	TrueString *string `json:"trueString,omitempty" protobuf:"bytes,2,opt,name=trueString"`

	// If the input's value is converted to a string, use this when the value is false.
	// If unspecified, its string value will be `"false"`
	// +optional
	FalseString *string `json:"falseString,omitempty" protobuf:"bytes,3,opt,name=falseString"`
}

Describes a boolean checkbox input field attached to a button.

func (*UIBoolInputSpec) DeepCopy added in v0.22.6

func (in *UIBoolInputSpec) DeepCopy() *UIBoolInputSpec

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

func (*UIBoolInputSpec) DeepCopyInto added in v0.22.6

func (in *UIBoolInputSpec) DeepCopyInto(out *UIBoolInputSpec)

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

func (*UIBoolInputSpec) Descriptor added in v0.22.6

func (*UIBoolInputSpec) Descriptor() ([]byte, []int)

func (*UIBoolInputSpec) Marshal added in v0.22.6

func (m *UIBoolInputSpec) Marshal() (dAtA []byte, err error)

func (*UIBoolInputSpec) MarshalTo added in v0.22.6

func (m *UIBoolInputSpec) MarshalTo(dAtA []byte) (int, error)

func (*UIBoolInputSpec) MarshalToSizedBuffer added in v0.22.6

func (m *UIBoolInputSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UIBoolInputSpec) ProtoMessage added in v0.22.6

func (*UIBoolInputSpec) ProtoMessage()

func (*UIBoolInputSpec) Reset added in v0.22.6

func (m *UIBoolInputSpec) Reset()

func (*UIBoolInputSpec) Size added in v0.22.6

func (m *UIBoolInputSpec) Size() (n int)

func (*UIBoolInputSpec) String added in v0.22.6

func (this *UIBoolInputSpec) String() string

func (*UIBoolInputSpec) Unmarshal added in v0.22.6

func (m *UIBoolInputSpec) Unmarshal(dAtA []byte) error

func (*UIBoolInputSpec) XXX_DiscardUnknown added in v0.22.6

func (m *UIBoolInputSpec) XXX_DiscardUnknown()

func (*UIBoolInputSpec) XXX_Marshal added in v0.22.6

func (m *UIBoolInputSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UIBoolInputSpec) XXX_Merge added in v0.22.6

func (m *UIBoolInputSpec) XXX_Merge(src proto.Message)

func (*UIBoolInputSpec) XXX_Size added in v0.22.6

func (m *UIBoolInputSpec) XXX_Size() int

func (*UIBoolInputSpec) XXX_Unmarshal added in v0.22.6

func (m *UIBoolInputSpec) XXX_Unmarshal(b []byte) error

type UIBoolInputStatus added in v0.22.6

type UIBoolInputStatus struct {
	Value bool `json:"value" protobuf:"varint,1,opt,name=value"`
}

func (*UIBoolInputStatus) DeepCopy added in v0.22.6

func (in *UIBoolInputStatus) DeepCopy() *UIBoolInputStatus

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

func (*UIBoolInputStatus) DeepCopyInto added in v0.22.6

func (in *UIBoolInputStatus) DeepCopyInto(out *UIBoolInputStatus)

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

func (*UIBoolInputStatus) Descriptor added in v0.22.6

func (*UIBoolInputStatus) Descriptor() ([]byte, []int)

func (*UIBoolInputStatus) Marshal added in v0.22.6

func (m *UIBoolInputStatus) Marshal() (dAtA []byte, err error)

func (*UIBoolInputStatus) MarshalTo added in v0.22.6

func (m *UIBoolInputStatus) MarshalTo(dAtA []byte) (int, error)

func (*UIBoolInputStatus) MarshalToSizedBuffer added in v0.22.6

func (m *UIBoolInputStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UIBoolInputStatus) ProtoMessage added in v0.22.6

func (*UIBoolInputStatus) ProtoMessage()

func (*UIBoolInputStatus) Reset added in v0.22.6

func (m *UIBoolInputStatus) Reset()

func (*UIBoolInputStatus) Size added in v0.22.6

func (m *UIBoolInputStatus) Size() (n int)

func (*UIBoolInputStatus) String added in v0.22.6

func (this *UIBoolInputStatus) String() string

func (*UIBoolInputStatus) Unmarshal added in v0.22.6

func (m *UIBoolInputStatus) Unmarshal(dAtA []byte) error

func (*UIBoolInputStatus) XXX_DiscardUnknown added in v0.22.6

func (m *UIBoolInputStatus) XXX_DiscardUnknown()

func (*UIBoolInputStatus) XXX_Marshal added in v0.22.6

func (m *UIBoolInputStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UIBoolInputStatus) XXX_Merge added in v0.22.6

func (m *UIBoolInputStatus) XXX_Merge(src proto.Message)

func (*UIBoolInputStatus) XXX_Size added in v0.22.6

func (m *UIBoolInputStatus) XXX_Size() int

func (*UIBoolInputStatus) XXX_Unmarshal added in v0.22.6

func (m *UIBoolInputStatus) XXX_Unmarshal(b []byte) error

type UIBuildRunning added in v0.20.2

type UIBuildRunning struct {
	// The time when the build started.
	// +optional
	StartTime metav1.MicroTime `json:"startTime,omitempty" protobuf:"bytes,1,opt,name=startTime"`

	// The log span where the build logs are stored in the logstore.
	// +optional
	SpanID string `json:"spanID,omitempty" protobuf:"bytes,2,opt,name=spanID"`
}

UIBuildRunning represents an in-progress build/update in the user interface.

func (*UIBuildRunning) DeepCopy added in v0.20.2

func (in *UIBuildRunning) DeepCopy() *UIBuildRunning

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

func (*UIBuildRunning) DeepCopyInto added in v0.20.2

func (in *UIBuildRunning) DeepCopyInto(out *UIBuildRunning)

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

func (*UIBuildRunning) Descriptor added in v0.20.2

func (*UIBuildRunning) Descriptor() ([]byte, []int)

func (*UIBuildRunning) Marshal added in v0.20.2

func (m *UIBuildRunning) Marshal() (dAtA []byte, err error)

func (*UIBuildRunning) MarshalTo added in v0.20.2

func (m *UIBuildRunning) MarshalTo(dAtA []byte) (int, error)

func (*UIBuildRunning) MarshalToSizedBuffer added in v0.20.2

func (m *UIBuildRunning) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UIBuildRunning) ProtoMessage added in v0.20.2

func (*UIBuildRunning) ProtoMessage()

func (*UIBuildRunning) Reset added in v0.20.2

func (m *UIBuildRunning) Reset()

func (*UIBuildRunning) Size added in v0.20.2

func (m *UIBuildRunning) Size() (n int)

func (*UIBuildRunning) String added in v0.20.2

func (this *UIBuildRunning) String() string

func (*UIBuildRunning) Unmarshal added in v0.20.2

func (m *UIBuildRunning) Unmarshal(dAtA []byte) error

func (*UIBuildRunning) XXX_DiscardUnknown added in v0.20.2

func (m *UIBuildRunning) XXX_DiscardUnknown()

func (*UIBuildRunning) XXX_Marshal added in v0.20.2

func (m *UIBuildRunning) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UIBuildRunning) XXX_Merge added in v0.20.2

func (m *UIBuildRunning) XXX_Merge(src proto.Message)

func (*UIBuildRunning) XXX_Size added in v0.20.2

func (m *UIBuildRunning) XXX_Size() int

func (*UIBuildRunning) XXX_Unmarshal added in v0.20.2

func (m *UIBuildRunning) XXX_Unmarshal(b []byte) error

type UIBuildTerminated added in v0.20.2

type UIBuildTerminated struct {
	// A non-empty string if the build failed with an error.
	// +optional
	Error string `json:"error,omitempty" protobuf:"bytes,1,opt,name=error"`

	// A list of warnings encountered while running the build.
	// These warnings will also be printed to the build's log.
	// +optional
	Warnings []string `json:"warnings,omitempty" protobuf:"bytes,2,rep,name=warnings"`

	// The time when the build started.
	// +optional
	StartTime metav1.MicroTime `json:"startTime,omitempty" protobuf:"bytes,3,opt,name=startTime"`

	// The time when the build finished.
	// +optional
	FinishTime metav1.MicroTime `json:"finishTime,omitempty" protobuf:"bytes,4,opt,name=finishTime"`

	// The log span where the build logs are stored in the logstore.
	// +optional
	SpanID string `json:"spanID,omitempty" protobuf:"bytes,5,opt,name=spanID"`

	// A crash rebuild happens when Tilt live-updated a container, then
	// the pod crashed, wiping out the live-updates. Tilt does a full
	// build+deploy to reset the pod state to what's on disk.
	// +optional
	IsCrashRebuild bool `json:"isCrashRebuild,omitempty" protobuf:"varint,6,opt,name=isCrashRebuild"`
}

UIBuildRunning represents a finished build/update in the user interface.

func (*UIBuildTerminated) DeepCopy added in v0.20.2

func (in *UIBuildTerminated) DeepCopy() *UIBuildTerminated

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

func (*UIBuildTerminated) DeepCopyInto added in v0.20.2

func (in *UIBuildTerminated) DeepCopyInto(out *UIBuildTerminated)

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

func (*UIBuildTerminated) Descriptor added in v0.20.2

func (*UIBuildTerminated) Descriptor() ([]byte, []int)

func (*UIBuildTerminated) Marshal added in v0.20.2

func (m *UIBuildTerminated) Marshal() (dAtA []byte, err error)

func (*UIBuildTerminated) MarshalTo added in v0.20.2

func (m *UIBuildTerminated) MarshalTo(dAtA []byte) (int, error)

func (*UIBuildTerminated) MarshalToSizedBuffer added in v0.20.2

func (m *UIBuildTerminated) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UIBuildTerminated) ProtoMessage added in v0.20.2

func (*UIBuildTerminated) ProtoMessage()

func (*UIBuildTerminated) Reset added in v0.20.2

func (m *UIBuildTerminated) Reset()

func (*UIBuildTerminated) Size added in v0.20.2

func (m *UIBuildTerminated) Size() (n int)

func (*UIBuildTerminated) String added in v0.20.2

func (this *UIBuildTerminated) String() string

func (*UIBuildTerminated) Unmarshal added in v0.20.2

func (m *UIBuildTerminated) Unmarshal(dAtA []byte) error

func (*UIBuildTerminated) XXX_DiscardUnknown added in v0.20.2

func (m *UIBuildTerminated) XXX_DiscardUnknown()

func (*UIBuildTerminated) XXX_Marshal added in v0.20.2

func (m *UIBuildTerminated) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UIBuildTerminated) XXX_Merge added in v0.20.2

func (m *UIBuildTerminated) XXX_Merge(src proto.Message)

func (*UIBuildTerminated) XXX_Size added in v0.20.2

func (m *UIBuildTerminated) XXX_Size() int

func (*UIBuildTerminated) XXX_Unmarshal added in v0.20.2

func (m *UIBuildTerminated) XXX_Unmarshal(b []byte) error

type UIButton added in v0.20.5

type UIButton struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Spec   UIButtonSpec   `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
	Status UIButtonStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
}

UIButton +k8s:openapi-gen=true +tilt:starlark-gen=true

func (*UIButton) DeepCopy added in v0.20.5

func (in *UIButton) DeepCopy() *UIButton

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

func (*UIButton) DeepCopyInto added in v0.20.5

func (in *UIButton) DeepCopyInto(out *UIButton)

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

func (*UIButton) DeepCopyObject added in v0.20.5

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

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

func (*UIButton) Descriptor added in v0.20.5

func (*UIButton) Descriptor() ([]byte, []int)

func (*UIButton) GetGroupVersionResource added in v0.20.5

func (in *UIButton) GetGroupVersionResource() schema.GroupVersionResource

func (*UIButton) GetObjectMeta added in v0.20.5

func (in *UIButton) GetObjectMeta() *metav1.ObjectMeta

func (*UIButton) GetSingularName added in v0.33.0

func (in *UIButton) GetSingularName() string

func (*UIButton) GetSpec added in v0.22.10

func (in *UIButton) GetSpec() interface{}

func (*UIButton) GetStatus added in v0.20.5

func (in *UIButton) GetStatus() resource.StatusSubResource

func (*UIButton) IsStorageVersion added in v0.20.5

func (in *UIButton) IsStorageVersion() bool

func (*UIButton) Marshal added in v0.20.5

func (m *UIButton) Marshal() (dAtA []byte, err error)

func (*UIButton) MarshalTo added in v0.20.5

func (m *UIButton) MarshalTo(dAtA []byte) (int, error)

func (*UIButton) MarshalToSizedBuffer added in v0.20.5

func (m *UIButton) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UIButton) NamespaceScoped added in v0.20.5

func (in *UIButton) NamespaceScoped() bool

func (*UIButton) New added in v0.20.5

func (in *UIButton) New() runtime.Object

func (*UIButton) NewList added in v0.20.5

func (in *UIButton) NewList() runtime.Object

func (*UIButton) ProtoMessage added in v0.20.5

func (*UIButton) ProtoMessage()

func (*UIButton) Reset added in v0.20.5

func (m *UIButton) Reset()

func (*UIButton) Size added in v0.20.5

func (m *UIButton) Size() (n int)

func (*UIButton) String added in v0.20.5

func (this *UIButton) String() string

func (*UIButton) Unmarshal added in v0.20.5

func (m *UIButton) Unmarshal(dAtA []byte) error

func (*UIButton) Validate added in v0.20.5

func (in *UIButton) Validate(ctx context.Context) field.ErrorList

func (*UIButton) XXX_DiscardUnknown added in v0.20.5

func (m *UIButton) XXX_DiscardUnknown()

func (*UIButton) XXX_Marshal added in v0.20.5

func (m *UIButton) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UIButton) XXX_Merge added in v0.20.5

func (m *UIButton) XXX_Merge(src proto.Message)

func (*UIButton) XXX_Size added in v0.20.5

func (m *UIButton) XXX_Size() int

func (*UIButton) XXX_Unmarshal added in v0.20.5

func (m *UIButton) XXX_Unmarshal(b []byte) error

type UIButtonList added in v0.20.5

type UIButtonList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Items []UIButton `json:"items" protobuf:"bytes,2,rep,name=items"`
}

UIButtonList +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*UIButtonList) DeepCopy added in v0.20.5

func (in *UIButtonList) DeepCopy() *UIButtonList

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

func (*UIButtonList) DeepCopyInto added in v0.20.5

func (in *UIButtonList) DeepCopyInto(out *UIButtonList)

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

func (*UIButtonList) DeepCopyObject added in v0.20.5

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

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

func (*UIButtonList) Descriptor added in v0.20.5

func (*UIButtonList) Descriptor() ([]byte, []int)

func (*UIButtonList) GetListMeta added in v0.20.5

func (in *UIButtonList) GetListMeta() *metav1.ListMeta

func (*UIButtonList) Marshal added in v0.20.5

func (m *UIButtonList) Marshal() (dAtA []byte, err error)

func (*UIButtonList) MarshalTo added in v0.20.5

func (m *UIButtonList) MarshalTo(dAtA []byte) (int, error)

func (*UIButtonList) MarshalToSizedBuffer added in v0.20.5

func (m *UIButtonList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UIButtonList) ProtoMessage added in v0.20.5

func (*UIButtonList) ProtoMessage()

func (*UIButtonList) Reset added in v0.20.5

func (m *UIButtonList) Reset()

func (*UIButtonList) Size added in v0.20.5

func (m *UIButtonList) Size() (n int)

func (*UIButtonList) String added in v0.20.5

func (this *UIButtonList) String() string

func (*UIButtonList) Unmarshal added in v0.20.5

func (m *UIButtonList) Unmarshal(dAtA []byte) error

func (*UIButtonList) XXX_DiscardUnknown added in v0.20.5

func (m *UIButtonList) XXX_DiscardUnknown()

func (*UIButtonList) XXX_Marshal added in v0.20.5

func (m *UIButtonList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UIButtonList) XXX_Merge added in v0.20.5

func (m *UIButtonList) XXX_Merge(src proto.Message)

func (*UIButtonList) XXX_Size added in v0.20.5

func (m *UIButtonList) XXX_Size() int

func (*UIButtonList) XXX_Unmarshal added in v0.20.5

func (m *UIButtonList) XXX_Unmarshal(b []byte) error

type UIButtonSpec added in v0.20.5

type UIButtonSpec struct {
	// Location associates the button with another component for layout.
	Location UIComponentLocation `json:"location" protobuf:"bytes,1,opt,name=location"`

	// Text to appear on the button itself or as hover text (depending on button location).
	Text string `json:"text" protobuf:"bytes,2,opt,name=text"`

	// IconName is a Material Icon to appear next to button text or on the button itself (depending on button location).
	//
	// Valid values are icon font ligature names from the Material Icons set.
	// See https://fonts.google.com/icons for the full list of available icons.
	//
	// If both IconSVG and IconName are specified, IconSVG will take precedence.
	//
	// +optional
	IconName string `json:"iconName,omitempty" protobuf:"bytes,3,opt,name=iconName"`

	// IconSVG is an SVG to use as the icon to appear next to button text or on the button itself (depending on button
	// location).
	//
	// This should be an <svg> element scaled for a 24x24 viewport.
	//
	// If both IconSVG and IconName are specified, IconSVG will take precedence.
	//
	// +optional
	IconSVG string `json:"iconSVG,omitempty" protobuf:"bytes,4,opt,name=iconSVG"`

	// If true, the button will be rendered, but with an effect indicating it's
	// disabled. It will also be unclickable.
	//
	// +optional
	Disabled bool `json:"disabled,omitempty" protobuf:"varint,5,opt,name=disabled"`

	// If true, the UI will require the user to click the button a second time to
	// confirm before taking action
	//
	// +optional
	RequiresConfirmation bool `json:"requiresConfirmation,omitempty" protobuf:"varint,7,opt,name=requiresConfirmation"`

	// Any inputs for this button.
	// +optional
	Inputs []UIInputSpec `json:"inputs,omitempty" protobuf:"bytes,6,rep,name=inputs"`
}

UIButtonSpec defines the desired state of UIButton

func (*UIButtonSpec) DeepCopy added in v0.20.5

func (in *UIButtonSpec) DeepCopy() *UIButtonSpec

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

func (*UIButtonSpec) DeepCopyInto added in v0.20.5

func (in *UIButtonSpec) DeepCopyInto(out *UIButtonSpec)

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

func (*UIButtonSpec) Descriptor added in v0.20.5

func (*UIButtonSpec) Descriptor() ([]byte, []int)

func (*UIButtonSpec) Marshal added in v0.20.5

func (m *UIButtonSpec) Marshal() (dAtA []byte, err error)

func (*UIButtonSpec) MarshalTo added in v0.20.5

func (m *UIButtonSpec) MarshalTo(dAtA []byte) (int, error)

func (*UIButtonSpec) MarshalToSizedBuffer added in v0.20.5

func (m *UIButtonSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UIButtonSpec) ProtoMessage added in v0.20.5

func (*UIButtonSpec) ProtoMessage()

func (*UIButtonSpec) Reset added in v0.20.5

func (m *UIButtonSpec) Reset()

func (*UIButtonSpec) Size added in v0.20.5

func (m *UIButtonSpec) Size() (n int)

func (*UIButtonSpec) String added in v0.20.5

func (this *UIButtonSpec) String() string

func (*UIButtonSpec) Unmarshal added in v0.20.5

func (m *UIButtonSpec) Unmarshal(dAtA []byte) error

func (*UIButtonSpec) XXX_DiscardUnknown added in v0.20.5

func (m *UIButtonSpec) XXX_DiscardUnknown()

func (*UIButtonSpec) XXX_Marshal added in v0.20.5

func (m *UIButtonSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UIButtonSpec) XXX_Merge added in v0.20.5

func (m *UIButtonSpec) XXX_Merge(src proto.Message)

func (*UIButtonSpec) XXX_Size added in v0.20.5

func (m *UIButtonSpec) XXX_Size() int

func (*UIButtonSpec) XXX_Unmarshal added in v0.20.5

func (m *UIButtonSpec) XXX_Unmarshal(b []byte) error

type UIButtonStatus added in v0.20.5

type UIButtonStatus struct {
	// LastClickedAt is the timestamp of the last time the button was clicked.
	//
	// If the button has never clicked before, this will be the zero-value/null.
	LastClickedAt metav1.MicroTime `json:"lastClickedAt,omitempty" protobuf:"bytes,1,opt,name=lastClickedAt"`

	// Status of any inputs on this button.
	// +optional
	Inputs []UIInputStatus `json:"inputs,omitempty" protobuf:"bytes,2,rep,name=inputs"`
}

UIButtonStatus defines the observed state of UIButton

func (UIButtonStatus) CopyTo added in v0.20.5

func (*UIButtonStatus) DeepCopy added in v0.20.5

func (in *UIButtonStatus) DeepCopy() *UIButtonStatus

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

func (*UIButtonStatus) DeepCopyInto added in v0.20.5

func (in *UIButtonStatus) DeepCopyInto(out *UIButtonStatus)

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

func (*UIButtonStatus) Descriptor added in v0.20.5

func (*UIButtonStatus) Descriptor() ([]byte, []int)

func (*UIButtonStatus) Marshal added in v0.20.5

func (m *UIButtonStatus) Marshal() (dAtA []byte, err error)

func (*UIButtonStatus) MarshalTo added in v0.20.5

func (m *UIButtonStatus) MarshalTo(dAtA []byte) (int, error)

func (*UIButtonStatus) MarshalToSizedBuffer added in v0.20.5

func (m *UIButtonStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UIButtonStatus) ProtoMessage added in v0.20.5

func (*UIButtonStatus) ProtoMessage()

func (*UIButtonStatus) Reset added in v0.20.5

func (m *UIButtonStatus) Reset()

func (*UIButtonStatus) Size added in v0.20.5

func (m *UIButtonStatus) Size() (n int)

func (*UIButtonStatus) String added in v0.20.5

func (this *UIButtonStatus) String() string

func (*UIButtonStatus) Unmarshal added in v0.20.5

func (m *UIButtonStatus) Unmarshal(dAtA []byte) error

func (*UIButtonStatus) XXX_DiscardUnknown added in v0.20.5

func (m *UIButtonStatus) XXX_DiscardUnknown()

func (*UIButtonStatus) XXX_Marshal added in v0.20.5

func (m *UIButtonStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UIButtonStatus) XXX_Merge added in v0.20.5

func (m *UIButtonStatus) XXX_Merge(src proto.Message)

func (*UIButtonStatus) XXX_Size added in v0.20.5

func (m *UIButtonStatus) XXX_Size() int

func (*UIButtonStatus) XXX_Unmarshal added in v0.20.5

func (m *UIButtonStatus) XXX_Unmarshal(b []byte) error

type UIChoiceInputSpec added in v0.30.6

type UIChoiceInputSpec struct {
	// The list of valid values for this field
	//
	// +optional
	Choices []string `json:"choices" protobuf:"bytes,2,opt,name=choices"`
}

Describes a choice dropdown input field attached to a button

func (*UIChoiceInputSpec) DeepCopy added in v0.30.6

func (in *UIChoiceInputSpec) DeepCopy() *UIChoiceInputSpec

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

func (*UIChoiceInputSpec) DeepCopyInto added in v0.30.6

func (in *UIChoiceInputSpec) DeepCopyInto(out *UIChoiceInputSpec)

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

func (*UIChoiceInputSpec) Descriptor added in v0.30.6

func (*UIChoiceInputSpec) Descriptor() ([]byte, []int)

func (*UIChoiceInputSpec) Marshal added in v0.30.6

func (m *UIChoiceInputSpec) Marshal() (dAtA []byte, err error)

func (*UIChoiceInputSpec) MarshalTo added in v0.30.6

func (m *UIChoiceInputSpec) MarshalTo(dAtA []byte) (int, error)

func (*UIChoiceInputSpec) MarshalToSizedBuffer added in v0.30.6

func (m *UIChoiceInputSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UIChoiceInputSpec) ProtoMessage added in v0.30.6

func (*UIChoiceInputSpec) ProtoMessage()

func (*UIChoiceInputSpec) Reset added in v0.30.6

func (m *UIChoiceInputSpec) Reset()

func (*UIChoiceInputSpec) Size added in v0.30.6

func (m *UIChoiceInputSpec) Size() (n int)

func (*UIChoiceInputSpec) String added in v0.30.6

func (this *UIChoiceInputSpec) String() string

func (*UIChoiceInputSpec) Unmarshal added in v0.30.6

func (m *UIChoiceInputSpec) Unmarshal(dAtA []byte) error

func (*UIChoiceInputSpec) XXX_DiscardUnknown added in v0.30.6

func (m *UIChoiceInputSpec) XXX_DiscardUnknown()

func (*UIChoiceInputSpec) XXX_Marshal added in v0.30.6

func (m *UIChoiceInputSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UIChoiceInputSpec) XXX_Merge added in v0.30.6

func (m *UIChoiceInputSpec) XXX_Merge(src proto.Message)

func (*UIChoiceInputSpec) XXX_Size added in v0.30.6

func (m *UIChoiceInputSpec) XXX_Size() int

func (*UIChoiceInputSpec) XXX_Unmarshal added in v0.30.6

func (m *UIChoiceInputSpec) XXX_Unmarshal(b []byte) error

type UIChoiceInputStatus added in v0.30.6

type UIChoiceInputStatus struct {
	Value string `json:"value" protobuf:"varint,1,opt,name=value"`
}

func (*UIChoiceInputStatus) DeepCopy added in v0.30.6

func (in *UIChoiceInputStatus) DeepCopy() *UIChoiceInputStatus

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

func (*UIChoiceInputStatus) DeepCopyInto added in v0.30.6

func (in *UIChoiceInputStatus) DeepCopyInto(out *UIChoiceInputStatus)

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

func (*UIChoiceInputStatus) Descriptor added in v0.30.6

func (*UIChoiceInputStatus) Descriptor() ([]byte, []int)

func (*UIChoiceInputStatus) Marshal added in v0.30.6

func (m *UIChoiceInputStatus) Marshal() (dAtA []byte, err error)

func (*UIChoiceInputStatus) MarshalTo added in v0.30.6

func (m *UIChoiceInputStatus) MarshalTo(dAtA []byte) (int, error)

func (*UIChoiceInputStatus) MarshalToSizedBuffer added in v0.30.6

func (m *UIChoiceInputStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UIChoiceInputStatus) ProtoMessage added in v0.30.6

func (*UIChoiceInputStatus) ProtoMessage()

func (*UIChoiceInputStatus) Reset added in v0.30.6

func (m *UIChoiceInputStatus) Reset()

func (*UIChoiceInputStatus) Size added in v0.30.6

func (m *UIChoiceInputStatus) Size() (n int)

func (*UIChoiceInputStatus) String added in v0.30.6

func (this *UIChoiceInputStatus) String() string

func (*UIChoiceInputStatus) Unmarshal added in v0.30.6

func (m *UIChoiceInputStatus) Unmarshal(dAtA []byte) error

func (*UIChoiceInputStatus) XXX_DiscardUnknown added in v0.30.6

func (m *UIChoiceInputStatus) XXX_DiscardUnknown()

func (*UIChoiceInputStatus) XXX_Marshal added in v0.30.6

func (m *UIChoiceInputStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UIChoiceInputStatus) XXX_Merge added in v0.30.6

func (m *UIChoiceInputStatus) XXX_Merge(src proto.Message)

func (*UIChoiceInputStatus) XXX_Size added in v0.30.6

func (m *UIChoiceInputStatus) XXX_Size() int

func (*UIChoiceInputStatus) XXX_Unmarshal added in v0.30.6

func (m *UIChoiceInputStatus) XXX_Unmarshal(b []byte) error

type UIComponentLocation added in v0.20.5

type UIComponentLocation struct {
	// ComponentID is the identifier of the parent component to associate this component with.
	//
	// For example, this is a resource name if the ComponentType is Resource.
	ComponentID string `json:"componentID" protobuf:"bytes,1,opt,name=componentID"`
	// ComponentType is the type of the parent component.
	ComponentType ComponentType `json:"componentType" protobuf:"bytes,2,opt,name=componentType,casttype=ComponentType"`
}

UIComponentLocation specifies where to put a UI component.

func (*UIComponentLocation) DeepCopy added in v0.20.5

func (in *UIComponentLocation) DeepCopy() *UIComponentLocation

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

func (*UIComponentLocation) DeepCopyInto added in v0.20.5

func (in *UIComponentLocation) DeepCopyInto(out *UIComponentLocation)

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

func (*UIComponentLocation) Descriptor added in v0.20.5

func (*UIComponentLocation) Descriptor() ([]byte, []int)

func (*UIComponentLocation) Marshal added in v0.20.5

func (m *UIComponentLocation) Marshal() (dAtA []byte, err error)

func (*UIComponentLocation) MarshalTo added in v0.20.5

func (m *UIComponentLocation) MarshalTo(dAtA []byte) (int, error)

func (*UIComponentLocation) MarshalToSizedBuffer added in v0.20.5

func (m *UIComponentLocation) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UIComponentLocation) ProtoMessage added in v0.20.5

func (*UIComponentLocation) ProtoMessage()

func (*UIComponentLocation) Reset added in v0.20.5

func (m *UIComponentLocation) Reset()

func (*UIComponentLocation) Size added in v0.20.5

func (m *UIComponentLocation) Size() (n int)

func (*UIComponentLocation) String added in v0.20.5

func (this *UIComponentLocation) String() string

func (*UIComponentLocation) Unmarshal added in v0.20.5

func (m *UIComponentLocation) Unmarshal(dAtA []byte) error

func (*UIComponentLocation) XXX_DiscardUnknown added in v0.20.5

func (m *UIComponentLocation) XXX_DiscardUnknown()

func (*UIComponentLocation) XXX_Marshal added in v0.20.5

func (m *UIComponentLocation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UIComponentLocation) XXX_Merge added in v0.20.5

func (m *UIComponentLocation) XXX_Merge(src proto.Message)

func (*UIComponentLocation) XXX_Size added in v0.20.5

func (m *UIComponentLocation) XXX_Size() int

func (*UIComponentLocation) XXX_Unmarshal added in v0.20.5

func (m *UIComponentLocation) XXX_Unmarshal(b []byte) error

type UIComponentLocationResource added in v0.20.5

type UIComponentLocationResource struct {
	ResourceName string `json:"resourceName" protobuf:"bytes,1,opt,name=resourceName"`
}

func (*UIComponentLocationResource) DeepCopy added in v0.20.5

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

func (*UIComponentLocationResource) DeepCopyInto added in v0.20.5

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

func (*UIComponentLocationResource) Descriptor added in v0.20.5

func (*UIComponentLocationResource) Descriptor() ([]byte, []int)

func (*UIComponentLocationResource) Marshal added in v0.20.5

func (m *UIComponentLocationResource) Marshal() (dAtA []byte, err error)

func (*UIComponentLocationResource) MarshalTo added in v0.20.5

func (m *UIComponentLocationResource) MarshalTo(dAtA []byte) (int, error)

func (*UIComponentLocationResource) MarshalToSizedBuffer added in v0.20.5

func (m *UIComponentLocationResource) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UIComponentLocationResource) ProtoMessage added in v0.20.5

func (*UIComponentLocationResource) ProtoMessage()

func (*UIComponentLocationResource) Reset added in v0.20.5

func (m *UIComponentLocationResource) Reset()

func (*UIComponentLocationResource) Size added in v0.20.5

func (m *UIComponentLocationResource) Size() (n int)

func (*UIComponentLocationResource) String added in v0.20.5

func (this *UIComponentLocationResource) String() string

func (*UIComponentLocationResource) Unmarshal added in v0.20.5

func (m *UIComponentLocationResource) Unmarshal(dAtA []byte) error

func (*UIComponentLocationResource) XXX_DiscardUnknown added in v0.20.5

func (m *UIComponentLocationResource) XXX_DiscardUnknown()

func (*UIComponentLocationResource) XXX_Marshal added in v0.20.5

func (m *UIComponentLocationResource) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UIComponentLocationResource) XXX_Merge added in v0.20.5

func (m *UIComponentLocationResource) XXX_Merge(src proto.Message)

func (*UIComponentLocationResource) XXX_Size added in v0.20.5

func (m *UIComponentLocationResource) XXX_Size() int

func (*UIComponentLocationResource) XXX_Unmarshal added in v0.20.5

func (m *UIComponentLocationResource) XXX_Unmarshal(b []byte) error

type UIFeatureFlag added in v0.20.2

type UIFeatureFlag struct {
	// The name of the flag.
	// +optional
	Name string `json:"name,omitempty" protobuf:"bytes,1,opt,name=name"`

	// The value of the flag.
	// +optional
	Value bool `json:"value,omitempty" protobuf:"varint,2,opt,name=value"`
}

Configures Tilt to enable non-default features (e.g., experimental or deprecated).

The Tilt features controlled by this are generally in an unfinished state, and not yet documented.

As a Tilt user, you don’t need to worry about this unless something else directs you to (e.g., an experimental feature doc, or a conversation with a Tilt contributor).

func (*UIFeatureFlag) DeepCopy added in v0.20.2

func (in *UIFeatureFlag) DeepCopy() *UIFeatureFlag

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

func (*UIFeatureFlag) DeepCopyInto added in v0.20.2

func (in *UIFeatureFlag) DeepCopyInto(out *UIFeatureFlag)

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

func (*UIFeatureFlag) Descriptor added in v0.20.2

func (*UIFeatureFlag) Descriptor() ([]byte, []int)

func (*UIFeatureFlag) Marshal added in v0.20.2

func (m *UIFeatureFlag) Marshal() (dAtA []byte, err error)

func (*UIFeatureFlag) MarshalTo added in v0.20.2

func (m *UIFeatureFlag) MarshalTo(dAtA []byte) (int, error)

func (*UIFeatureFlag) MarshalToSizedBuffer added in v0.20.2

func (m *UIFeatureFlag) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UIFeatureFlag) ProtoMessage added in v0.20.2

func (*UIFeatureFlag) ProtoMessage()

func (*UIFeatureFlag) Reset added in v0.20.2

func (m *UIFeatureFlag) Reset()

func (*UIFeatureFlag) Size added in v0.20.2

func (m *UIFeatureFlag) Size() (n int)

func (*UIFeatureFlag) String added in v0.20.2

func (this *UIFeatureFlag) String() string

func (*UIFeatureFlag) Unmarshal added in v0.20.2

func (m *UIFeatureFlag) Unmarshal(dAtA []byte) error

func (*UIFeatureFlag) XXX_DiscardUnknown added in v0.20.2

func (m *UIFeatureFlag) XXX_DiscardUnknown()

func (*UIFeatureFlag) XXX_Marshal added in v0.20.2

func (m *UIFeatureFlag) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UIFeatureFlag) XXX_Merge added in v0.20.2

func (m *UIFeatureFlag) XXX_Merge(src proto.Message)

func (*UIFeatureFlag) XXX_Size added in v0.20.2

func (m *UIFeatureFlag) XXX_Size() int

func (*UIFeatureFlag) XXX_Unmarshal added in v0.20.2

func (m *UIFeatureFlag) XXX_Unmarshal(b []byte) error

type UIHiddenInputSpec added in v0.22.11

type UIHiddenInputSpec struct {
	Value string `json:"value" protobuf:"bytes,1,opt,name=value"`
}

Describes a hidden input field attached to a button, with a value to pass on any submit.

func (*UIHiddenInputSpec) DeepCopy added in v0.22.11

func (in *UIHiddenInputSpec) DeepCopy() *UIHiddenInputSpec

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

func (*UIHiddenInputSpec) DeepCopyInto added in v0.22.11

func (in *UIHiddenInputSpec) DeepCopyInto(out *UIHiddenInputSpec)

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

func (*UIHiddenInputSpec) Descriptor added in v0.22.11

func (*UIHiddenInputSpec) Descriptor() ([]byte, []int)

func (*UIHiddenInputSpec) Marshal added in v0.22.11

func (m *UIHiddenInputSpec) Marshal() (dAtA []byte, err error)

func (*UIHiddenInputSpec) MarshalTo added in v0.22.11

func (m *UIHiddenInputSpec) MarshalTo(dAtA []byte) (int, error)

func (*UIHiddenInputSpec) MarshalToSizedBuffer added in v0.22.11

func (m *UIHiddenInputSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UIHiddenInputSpec) ProtoMessage added in v0.22.11

func (*UIHiddenInputSpec) ProtoMessage()

func (*UIHiddenInputSpec) Reset added in v0.22.11

func (m *UIHiddenInputSpec) Reset()

func (*UIHiddenInputSpec) Size added in v0.22.11

func (m *UIHiddenInputSpec) Size() (n int)

func (*UIHiddenInputSpec) String added in v0.22.11

func (this *UIHiddenInputSpec) String() string

func (*UIHiddenInputSpec) Unmarshal added in v0.22.11

func (m *UIHiddenInputSpec) Unmarshal(dAtA []byte) error

func (*UIHiddenInputSpec) XXX_DiscardUnknown added in v0.22.11

func (m *UIHiddenInputSpec) XXX_DiscardUnknown()

func (*UIHiddenInputSpec) XXX_Marshal added in v0.22.11

func (m *UIHiddenInputSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UIHiddenInputSpec) XXX_Merge added in v0.22.11

func (m *UIHiddenInputSpec) XXX_Merge(src proto.Message)

func (*UIHiddenInputSpec) XXX_Size added in v0.22.11

func (m *UIHiddenInputSpec) XXX_Size() int

func (*UIHiddenInputSpec) XXX_Unmarshal added in v0.22.11

func (m *UIHiddenInputSpec) XXX_Unmarshal(b []byte) error

type UIHiddenInputStatus added in v0.22.11

type UIHiddenInputStatus struct {
	Value string `json:"value" protobuf:"bytes,1,opt,name=value"`
}

func (*UIHiddenInputStatus) DeepCopy added in v0.22.11

func (in *UIHiddenInputStatus) DeepCopy() *UIHiddenInputStatus

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

func (*UIHiddenInputStatus) DeepCopyInto added in v0.22.11

func (in *UIHiddenInputStatus) DeepCopyInto(out *UIHiddenInputStatus)

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

func (*UIHiddenInputStatus) Descriptor added in v0.22.11

func (*UIHiddenInputStatus) Descriptor() ([]byte, []int)

func (*UIHiddenInputStatus) Marshal added in v0.22.11

func (m *UIHiddenInputStatus) Marshal() (dAtA []byte, err error)

func (*UIHiddenInputStatus) MarshalTo added in v0.22.11

func (m *UIHiddenInputStatus) MarshalTo(dAtA []byte) (int, error)

func (*UIHiddenInputStatus) MarshalToSizedBuffer added in v0.22.11

func (m *UIHiddenInputStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UIHiddenInputStatus) ProtoMessage added in v0.22.11

func (*UIHiddenInputStatus) ProtoMessage()

func (*UIHiddenInputStatus) Reset added in v0.22.11

func (m *UIHiddenInputStatus) Reset()

func (*UIHiddenInputStatus) Size added in v0.22.11

func (m *UIHiddenInputStatus) Size() (n int)

func (*UIHiddenInputStatus) String added in v0.22.11

func (this *UIHiddenInputStatus) String() string

func (*UIHiddenInputStatus) Unmarshal added in v0.22.11

func (m *UIHiddenInputStatus) Unmarshal(dAtA []byte) error

func (*UIHiddenInputStatus) XXX_DiscardUnknown added in v0.22.11

func (m *UIHiddenInputStatus) XXX_DiscardUnknown()

func (*UIHiddenInputStatus) XXX_Marshal added in v0.22.11

func (m *UIHiddenInputStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UIHiddenInputStatus) XXX_Merge added in v0.22.11

func (m *UIHiddenInputStatus) XXX_Merge(src proto.Message)

func (*UIHiddenInputStatus) XXX_Size added in v0.22.11

func (m *UIHiddenInputStatus) XXX_Size() int

func (*UIHiddenInputStatus) XXX_Unmarshal added in v0.22.11

func (m *UIHiddenInputStatus) XXX_Unmarshal(b []byte) error

type UIInputSpec added in v0.22.4

type UIInputSpec struct {
	// Name of this input. Must be unique within the UIButton.
	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`

	// A label to display next to this input in the UI.
	// +optional
	Label string `json:"label" protobuf:"bytes,2,opt,name=label"`

	// A Text input that takes a string.
	// +optional
	Text *UITextInputSpec `json:"text,omitempty" protobuf:"bytes,3,opt,name=text"`

	// A Bool input that is true or false
	// +optional
	Bool *UIBoolInputSpec `json:"bool,omitempty" protobuf:"bytes,4,opt,name=bool"`

	// An input that has a constant value and does not display to the user
	// +optional
	Hidden *UIHiddenInputSpec `json:"hidden,omitempty" protobuf:"bytes,5,opt,name=hidden"`

	// A Choice input that takes a list of strings
	Choice *UIChoiceInputSpec `json:"choice,omitempty" protobuf:"bytes,6,opt,name=choice"`
}

Defines an Input to render in the UI. If UIButton is analogous to an HTML <form>, UIInput is analogous to an HTML <input>.

func (*UIInputSpec) DeepCopy added in v0.22.4

func (in *UIInputSpec) DeepCopy() *UIInputSpec

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

func (*UIInputSpec) DeepCopyInto added in v0.22.4

func (in *UIInputSpec) DeepCopyInto(out *UIInputSpec)

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

func (*UIInputSpec) Descriptor added in v0.22.4

func (*UIInputSpec) Descriptor() ([]byte, []int)

func (*UIInputSpec) Marshal added in v0.22.4

func (m *UIInputSpec) Marshal() (dAtA []byte, err error)

func (*UIInputSpec) MarshalTo added in v0.22.4

func (m *UIInputSpec) MarshalTo(dAtA []byte) (int, error)

func (*UIInputSpec) MarshalToSizedBuffer added in v0.22.4

func (m *UIInputSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UIInputSpec) ProtoMessage added in v0.22.4

func (*UIInputSpec) ProtoMessage()

func (*UIInputSpec) Reset added in v0.22.4

func (m *UIInputSpec) Reset()

func (*UIInputSpec) Size added in v0.22.4

func (m *UIInputSpec) Size() (n int)

func (*UIInputSpec) String added in v0.22.4

func (this *UIInputSpec) String() string

func (*UIInputSpec) Unmarshal added in v0.22.4

func (m *UIInputSpec) Unmarshal(dAtA []byte) error

func (*UIInputSpec) Validate added in v0.22.4

func (in *UIInputSpec) Validate(_ context.Context, path *field.Path) field.ErrorList

func (*UIInputSpec) XXX_DiscardUnknown added in v0.22.4

func (m *UIInputSpec) XXX_DiscardUnknown()

func (*UIInputSpec) XXX_Marshal added in v0.22.4

func (m *UIInputSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UIInputSpec) XXX_Merge added in v0.22.4

func (m *UIInputSpec) XXX_Merge(src proto.Message)

func (*UIInputSpec) XXX_Size added in v0.22.4

func (m *UIInputSpec) XXX_Size() int

func (*UIInputSpec) XXX_Unmarshal added in v0.22.4

func (m *UIInputSpec) XXX_Unmarshal(b []byte) error

type UIInputStatus added in v0.22.4

type UIInputStatus struct {
	// Name of the input whose status this is. Must match the `Name` of a corresponding
	// UIInputSpec.
	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`

	// The status of the input, if it's text
	// +optional
	Text *UITextInputStatus `json:"text,omitempty" protobuf:"bytes,2,opt,name=text"`

	// The status of the input, if it's a bool
	// +optional
	Bool *UIBoolInputStatus `json:"bool,omitempty" protobuf:"bytes,3,opt,name=bool"`

	// The status of the input, if it's a hidden
	// +optional
	Hidden *UIHiddenInputStatus `json:"hidden,omitempty" protobuf:"bytes,4,opt,name=hidden"`

	// The status of the input, if it's a choice
	// +optional
	Choice *UIChoiceInputStatus `json:"choice,omitempty" protobuf:"bytes,5,opt,name=choice"`
}

The status corresponding to a UIInputSpec

func (*UIInputStatus) DeepCopy added in v0.22.4

func (in *UIInputStatus) DeepCopy() *UIInputStatus

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

func (*UIInputStatus) DeepCopyInto added in v0.22.4

func (in *UIInputStatus) DeepCopyInto(out *UIInputStatus)

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

func (*UIInputStatus) Descriptor added in v0.22.4

func (*UIInputStatus) Descriptor() ([]byte, []int)

func (*UIInputStatus) Marshal added in v0.22.4

func (m *UIInputStatus) Marshal() (dAtA []byte, err error)

func (*UIInputStatus) MarshalTo added in v0.22.4

func (m *UIInputStatus) MarshalTo(dAtA []byte) (int, error)

func (*UIInputStatus) MarshalToSizedBuffer added in v0.22.4

func (m *UIInputStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UIInputStatus) ProtoMessage added in v0.22.4

func (*UIInputStatus) ProtoMessage()

func (*UIInputStatus) Reset added in v0.22.4

func (m *UIInputStatus) Reset()

func (*UIInputStatus) Size added in v0.22.4

func (m *UIInputStatus) Size() (n int)

func (*UIInputStatus) String added in v0.22.4

func (this *UIInputStatus) String() string

func (*UIInputStatus) Unmarshal added in v0.22.4

func (m *UIInputStatus) Unmarshal(dAtA []byte) error

func (*UIInputStatus) XXX_DiscardUnknown added in v0.22.4

func (m *UIInputStatus) XXX_DiscardUnknown()

func (*UIInputStatus) XXX_Marshal added in v0.22.4

func (m *UIInputStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UIInputStatus) XXX_Merge added in v0.22.4

func (m *UIInputStatus) XXX_Merge(src proto.Message)

func (*UIInputStatus) XXX_Size added in v0.22.4

func (m *UIInputStatus) XXX_Size() int

func (*UIInputStatus) XXX_Unmarshal added in v0.22.4

func (m *UIInputStatus) XXX_Unmarshal(b []byte) error

type UIResource added in v0.20.2

type UIResource struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Spec   UIResourceSpec   `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
	Status UIResourceStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
}

UIResource represents per-resource status data for rendering the web UI.

Treat this as a legacy data structure that's more intended to make transition easier rather than a robust long-term API.

+k8s:openapi-gen=true

func (*UIResource) DeepCopy added in v0.20.2

func (in *UIResource) DeepCopy() *UIResource

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

func (*UIResource) DeepCopyInto added in v0.20.2

func (in *UIResource) DeepCopyInto(out *UIResource)

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

func (*UIResource) DeepCopyObject added in v0.20.2

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

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

func (*UIResource) Descriptor added in v0.20.2

func (*UIResource) Descriptor() ([]byte, []int)

func (*UIResource) GetGroupVersionResource added in v0.20.2

func (in *UIResource) GetGroupVersionResource() schema.GroupVersionResource

func (*UIResource) GetObjectMeta added in v0.20.2

func (in *UIResource) GetObjectMeta() *metav1.ObjectMeta

func (*UIResource) GetSingularName added in v0.33.0

func (in *UIResource) GetSingularName() string

func (*UIResource) GetSpec added in v0.22.1

func (in *UIResource) GetSpec() interface{}

func (*UIResource) GetStatus added in v0.20.2

func (in *UIResource) GetStatus() resource.StatusSubResource

func (*UIResource) IsStorageVersion added in v0.20.2

func (in *UIResource) IsStorageVersion() bool

func (*UIResource) Marshal added in v0.20.2

func (m *UIResource) Marshal() (dAtA []byte, err error)

func (*UIResource) MarshalTo added in v0.20.2

func (m *UIResource) MarshalTo(dAtA []byte) (int, error)

func (*UIResource) MarshalToSizedBuffer added in v0.20.2

func (m *UIResource) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UIResource) NamespaceScoped added in v0.20.2

func (in *UIResource) NamespaceScoped() bool

func (*UIResource) New added in v0.20.2

func (in *UIResource) New() runtime.Object

func (*UIResource) NewList added in v0.20.2

func (in *UIResource) NewList() runtime.Object

func (*UIResource) ProtoMessage added in v0.20.2

func (*UIResource) ProtoMessage()

func (*UIResource) Reset added in v0.20.2

func (m *UIResource) Reset()

func (*UIResource) Size added in v0.20.2

func (m *UIResource) Size() (n int)

func (*UIResource) String added in v0.20.2

func (this *UIResource) String() string

func (*UIResource) Unmarshal added in v0.20.2

func (m *UIResource) Unmarshal(dAtA []byte) error

func (*UIResource) Validate added in v0.20.2

func (in *UIResource) Validate(ctx context.Context) field.ErrorList

func (*UIResource) XXX_DiscardUnknown added in v0.20.2

func (m *UIResource) XXX_DiscardUnknown()

func (*UIResource) XXX_Marshal added in v0.20.2

func (m *UIResource) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UIResource) XXX_Merge added in v0.20.2

func (m *UIResource) XXX_Merge(src proto.Message)

func (*UIResource) XXX_Size added in v0.20.2

func (m *UIResource) XXX_Size() int

func (*UIResource) XXX_Unmarshal added in v0.20.2

func (m *UIResource) XXX_Unmarshal(b []byte) error

type UIResourceCondition added in v0.23.2

type UIResourceCondition struct {
	// Type of UI Resource condition.
	Type UIResourceConditionType `json:"type" protobuf:"bytes,1,opt,name=type,casttype=UIResourceConditionType"`

	// Status of the condition, one of True, False, Unknown.
	Status metav1.ConditionStatus `json:"status" protobuf:"bytes,6,opt,name=status,casttype=k8s.io/apimachinery/pkg/apis/meta/v1.ConditionStatus"`

	// Last time the condition transitioned from one status to another.
	// +optional
	LastTransitionTime metav1.MicroTime `json:"lastTransitionTime,omitempty" protobuf:"bytes,3,opt,name=lastTransitionTime"`

	// The reason for the condition's last transition.
	// +optional
	Reason string `json:"reason,omitempty" protobuf:"bytes,4,opt,name=reason"`

	// A human readable message indicating details about the transition.
	// +optional
	Message string `json:"message,omitempty" protobuf:"bytes,5,opt,name=message"`
}

func (*UIResourceCondition) DeepCopy added in v0.23.2

func (in *UIResourceCondition) DeepCopy() *UIResourceCondition

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

func (*UIResourceCondition) DeepCopyInto added in v0.23.2

func (in *UIResourceCondition) DeepCopyInto(out *UIResourceCondition)

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

func (*UIResourceCondition) Descriptor added in v0.23.2

func (*UIResourceCondition) Descriptor() ([]byte, []int)

func (*UIResourceCondition) Marshal added in v0.23.2

func (m *UIResourceCondition) Marshal() (dAtA []byte, err error)

func (*UIResourceCondition) MarshalTo added in v0.23.2

func (m *UIResourceCondition) MarshalTo(dAtA []byte) (int, error)

func (*UIResourceCondition) MarshalToSizedBuffer added in v0.23.2

func (m *UIResourceCondition) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UIResourceCondition) ProtoMessage added in v0.23.2

func (*UIResourceCondition) ProtoMessage()

func (*UIResourceCondition) Reset added in v0.23.2

func (m *UIResourceCondition) Reset()

func (*UIResourceCondition) Size added in v0.23.2

func (m *UIResourceCondition) Size() (n int)

func (*UIResourceCondition) String added in v0.23.2

func (this *UIResourceCondition) String() string

func (*UIResourceCondition) Unmarshal added in v0.23.2

func (m *UIResourceCondition) Unmarshal(dAtA []byte) error

func (*UIResourceCondition) XXX_DiscardUnknown added in v0.23.2

func (m *UIResourceCondition) XXX_DiscardUnknown()

func (*UIResourceCondition) XXX_Marshal added in v0.23.2

func (m *UIResourceCondition) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UIResourceCondition) XXX_Merge added in v0.23.2

func (m *UIResourceCondition) XXX_Merge(src proto.Message)

func (*UIResourceCondition) XXX_Size added in v0.23.2

func (m *UIResourceCondition) XXX_Size() int

func (*UIResourceCondition) XXX_Unmarshal added in v0.23.2

func (m *UIResourceCondition) XXX_Unmarshal(b []byte) error

type UIResourceConditionType added in v0.23.2

type UIResourceConditionType string
const UIResourceReady UIResourceConditionType = "Ready"

Ready means the UI Resource has built, deployed, and passed any readiness checks.

const UIResourceUpToDate UIResourceConditionType = "UpToDate"

UpToDate means that the UI Resource has successfully built and deployed all its components. Runtime checks may not be passing yet.

type UIResourceKubernetes added in v0.20.2

type UIResourceKubernetes struct {
	// The name of the active pod.
	//
	// The active pod tends to be what Tilt defaults to for port-forwards,
	// live-updates, etc.
	// +optional
	PodName string `json:"podName,omitempty" protobuf:"bytes,1,opt,name=podName"`

	// The creation time of the active pod.
	// +optional
	PodCreationTime metav1.Time `json:"podCreationTime,omitempty" protobuf:"bytes,2,opt,name=podCreationTime"`

	// The last update time of the active pod
	// +optional
	PodUpdateStartTime metav1.Time `json:"podUpdateStartTime,omitempty" protobuf:"bytes,3,opt,name=podUpdateStartTime"`

	// The status of the active pod.
	// +optional
	PodStatus string `json:"podStatus,omitempty" protobuf:"bytes,4,opt,name=podStatus"`

	// Extra error messaging around the current status of the active pod.
	// +optional
	PodStatusMessage string `json:"podStatusMessage,omitempty" protobuf:"bytes,5,opt,name=podStatusMessage"`

	// Whether all the containers in the pod are currently healthy
	// and have passed readiness checks.
	// +optional
	AllContainersReady bool `json:"allContainersReady,omitempty" protobuf:"varint,6,opt,name=allContainersReady"`

	// The number of pod restarts.
	// +optional
	PodRestarts int32 `json:"podRestarts,omitempty" protobuf:"varint,7,opt,name=podRestarts"`

	// The span where this pod stores its logs in the Tilt logstore.
	// +optional
	SpanID string `json:"spanID,omitempty" protobuf:"bytes,8,opt,name=spanID"`

	// The list of all resources deployed in the Kubernetes deploy
	// for this resource.
	// +optional
	DisplayNames []string `json:"displayNames,omitempty" protobuf:"bytes,9,rep,name=displayNames"`
}

UIResourceKubernetes contains status information specific to Kubernetes.

func (*UIResourceKubernetes) DeepCopy added in v0.20.2

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

func (*UIResourceKubernetes) DeepCopyInto added in v0.20.2

func (in *UIResourceKubernetes) DeepCopyInto(out *UIResourceKubernetes)

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

func (*UIResourceKubernetes) Descriptor added in v0.20.2

func (*UIResourceKubernetes) Descriptor() ([]byte, []int)

func (*UIResourceKubernetes) Marshal added in v0.20.2

func (m *UIResourceKubernetes) Marshal() (dAtA []byte, err error)

func (*UIResourceKubernetes) MarshalTo added in v0.20.2

func (m *UIResourceKubernetes) MarshalTo(dAtA []byte) (int, error)

func (*UIResourceKubernetes) MarshalToSizedBuffer added in v0.20.2

func (m *UIResourceKubernetes) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UIResourceKubernetes) ProtoMessage added in v0.20.2

func (*UIResourceKubernetes) ProtoMessage()

func (*UIResourceKubernetes) Reset added in v0.20.2

func (m *UIResourceKubernetes) Reset()

func (*UIResourceKubernetes) Size added in v0.20.2

func (m *UIResourceKubernetes) Size() (n int)

func (*UIResourceKubernetes) String added in v0.20.2

func (this *UIResourceKubernetes) String() string

func (*UIResourceKubernetes) Unmarshal added in v0.20.2

func (m *UIResourceKubernetes) Unmarshal(dAtA []byte) error

func (*UIResourceKubernetes) XXX_DiscardUnknown added in v0.20.2

func (m *UIResourceKubernetes) XXX_DiscardUnknown()

func (*UIResourceKubernetes) XXX_Marshal added in v0.20.2

func (m *UIResourceKubernetes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UIResourceKubernetes) XXX_Merge added in v0.20.2

func (m *UIResourceKubernetes) XXX_Merge(src proto.Message)

func (*UIResourceKubernetes) XXX_Size added in v0.20.2

func (m *UIResourceKubernetes) XXX_Size() int

func (*UIResourceKubernetes) XXX_Unmarshal added in v0.20.2

func (m *UIResourceKubernetes) XXX_Unmarshal(b []byte) error
type UIResourceLink struct {
	// A URL to link to.
	// +optional
	URL string `json:"url,omitempty" protobuf:"bytes,1,opt,name=url"`

	// The display label on a URL.
	// +optional
	Name string `json:"name,omitempty" protobuf:"bytes,2,opt,name=name"`
}

UIResourceLink represents a link assocatiated with a UIResource.

func (*UIResourceLink) DeepCopy added in v0.20.2

func (in *UIResourceLink) DeepCopy() *UIResourceLink

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

func (*UIResourceLink) DeepCopyInto added in v0.20.2

func (in *UIResourceLink) DeepCopyInto(out *UIResourceLink)

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

func (*UIResourceLink) Descriptor added in v0.20.2

func (*UIResourceLink) Descriptor() ([]byte, []int)

func (*UIResourceLink) Marshal added in v0.20.2

func (m *UIResourceLink) Marshal() (dAtA []byte, err error)

func (*UIResourceLink) MarshalTo added in v0.20.2

func (m *UIResourceLink) MarshalTo(dAtA []byte) (int, error)

func (*UIResourceLink) MarshalToSizedBuffer added in v0.20.2

func (m *UIResourceLink) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UIResourceLink) ProtoMessage added in v0.20.2

func (*UIResourceLink) ProtoMessage()

func (*UIResourceLink) Reset added in v0.20.2

func (m *UIResourceLink) Reset()

func (*UIResourceLink) Size added in v0.20.2

func (m *UIResourceLink) Size() (n int)

func (*UIResourceLink) String added in v0.20.2

func (this *UIResourceLink) String() string

func (*UIResourceLink) Unmarshal added in v0.20.2

func (m *UIResourceLink) Unmarshal(dAtA []byte) error

func (*UIResourceLink) XXX_DiscardUnknown added in v0.20.2

func (m *UIResourceLink) XXX_DiscardUnknown()

func (*UIResourceLink) XXX_Marshal added in v0.20.2

func (m *UIResourceLink) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UIResourceLink) XXX_Merge added in v0.20.2

func (m *UIResourceLink) XXX_Merge(src proto.Message)

func (*UIResourceLink) XXX_Size added in v0.20.2

func (m *UIResourceLink) XXX_Size() int

func (*UIResourceLink) XXX_Unmarshal added in v0.20.2

func (m *UIResourceLink) XXX_Unmarshal(b []byte) error

type UIResourceList added in v0.20.2

type UIResourceList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Items []UIResource `json:"items" protobuf:"bytes,2,rep,name=items"`
}

UIResourceList +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*UIResourceList) DeepCopy added in v0.20.2

func (in *UIResourceList) DeepCopy() *UIResourceList

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

func (*UIResourceList) DeepCopyInto added in v0.20.2

func (in *UIResourceList) DeepCopyInto(out *UIResourceList)

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

func (*UIResourceList) DeepCopyObject added in v0.20.2

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

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

func (*UIResourceList) Descriptor added in v0.20.2

func (*UIResourceList) Descriptor() ([]byte, []int)

func (*UIResourceList) GetListMeta added in v0.20.2

func (in *UIResourceList) GetListMeta() *metav1.ListMeta

func (*UIResourceList) Marshal added in v0.20.2

func (m *UIResourceList) Marshal() (dAtA []byte, err error)

func (*UIResourceList) MarshalTo added in v0.20.2

func (m *UIResourceList) MarshalTo(dAtA []byte) (int, error)

func (*UIResourceList) MarshalToSizedBuffer added in v0.20.2

func (m *UIResourceList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UIResourceList) ProtoMessage added in v0.20.2

func (*UIResourceList) ProtoMessage()

func (*UIResourceList) Reset added in v0.20.2

func (m *UIResourceList) Reset()

func (*UIResourceList) Size added in v0.20.2

func (m *UIResourceList) Size() (n int)

func (*UIResourceList) String added in v0.20.2

func (this *UIResourceList) String() string

func (*UIResourceList) Unmarshal added in v0.20.2

func (m *UIResourceList) Unmarshal(dAtA []byte) error

func (*UIResourceList) XXX_DiscardUnknown added in v0.20.2

func (m *UIResourceList) XXX_DiscardUnknown()

func (*UIResourceList) XXX_Marshal added in v0.20.2

func (m *UIResourceList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UIResourceList) XXX_Merge added in v0.20.2

func (m *UIResourceList) XXX_Merge(src proto.Message)

func (*UIResourceList) XXX_Size added in v0.20.2

func (m *UIResourceList) XXX_Size() int

func (*UIResourceList) XXX_Unmarshal added in v0.20.2

func (m *UIResourceList) XXX_Unmarshal(b []byte) error

type UIResourceLocal added in v0.20.2

type UIResourceLocal struct {
	// The PID of the actively running local command.
	// +optional
	PID int64 `json:"pid,omitempty" protobuf:"varint,1,opt,name=pid"`

	// Whether this represents a test job.
	//
	// Deprecated: Users should use labels for marking services as tests.
	//
	// +optional
	IsTest bool `json:"isTest,omitempty" protobuf:"varint,2,opt,name=isTest"`
}

UIResourceLocal contains status information specific to local commands.

func (*UIResourceLocal) DeepCopy added in v0.20.2

func (in *UIResourceLocal) DeepCopy() *UIResourceLocal

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

func (*UIResourceLocal) DeepCopyInto added in v0.20.2

func (in *UIResourceLocal) DeepCopyInto(out *UIResourceLocal)

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

func (*UIResourceLocal) Descriptor added in v0.20.2

func (*UIResourceLocal) Descriptor() ([]byte, []int)

func (*UIResourceLocal) Marshal added in v0.20.2

func (m *UIResourceLocal) Marshal() (dAtA []byte, err error)

func (*UIResourceLocal) MarshalTo added in v0.20.2

func (m *UIResourceLocal) MarshalTo(dAtA []byte) (int, error)

func (*UIResourceLocal) MarshalToSizedBuffer added in v0.20.2

func (m *UIResourceLocal) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UIResourceLocal) ProtoMessage added in v0.20.2

func (*UIResourceLocal) ProtoMessage()

func (*UIResourceLocal) Reset added in v0.20.2

func (m *UIResourceLocal) Reset()

func (*UIResourceLocal) Size added in v0.20.2

func (m *UIResourceLocal) Size() (n int)

func (*UIResourceLocal) String added in v0.20.2

func (this *UIResourceLocal) String() string

func (*UIResourceLocal) Unmarshal added in v0.20.2

func (m *UIResourceLocal) Unmarshal(dAtA []byte) error

func (*UIResourceLocal) XXX_DiscardUnknown added in v0.20.2

func (m *UIResourceLocal) XXX_DiscardUnknown()

func (*UIResourceLocal) XXX_Marshal added in v0.20.2

func (m *UIResourceLocal) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UIResourceLocal) XXX_Merge added in v0.20.2

func (m *UIResourceLocal) XXX_Merge(src proto.Message)

func (*UIResourceLocal) XXX_Size added in v0.20.2

func (m *UIResourceLocal) XXX_Size() int

func (*UIResourceLocal) XXX_Unmarshal added in v0.20.2

func (m *UIResourceLocal) XXX_Unmarshal(b []byte) error

type UIResourceSpec added in v0.20.2

type UIResourceSpec struct {
}

UIResourceSpec is an empty struct. UIResource is a kludge for making Tilt's internal status readable, not for specifying behavior.

func (*UIResourceSpec) DeepCopy added in v0.20.2

func (in *UIResourceSpec) DeepCopy() *UIResourceSpec

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

func (*UIResourceSpec) DeepCopyInto added in v0.20.2

func (in *UIResourceSpec) DeepCopyInto(out *UIResourceSpec)

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

func (*UIResourceSpec) Descriptor added in v0.20.2

func (*UIResourceSpec) Descriptor() ([]byte, []int)

func (*UIResourceSpec) Marshal added in v0.20.2

func (m *UIResourceSpec) Marshal() (dAtA []byte, err error)

func (*UIResourceSpec) MarshalTo added in v0.20.2

func (m *UIResourceSpec) MarshalTo(dAtA []byte) (int, error)

func (*UIResourceSpec) MarshalToSizedBuffer added in v0.20.2

func (m *UIResourceSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UIResourceSpec) ProtoMessage added in v0.20.2

func (*UIResourceSpec) ProtoMessage()

func (*UIResourceSpec) Reset added in v0.20.2

func (m *UIResourceSpec) Reset()

func (*UIResourceSpec) Size added in v0.20.2

func (m *UIResourceSpec) Size() (n int)

func (*UIResourceSpec) String added in v0.20.2

func (this *UIResourceSpec) String() string

func (*UIResourceSpec) Unmarshal added in v0.20.2

func (m *UIResourceSpec) Unmarshal(dAtA []byte) error

func (*UIResourceSpec) XXX_DiscardUnknown added in v0.20.2

func (m *UIResourceSpec) XXX_DiscardUnknown()

func (*UIResourceSpec) XXX_Marshal added in v0.20.2

func (m *UIResourceSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UIResourceSpec) XXX_Merge added in v0.20.2

func (m *UIResourceSpec) XXX_Merge(src proto.Message)

func (*UIResourceSpec) XXX_Size added in v0.20.2

func (m *UIResourceSpec) XXX_Size() int

func (*UIResourceSpec) XXX_Unmarshal added in v0.20.2

func (m *UIResourceSpec) XXX_Unmarshal(b []byte) error

type UIResourceStateWaiting added in v0.22.15

type UIResourceStateWaiting struct {
	// Reason is a unique, one-word reason for why the UIResource update is pending.
	Reason string `json:"reason" protobuf:"bytes,1,opt,name=reason"`

	// HoldingOn is the set of objects blocking this resource from updating.
	//
	// These objects might NOT be explicit dependencies of the current resource. For example, if an un-parallelizable
	// resource is updating, all other resources with queued updates will be holding on it with a reason of
	// `waiting-for-local`.
	//
	// +optional
	On []UIResourceStateWaitingOnRef `json:"on,omitempty" protobuf:"bytes,2,rep,name=on"`
}

func (*UIResourceStateWaiting) DeepCopy added in v0.22.15

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

func (*UIResourceStateWaiting) DeepCopyInto added in v0.22.15

func (in *UIResourceStateWaiting) DeepCopyInto(out *UIResourceStateWaiting)

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

func (*UIResourceStateWaiting) Descriptor added in v0.22.15

func (*UIResourceStateWaiting) Descriptor() ([]byte, []int)

func (*UIResourceStateWaiting) Marshal added in v0.22.15

func (m *UIResourceStateWaiting) Marshal() (dAtA []byte, err error)

func (*UIResourceStateWaiting) MarshalTo added in v0.22.15

func (m *UIResourceStateWaiting) MarshalTo(dAtA []byte) (int, error)

func (*UIResourceStateWaiting) MarshalToSizedBuffer added in v0.22.15

func (m *UIResourceStateWaiting) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UIResourceStateWaiting) ProtoMessage added in v0.22.15

func (*UIResourceStateWaiting) ProtoMessage()

func (*UIResourceStateWaiting) Reset added in v0.22.15

func (m *UIResourceStateWaiting) Reset()

func (*UIResourceStateWaiting) Size added in v0.22.15

func (m *UIResourceStateWaiting) Size() (n int)

func (*UIResourceStateWaiting) String added in v0.22.15

func (this *UIResourceStateWaiting) String() string

func (*UIResourceStateWaiting) Unmarshal added in v0.22.15

func (m *UIResourceStateWaiting) Unmarshal(dAtA []byte) error

func (*UIResourceStateWaiting) XXX_DiscardUnknown added in v0.22.15

func (m *UIResourceStateWaiting) XXX_DiscardUnknown()

func (*UIResourceStateWaiting) XXX_Marshal added in v0.22.15

func (m *UIResourceStateWaiting) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UIResourceStateWaiting) XXX_Merge added in v0.22.15

func (m *UIResourceStateWaiting) XXX_Merge(src proto.Message)

func (*UIResourceStateWaiting) XXX_Size added in v0.22.15

func (m *UIResourceStateWaiting) XXX_Size() int

func (*UIResourceStateWaiting) XXX_Unmarshal added in v0.22.15

func (m *UIResourceStateWaiting) XXX_Unmarshal(b []byte) error

type UIResourceStateWaitingOnRef added in v0.22.15

type UIResourceStateWaitingOnRef struct {
	// Group for the object type being waited on.
	Group string `json:"group" protobuf:"bytes,1,opt,name=group"`

	// APIVersion for the object type being waited on.
	APIVersion string `json:"apiVersion" protobuf:"bytes,2,opt,name=apiVersion"`

	// Kind of the object type being waited on.
	Kind string `json:"kind" protobuf:"bytes,3,opt,name=kind"`

	// Name of the object being waiting on.
	Name string `json:"name" protobuf:"bytes,4,opt,name=name"`
}

func (*UIResourceStateWaitingOnRef) DeepCopy added in v0.22.15

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

func (*UIResourceStateWaitingOnRef) DeepCopyInto added in v0.22.15

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

func (*UIResourceStateWaitingOnRef) Descriptor added in v0.22.15

func (*UIResourceStateWaitingOnRef) Descriptor() ([]byte, []int)

func (*UIResourceStateWaitingOnRef) Marshal added in v0.22.15

func (m *UIResourceStateWaitingOnRef) Marshal() (dAtA []byte, err error)

func (*UIResourceStateWaitingOnRef) MarshalTo added in v0.22.15

func (m *UIResourceStateWaitingOnRef) MarshalTo(dAtA []byte) (int, error)

func (*UIResourceStateWaitingOnRef) MarshalToSizedBuffer added in v0.22.15

func (m *UIResourceStateWaitingOnRef) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UIResourceStateWaitingOnRef) ProtoMessage added in v0.22.15

func (*UIResourceStateWaitingOnRef) ProtoMessage()

func (*UIResourceStateWaitingOnRef) Reset added in v0.22.15

func (m *UIResourceStateWaitingOnRef) Reset()

func (*UIResourceStateWaitingOnRef) Size added in v0.22.15

func (m *UIResourceStateWaitingOnRef) Size() (n int)

func (*UIResourceStateWaitingOnRef) String added in v0.22.15

func (this *UIResourceStateWaitingOnRef) String() string

func (*UIResourceStateWaitingOnRef) Unmarshal added in v0.22.15

func (m *UIResourceStateWaitingOnRef) Unmarshal(dAtA []byte) error

func (*UIResourceStateWaitingOnRef) XXX_DiscardUnknown added in v0.22.15

func (m *UIResourceStateWaitingOnRef) XXX_DiscardUnknown()

func (*UIResourceStateWaitingOnRef) XXX_Marshal added in v0.22.15

func (m *UIResourceStateWaitingOnRef) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UIResourceStateWaitingOnRef) XXX_Merge added in v0.22.15

func (m *UIResourceStateWaitingOnRef) XXX_Merge(src proto.Message)

func (*UIResourceStateWaitingOnRef) XXX_Size added in v0.22.15

func (m *UIResourceStateWaitingOnRef) XXX_Size() int

func (*UIResourceStateWaitingOnRef) XXX_Unmarshal added in v0.22.15

func (m *UIResourceStateWaitingOnRef) XXX_Unmarshal(b []byte) error

type UIResourceStatus added in v0.20.2

type UIResourceStatus struct {
	// The last time this resource was deployed.
	// +optional
	LastDeployTime metav1.MicroTime `json:"lastDeployTime,omitempty" protobuf:"bytes,1,opt,name=lastDeployTime"`

	// Bit mask representing whether this resource is run when:
	// 1) When a file changes
	// 2) When the resource initializes
	// +optional
	TriggerMode int32 `json:"triggerMode,omitempty" protobuf:"varint,2,opt,name=triggerMode"`

	// Past completed builds.
	// +optional
	BuildHistory []UIBuildTerminated `json:"buildHistory,omitempty" protobuf:"bytes,3,rep,name=buildHistory"`

	// The currently running build, if any.
	// +optional
	CurrentBuild *UIBuildRunning `json:"currentBuild,omitempty" protobuf:"bytes,4,opt,name=currentBuild"`

	// When the build was put in the pending queue.
	// +optional
	PendingBuildSince metav1.MicroTime `json:"pendingBuildSince,omitempty" protobuf:"bytes,5,opt,name=pendingBuildSince"`

	// True if the build was put in the pending queue due to file changes.
	// +optional
	HasPendingChanges bool `json:"hasPendingChanges,omitempty" protobuf:"varint,6,opt,name=hasPendingChanges"`

	// Links attached to this resource.
	// +optional
	EndpointLinks []UIResourceLink `json:"endpointLinks,omitempty" protobuf:"bytes,7,rep,name=endpointLinks"`

	// Extra data about Kubernetes resources.
	// +optional
	K8sResourceInfo *UIResourceKubernetes `json:"k8sResourceInfo,omitempty" protobuf:"bytes,8,opt,name=k8sResourceInfo"`

	// Extra data about Local resources
	// +optional
	LocalResourceInfo *UIResourceLocal `json:"localResourceInfo,omitempty" protobuf:"bytes,9,opt,name=localResourceInfo"`

	// The RuntimeStatus is a simple, high-level summary of the runtime state of a server.
	//
	// Not all resources run servers.
	// +optional
	RuntimeStatus RuntimeStatus `json:"runtimeStatus,omitempty" protobuf:"bytes,10,opt,name=runtimeStatus,casttype=RuntimeStatus"`

	// The UpdateStatus is a simple, high-level summary of any update tasks to bring
	// the resource up-to-date.
	//
	// If the resource runs a server, this may include both build tasks and live-update
	// syncing.
	// +optional
	UpdateStatus UpdateStatus `json:"updateStatus,omitempty" protobuf:"bytes,14,opt,name=updateStatus,casttype=UpdateStatus"`

	// Information about all the target specs that this resource summarizes.
	// +optional
	Specs []UIResourceTargetSpec `json:"specs,omitempty" protobuf:"bytes,12,rep,name=specs"`

	// Queued is a simple indicator of whether the resource is queued for an update.
	// +optional
	Queued bool `json:"queued,omitempty" protobuf:"varint,13,opt,name=queued"`

	// Order expresses the relative order of resources in the UI when they're not
	// otherwise sorted. Lower integers go first. When two resources have the same
	// order, they should be sorted by name.
	//
	// When UIResources are generated from the Tiltfile, we use the order they
	// were added to the Tiltfile for the Order field.
	//
	// +optional
	Order int32 `json:"order,omitempty" protobuf:"varint,15,opt,name=order"`

	// Information about the resource's objects' disabled status.
	DisableStatus DisableResourceStatus `json:"disableStatus,omitempty" protobuf:"bytes,16,opt,name=disableStatus"`

	// Waiting provides detail on why the resource is currently blocked from updating.
	//
	// +optional
	Waiting *UIResourceStateWaiting `json:"waiting,omitempty" protobuf:"bytes,17,opt,name=waiting"`

	// Represents the latest available observations of a UIResource's current state.
	//
	// Designed for compatibility with 'wait' and cross-resource status reporting.
	// https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#typical-status-properties
	//
	// +optional
	Conditions []UIResourceCondition `json:"conditions,omitempty" protobuf:"bytes,18,rep,name=conditions"`
}

UIResourceStatus defines the observed state of UIResource

func (UIResourceStatus) CopyTo added in v0.20.2

func (*UIResourceStatus) DeepCopy added in v0.20.2

func (in *UIResourceStatus) DeepCopy() *UIResourceStatus

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

func (*UIResourceStatus) DeepCopyInto added in v0.20.2

func (in *UIResourceStatus) DeepCopyInto(out *UIResourceStatus)

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

func (*UIResourceStatus) Descriptor added in v0.20.2

func (*UIResourceStatus) Descriptor() ([]byte, []int)

func (*UIResourceStatus) Marshal added in v0.20.2

func (m *UIResourceStatus) Marshal() (dAtA []byte, err error)

func (*UIResourceStatus) MarshalTo added in v0.20.2

func (m *UIResourceStatus) MarshalTo(dAtA []byte) (int, error)

func (*UIResourceStatus) MarshalToSizedBuffer added in v0.20.2

func (m *UIResourceStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UIResourceStatus) ProtoMessage added in v0.20.2

func (*UIResourceStatus) ProtoMessage()

func (*UIResourceStatus) Reset added in v0.20.2

func (m *UIResourceStatus) Reset()

func (*UIResourceStatus) Size added in v0.20.2

func (m *UIResourceStatus) Size() (n int)

func (*UIResourceStatus) String added in v0.20.2

func (this *UIResourceStatus) String() string

func (*UIResourceStatus) Unmarshal added in v0.20.2

func (m *UIResourceStatus) Unmarshal(dAtA []byte) error

func (*UIResourceStatus) XXX_DiscardUnknown added in v0.20.2

func (m *UIResourceStatus) XXX_DiscardUnknown()

func (*UIResourceStatus) XXX_Marshal added in v0.20.2

func (m *UIResourceStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UIResourceStatus) XXX_Merge added in v0.20.2

func (m *UIResourceStatus) XXX_Merge(src proto.Message)

func (*UIResourceStatus) XXX_Size added in v0.20.2

func (m *UIResourceStatus) XXX_Size() int

func (*UIResourceStatus) XXX_Unmarshal added in v0.20.2

func (m *UIResourceStatus) XXX_Unmarshal(b []byte) error

type UIResourceTargetSpec added in v0.20.2

type UIResourceTargetSpec struct {
	// The ID of the target.
	// +optional
	ID string `json:"id,omitempty" protobuf:"bytes,1,opt,name=id"`

	// The type of the target.
	// +optional
	Type UIResourceTargetType `json:"type,omitempty" protobuf:"bytes,2,opt,name=type,casttype=UIResourceTargetType"`

	// Whether the target has a live update associated with it.
	// +optional
	HasLiveUpdate bool `json:"hasLiveUpdate,omitempty" protobuf:"varint,3,opt,name=hasLiveUpdate"`
}

UIResourceTargetSpec represents the spec of a build or deploy that a resource summarizes.

func (*UIResourceTargetSpec) DeepCopy added in v0.20.2

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

func (*UIResourceTargetSpec) DeepCopyInto added in v0.20.2

func (in *UIResourceTargetSpec) DeepCopyInto(out *UIResourceTargetSpec)

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

func (*UIResourceTargetSpec) Descriptor added in v0.20.2

func (*UIResourceTargetSpec) Descriptor() ([]byte, []int)

func (*UIResourceTargetSpec) Marshal added in v0.20.2

func (m *UIResourceTargetSpec) Marshal() (dAtA []byte, err error)

func (*UIResourceTargetSpec) MarshalTo added in v0.20.2

func (m *UIResourceTargetSpec) MarshalTo(dAtA []byte) (int, error)

func (*UIResourceTargetSpec) MarshalToSizedBuffer added in v0.20.2

func (m *UIResourceTargetSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UIResourceTargetSpec) ProtoMessage added in v0.20.2

func (*UIResourceTargetSpec) ProtoMessage()

func (*UIResourceTargetSpec) Reset added in v0.20.2

func (m *UIResourceTargetSpec) Reset()

func (*UIResourceTargetSpec) Size added in v0.20.2

func (m *UIResourceTargetSpec) Size() (n int)

func (*UIResourceTargetSpec) String added in v0.20.2

func (this *UIResourceTargetSpec) String() string

func (*UIResourceTargetSpec) Unmarshal added in v0.20.2

func (m *UIResourceTargetSpec) Unmarshal(dAtA []byte) error

func (*UIResourceTargetSpec) XXX_DiscardUnknown added in v0.20.2

func (m *UIResourceTargetSpec) XXX_DiscardUnknown()

func (*UIResourceTargetSpec) XXX_Marshal added in v0.20.2

func (m *UIResourceTargetSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UIResourceTargetSpec) XXX_Merge added in v0.20.2

func (m *UIResourceTargetSpec) XXX_Merge(src proto.Message)

func (*UIResourceTargetSpec) XXX_Size added in v0.20.2

func (m *UIResourceTargetSpec) XXX_Size() int

func (*UIResourceTargetSpec) XXX_Unmarshal added in v0.20.2

func (m *UIResourceTargetSpec) XXX_Unmarshal(b []byte) error

type UIResourceTargetType added in v0.20.2

type UIResourceTargetType string

UIResourceTargetType identifies the different categories of task in a resource.

const (
	// The target type is unspecified.
	UIResourceTargetTypeUnspecified UIResourceTargetType = "unspecified"

	// The target is a container image build.
	UIResourceTargetTypeImage UIResourceTargetType = "image"

	// The target is a Kubernetes resource deployment.
	UIResourceTargetTypeKubernetes UIResourceTargetType = "k8s"

	// The target is a Docker Compose service deployment.
	UIResourceTargetTypeDockerCompose UIResourceTargetType = "docker-compose"

	// The target is a local command or server.
	UIResourceTargetTypeLocal UIResourceTargetType = "local"
)

type UISession added in v0.20.2

type UISession struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Spec   UISessionSpec   `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
	Status UISessionStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
}

UISession represents global status data for rendering the web UI.

Treat this as a legacy data structure that's more intended to make transition easier rather than a robust long-term API.

Per-resource status data should be stored in UIResource.

+k8s:openapi-gen=true

func (*UISession) DeepCopy added in v0.20.2

func (in *UISession) DeepCopy() *UISession

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

func (*UISession) DeepCopyInto added in v0.20.2

func (in *UISession) DeepCopyInto(out *UISession)

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

func (*UISession) DeepCopyObject added in v0.20.2

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

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

func (*UISession) Descriptor added in v0.20.2

func (*UISession) Descriptor() ([]byte, []int)

func (*UISession) GetGroupVersionResource added in v0.20.2

func (in *UISession) GetGroupVersionResource() schema.GroupVersionResource

func (*UISession) GetObjectMeta added in v0.20.2

func (in *UISession) GetObjectMeta() *metav1.ObjectMeta

func (*UISession) GetSingularName added in v0.33.0

func (in *UISession) GetSingularName() string

func (*UISession) GetStatus added in v0.20.2

func (in *UISession) GetStatus() resource.StatusSubResource

func (*UISession) IsStorageVersion added in v0.20.2

func (in *UISession) IsStorageVersion() bool

func (*UISession) Marshal added in v0.20.2

func (m *UISession) Marshal() (dAtA []byte, err error)

func (*UISession) MarshalTo added in v0.20.2

func (m *UISession) MarshalTo(dAtA []byte) (int, error)

func (*UISession) MarshalToSizedBuffer added in v0.20.2

func (m *UISession) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UISession) NamespaceScoped added in v0.20.2

func (in *UISession) NamespaceScoped() bool

func (*UISession) New added in v0.20.2

func (in *UISession) New() runtime.Object

func (*UISession) NewList added in v0.20.2

func (in *UISession) NewList() runtime.Object

func (*UISession) ProtoMessage added in v0.20.2

func (*UISession) ProtoMessage()

func (*UISession) Reset added in v0.20.2

func (m *UISession) Reset()

func (*UISession) Size added in v0.20.2

func (m *UISession) Size() (n int)

func (*UISession) String added in v0.20.2

func (this *UISession) String() string

func (*UISession) Unmarshal added in v0.20.2

func (m *UISession) Unmarshal(dAtA []byte) error

func (*UISession) Validate added in v0.20.2

func (in *UISession) Validate(ctx context.Context) field.ErrorList

func (*UISession) XXX_DiscardUnknown added in v0.20.2

func (m *UISession) XXX_DiscardUnknown()

func (*UISession) XXX_Marshal added in v0.20.2

func (m *UISession) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UISession) XXX_Merge added in v0.20.2

func (m *UISession) XXX_Merge(src proto.Message)

func (*UISession) XXX_Size added in v0.20.2

func (m *UISession) XXX_Size() int

func (*UISession) XXX_Unmarshal added in v0.20.2

func (m *UISession) XXX_Unmarshal(b []byte) error

type UISessionList added in v0.20.2

type UISessionList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	Items []UISession `json:"items" protobuf:"bytes,2,rep,name=items"`
}

UISessionList +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*UISessionList) DeepCopy added in v0.20.2

func (in *UISessionList) DeepCopy() *UISessionList

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

func (*UISessionList) DeepCopyInto added in v0.20.2

func (in *UISessionList) DeepCopyInto(out *UISessionList)

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

func (*UISessionList) DeepCopyObject added in v0.20.2

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

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

func (*UISessionList) Descriptor added in v0.20.2

func (*UISessionList) Descriptor() ([]byte, []int)

func (*UISessionList) GetListMeta added in v0.20.2

func (in *UISessionList) GetListMeta() *metav1.ListMeta

func (*UISessionList) Marshal added in v0.20.2

func (m *UISessionList) Marshal() (dAtA []byte, err error)

func (*UISessionList) MarshalTo added in v0.20.2

func (m *UISessionList) MarshalTo(dAtA []byte) (int, error)

func (*UISessionList) MarshalToSizedBuffer added in v0.20.2

func (m *UISessionList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UISessionList) ProtoMessage added in v0.20.2

func (*UISessionList) ProtoMessage()

func (*UISessionList) Reset added in v0.20.2

func (m *UISessionList) Reset()

func (*UISessionList) Size added in v0.20.2

func (m *UISessionList) Size() (n int)

func (*UISessionList) String added in v0.20.2

func (this *UISessionList) String() string

func (*UISessionList) Unmarshal added in v0.20.2

func (m *UISessionList) Unmarshal(dAtA []byte) error

func (*UISessionList) XXX_DiscardUnknown added in v0.20.2

func (m *UISessionList) XXX_DiscardUnknown()

func (*UISessionList) XXX_Marshal added in v0.20.2

func (m *UISessionList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UISessionList) XXX_Merge added in v0.20.2

func (m *UISessionList) XXX_Merge(src proto.Message)

func (*UISessionList) XXX_Size added in v0.20.2

func (m *UISessionList) XXX_Size() int

func (*UISessionList) XXX_Unmarshal added in v0.20.2

func (m *UISessionList) XXX_Unmarshal(b []byte) error

type UISessionSpec added in v0.20.2

type UISessionSpec struct {
}

UISessionSpec is an empty struct. UISession is a kludge for making Tilt's internal status readable, not for specifying behavior.

func (*UISessionSpec) DeepCopy added in v0.20.2

func (in *UISessionSpec) DeepCopy() *UISessionSpec

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

func (*UISessionSpec) DeepCopyInto added in v0.20.2

func (in *UISessionSpec) DeepCopyInto(out *UISessionSpec)

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

func (*UISessionSpec) Descriptor added in v0.20.2

func (*UISessionSpec) Descriptor() ([]byte, []int)

func (*UISessionSpec) Marshal added in v0.20.2

func (m *UISessionSpec) Marshal() (dAtA []byte, err error)

func (*UISessionSpec) MarshalTo added in v0.20.2

func (m *UISessionSpec) MarshalTo(dAtA []byte) (int, error)

func (*UISessionSpec) MarshalToSizedBuffer added in v0.20.2

func (m *UISessionSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UISessionSpec) ProtoMessage added in v0.20.2

func (*UISessionSpec) ProtoMessage()

func (*UISessionSpec) Reset added in v0.20.2

func (m *UISessionSpec) Reset()

func (*UISessionSpec) Size added in v0.20.2

func (m *UISessionSpec) Size() (n int)

func (*UISessionSpec) String added in v0.20.2

func (this *UISessionSpec) String() string

func (*UISessionSpec) Unmarshal added in v0.20.2

func (m *UISessionSpec) Unmarshal(dAtA []byte) error

func (*UISessionSpec) XXX_DiscardUnknown added in v0.20.2

func (m *UISessionSpec) XXX_DiscardUnknown()

func (*UISessionSpec) XXX_Marshal added in v0.20.2

func (m *UISessionSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UISessionSpec) XXX_Merge added in v0.20.2

func (m *UISessionSpec) XXX_Merge(src proto.Message)

func (*UISessionSpec) XXX_Size added in v0.20.2

func (m *UISessionSpec) XXX_Size() int

func (*UISessionSpec) XXX_Unmarshal added in v0.20.2

func (m *UISessionSpec) XXX_Unmarshal(b []byte) error

type UISessionStatus added in v0.20.2

type UISessionStatus struct {
	// FeatureFlags reports a list of experimental features that have been
	// enabled.
	// +optional
	FeatureFlags []UIFeatureFlag `json:"featureFlags,omitempty" protobuf:"bytes,1,rep,name=featureFlags"`

	// NeedsAnalyticsNudge reports whether the UI hasn't opted in or out
	// of analytics, and the UI should nudge them to do so.
	// +optional
	NeedsAnalyticsNudge bool `json:"needsAnalyticsNudge,omitempty" protobuf:"varint,2,opt,name=needsAnalyticsNudge"`

	// RunningTiltBuild reports the currently running version of tilt
	// that this UI is talking to.
	// +optional
	RunningTiltBuild TiltBuild `json:"runningTiltBuild,omitempty" protobuf:"bytes,3,opt,name=runningTiltBuild"`

	// SuggestedTiltVersion tells the UI the recommended version for this
	// user. If the version is different than what's running, the UI
	// may display a prompt to upgrade.
	// +optional
	SuggestedTiltVersion string `json:"suggestedTiltVersion,omitempty" protobuf:"bytes,4,opt,name=suggestedTiltVersion"`

	// VersionSettings indicates whether version updates have been enabled/disabled
	// from the Tiltfile.
	// +optional
	VersionSettings VersionSettings `json:"versionSettings,omitempty" protobuf:"bytes,12,opt,name=versionSettings"`

	// TiltCloudUsername reports the username if the user is signed into
	// TiltCloud.
	//
	// deprecated: no longer populated
	//
	// +optional
	TiltCloudUsername string `json:"tiltCloudUsername,omitempty" protobuf:"bytes,5,opt,name=tiltCloudUsername"`

	// TiltCloudUsername reports the human-readable team name if the user is
	// signed into TiltCloud and the Tiltfile declares a team.
	//
	// deprecated: no longer populated
	//
	// +optional
	TiltCloudTeamName string `json:"tiltCloudTeamName,omitempty" protobuf:"bytes,6,opt,name=tiltCloudTeamName"`

	// TiltCloudSchemeHost reports the base URL of the Tilt Cloud instance
	// associated with this Tilt process. Usually https://cloud.tilt.dev
	//
	// deprecated: no longer populated
	//
	// +optional
	TiltCloudSchemeHost string `json:"tiltCloudSchemeHost,omitempty" protobuf:"bytes,7,opt,name=tiltCloudSchemeHost"`

	// TiltCloudTeamID reports the unique team id if the user is signed into
	// TiltCloud and the Tiltfile declares a team.
	//
	// deprecated: no longer populated
	//
	// +optional
	TiltCloudTeamID string `json:"tiltCloudTeamID,omitempty" protobuf:"bytes,8,opt,name=tiltCloudTeamID"`

	// A FatalError is an error that forces Tilt to stop its control loop.
	// The API server will stay up and continue to serve the UI, but
	// no further builds will happen.
	// +optional
	FatalError string `json:"fatalError,omitempty" protobuf:"bytes,9,opt,name=fatalError"`

	// The time that this instance of tilt started.
	// Clients can use this to determine if the API server has restarted
	// and all the objects need to be refreshed.
	// +optional
	TiltStartTime metav1.Time `json:"tiltStartTime,omitempty" protobuf:"bytes,10,opt,name=tiltStartTime"`

	// An identifier for the Tiltfile that is running.
	// Clients can use this to store data associated with a particular
	// project in LocalStorage or other persistent storage.
	// +optional
	TiltfileKey string `json:"tiltfileKey,omitempty" protobuf:"bytes,11,opt,name=tiltfileKey"`
}

UISessionStatus defines the observed state of UISession

func (UISessionStatus) CopyTo added in v0.20.2

func (*UISessionStatus) DeepCopy added in v0.20.2

func (in *UISessionStatus) DeepCopy() *UISessionStatus

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

func (*UISessionStatus) DeepCopyInto added in v0.20.2

func (in *UISessionStatus) DeepCopyInto(out *UISessionStatus)

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

func (*UISessionStatus) Descriptor added in v0.20.2

func (*UISessionStatus) Descriptor() ([]byte, []int)

func (*UISessionStatus) Marshal added in v0.20.2

func (m *UISessionStatus) Marshal() (dAtA []byte, err error)

func (*UISessionStatus) MarshalTo added in v0.20.2

func (m *UISessionStatus) MarshalTo(dAtA []byte) (int, error)

func (*UISessionStatus) MarshalToSizedBuffer added in v0.20.2

func (m *UISessionStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UISessionStatus) ProtoMessage added in v0.20.2

func (*UISessionStatus) ProtoMessage()

func (*UISessionStatus) Reset added in v0.20.2

func (m *UISessionStatus) Reset()

func (*UISessionStatus) Size added in v0.20.2

func (m *UISessionStatus) Size() (n int)

func (*UISessionStatus) String added in v0.20.2

func (this *UISessionStatus) String() string

func (*UISessionStatus) Unmarshal added in v0.20.2

func (m *UISessionStatus) Unmarshal(dAtA []byte) error

func (*UISessionStatus) XXX_DiscardUnknown added in v0.20.2

func (m *UISessionStatus) XXX_DiscardUnknown()

func (*UISessionStatus) XXX_Marshal added in v0.20.2

func (m *UISessionStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UISessionStatus) XXX_Merge added in v0.20.2

func (m *UISessionStatus) XXX_Merge(src proto.Message)

func (*UISessionStatus) XXX_Size added in v0.20.2

func (m *UISessionStatus) XXX_Size() int

func (*UISessionStatus) XXX_Unmarshal added in v0.20.2

func (m *UISessionStatus) XXX_Unmarshal(b []byte) error

type UITextInputSpec added in v0.22.4

type UITextInputSpec struct {
	// Initial value for this field.
	//
	// +optional
	DefaultValue string `json:"defaultValue,omitempty" protobuf:"bytes,1,opt,name=defaultValue"`

	// A short hint that describes the expected input of this field.
	//
	// +optional
	Placeholder string `json:"placeholder,omitempty" protobuf:"bytes,2,opt,name=placeholder"`
}

Describes a text input field attached to a button.

func (*UITextInputSpec) DeepCopy added in v0.22.4

func (in *UITextInputSpec) DeepCopy() *UITextInputSpec

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

func (*UITextInputSpec) DeepCopyInto added in v0.22.4

func (in *UITextInputSpec) DeepCopyInto(out *UITextInputSpec)

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

func (*UITextInputSpec) Descriptor added in v0.22.4

func (*UITextInputSpec) Descriptor() ([]byte, []int)

func (*UITextInputSpec) Marshal added in v0.22.4

func (m *UITextInputSpec) Marshal() (dAtA []byte, err error)

func (*UITextInputSpec) MarshalTo added in v0.22.4

func (m *UITextInputSpec) MarshalTo(dAtA []byte) (int, error)

func (*UITextInputSpec) MarshalToSizedBuffer added in v0.22.4

func (m *UITextInputSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UITextInputSpec) ProtoMessage added in v0.22.4

func (*UITextInputSpec) ProtoMessage()

func (*UITextInputSpec) Reset added in v0.22.4

func (m *UITextInputSpec) Reset()

func (*UITextInputSpec) Size added in v0.22.4

func (m *UITextInputSpec) Size() (n int)

func (*UITextInputSpec) String added in v0.22.4

func (this *UITextInputSpec) String() string

func (*UITextInputSpec) Unmarshal added in v0.22.4

func (m *UITextInputSpec) Unmarshal(dAtA []byte) error

func (*UITextInputSpec) XXX_DiscardUnknown added in v0.22.4

func (m *UITextInputSpec) XXX_DiscardUnknown()

func (*UITextInputSpec) XXX_Marshal added in v0.22.4

func (m *UITextInputSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UITextInputSpec) XXX_Merge added in v0.22.4

func (m *UITextInputSpec) XXX_Merge(src proto.Message)

func (*UITextInputSpec) XXX_Size added in v0.22.4

func (m *UITextInputSpec) XXX_Size() int

func (*UITextInputSpec) XXX_Unmarshal added in v0.22.4

func (m *UITextInputSpec) XXX_Unmarshal(b []byte) error

type UITextInputStatus added in v0.22.4

type UITextInputStatus struct {
	// The content of the text input.
	Value string `json:"value" protobuf:"bytes,1,opt,name=value"`
}

func (*UITextInputStatus) DeepCopy added in v0.22.4

func (in *UITextInputStatus) DeepCopy() *UITextInputStatus

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

func (*UITextInputStatus) DeepCopyInto added in v0.22.4

func (in *UITextInputStatus) DeepCopyInto(out *UITextInputStatus)

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

func (*UITextInputStatus) Descriptor added in v0.22.4

func (*UITextInputStatus) Descriptor() ([]byte, []int)

func (*UITextInputStatus) Marshal added in v0.22.4

func (m *UITextInputStatus) Marshal() (dAtA []byte, err error)

func (*UITextInputStatus) MarshalTo added in v0.22.4

func (m *UITextInputStatus) MarshalTo(dAtA []byte) (int, error)

func (*UITextInputStatus) MarshalToSizedBuffer added in v0.22.4

func (m *UITextInputStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UITextInputStatus) ProtoMessage added in v0.22.4

func (*UITextInputStatus) ProtoMessage()

func (*UITextInputStatus) Reset added in v0.22.4

func (m *UITextInputStatus) Reset()

func (*UITextInputStatus) Size added in v0.22.4

func (m *UITextInputStatus) Size() (n int)

func (*UITextInputStatus) String added in v0.22.4

func (this *UITextInputStatus) String() string

func (*UITextInputStatus) Unmarshal added in v0.22.4

func (m *UITextInputStatus) Unmarshal(dAtA []byte) error

func (*UITextInputStatus) XXX_DiscardUnknown added in v0.22.4

func (m *UITextInputStatus) XXX_DiscardUnknown()

func (*UITextInputStatus) XXX_Marshal added in v0.22.4

func (m *UITextInputStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UITextInputStatus) XXX_Merge added in v0.22.4

func (m *UITextInputStatus) XXX_Merge(src proto.Message)

func (*UITextInputStatus) XXX_Size added in v0.22.4

func (m *UITextInputStatus) XXX_Size() int

func (*UITextInputStatus) XXX_Unmarshal added in v0.22.4

func (m *UITextInputStatus) XXX_Unmarshal(b []byte) error

type URIScheme added in v0.18.11

type URIScheme string

URIScheme identifies the scheme used for connection to a host for Get actions

const (
	// URISchemeHTTP means that the scheme used will be http://
	URISchemeHTTP URIScheme = "HTTP"
	// URISchemeHTTPS means that the scheme used will be https://
	URISchemeHTTPS URIScheme = "HTTPS"
)

type UpdateStatus added in v0.20.2

type UpdateStatus string

The UpdateStatus is a simple, high-level summary of any update tasks to bring the resource up-to-date.

const (
	// This resource hasn't had any reason to update yet.
	// This usually indicates that it's a manual trigger with no auto_init.
	UpdateStatusNone UpdateStatus = "none"

	// An update is in progress.
	UpdateStatusInProgress UpdateStatus = "in_progress"

	// The last update succeeded.
	UpdateStatusOK UpdateStatus = "ok"

	// An update is queued.
	UpdateStatusPending UpdateStatus = "pending"

	// The last update failed.
	UpdateStatusError UpdateStatus = "error"

	// This resource doesn't have an update command.
	UpdateStatusNotApplicable UpdateStatus = "not_applicable"
)

type VersionSettings added in v0.20.2

type VersionSettings struct {
	// Whether version updates have been enabled/disabled from the Tiltfile.
	// +optional
	CheckUpdates bool `json:"checkUpdates,omitempty" protobuf:"varint,1,opt,name=checkUpdates"`
}

Information about how the Tilt binary handles updates.

func (*VersionSettings) DeepCopy added in v0.20.2

func (in *VersionSettings) DeepCopy() *VersionSettings

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

func (*VersionSettings) DeepCopyInto added in v0.20.2

func (in *VersionSettings) DeepCopyInto(out *VersionSettings)

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

func (*VersionSettings) Descriptor added in v0.20.2

func (*VersionSettings) Descriptor() ([]byte, []int)

func (*VersionSettings) Marshal added in v0.20.2

func (m *VersionSettings) Marshal() (dAtA []byte, err error)

func (*VersionSettings) MarshalTo added in v0.20.2

func (m *VersionSettings) MarshalTo(dAtA []byte) (int, error)

func (*VersionSettings) MarshalToSizedBuffer added in v0.20.2

func (m *VersionSettings) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*VersionSettings) ProtoMessage added in v0.20.2

func (*VersionSettings) ProtoMessage()

func (*VersionSettings) Reset added in v0.20.2

func (m *VersionSettings) Reset()

func (*VersionSettings) Size added in v0.20.2

func (m *VersionSettings) Size() (n int)

func (*VersionSettings) String added in v0.20.2

func (this *VersionSettings) String() string

func (*VersionSettings) Unmarshal added in v0.20.2

func (m *VersionSettings) Unmarshal(dAtA []byte) error

func (*VersionSettings) XXX_DiscardUnknown added in v0.20.2

func (m *VersionSettings) XXX_DiscardUnknown()

func (*VersionSettings) XXX_Marshal added in v0.20.2

func (m *VersionSettings) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*VersionSettings) XXX_Merge added in v0.20.2

func (m *VersionSettings) XXX_Merge(src proto.Message)

func (*VersionSettings) XXX_Size added in v0.20.2

func (m *VersionSettings) XXX_Size() int

func (*VersionSettings) XXX_Unmarshal added in v0.20.2

func (m *VersionSettings) XXX_Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

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