PodLogStream v1alpha1

apiVersion: tilt.dev/v1alpha1

import "github.com/tilt-dev/tilt/pkg/apis/core/v1alpha1"

PodLogStream

PodLogStream

Streams logs from a pod on Kubernetes into the core Tilt engine.


PodLogStreamSpec

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

which Kubernetes context to use?


  • cluster (string)

    Cluster the Pod belongs to.

    If not provided, “default” will be used.

  • ignoreContainers ([]string)

    The names of containers to exclude from the stream.

    If onlyContainers and ignoreContainers are not set, will watch all containers in the pod.

  • namespace (string)

    The namespace of the pod to watch. Defaults to the kubecontext default namespace.

  • onlyContainers ([]string)

    The names of containers to include in the stream.

    If onlyContainers and ignoreContainers are not set, will watch all containers in the pod.

  • pod (string)

    The name of the pod to watch. Required.

  • sinceTime (Time)

    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.

    Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.

PodLogStreamStatus

PodLogStreamStatus defines the observed state of PodLogStream


  • containerStatuses ([]ContainerLogStreamStatus)

    A list of containers being watched.

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

    • containerStatuses.active (boolean)

      True when the stream is set up and streaming logs properly.

    • containerStatuses.error (string)

      The last error message encountered while streaming.

      Empty when the stream is actively streaming or successfully terminated.

    • containerStatuses.name (string)

      The name of the container.

    • containerStatuses.terminated (boolean)

      True when the logs are done stream and the container is terminated.

  • error (string)

    Error message encountered while setting up the stream.

PodLogStreamList

PodLogStreamList


  • apiVersion: tilt.dev/v1alpha1

  • kind: PodLogStreamList

  • metadata (ListMeta)

  • items ([]PodLogStream), required