github.com/tilt-dev/tilt@v0.36.0/pkg/model/orchestrator.go (about)

     1  package model
     2  
     3  // The current orchestrator we're running with (K8s or DockerCompose)
     4  type Orchestrator string
     5  
     6  const OrchestratorUnknown = Orchestrator("")
     7  const OrchestratorK8s = Orchestrator("Kubernetes")
     8  const OrchestratorDC = Orchestrator("DockerCompose")