github.com/tilt-dev/tilt@v0.33.15-0.20240515162809-0a22ed45d8a0/internal/cli/alpha.go (about)

     1  package cli
     2  
     3  import (
     4  	"github.com/spf13/cobra"
     5  	"k8s.io/cli-runtime/pkg/genericclioptions"
     6  )
     7  
     8  func newAlphaCmd(streams genericclioptions.IOStreams) *cobra.Command {
     9  	result := &cobra.Command{
    10  		Use:   "alpha",
    11  		Short: "unstable/advanced commands still in alpha",
    12  		Long: `Unstable/advanced commands still in alpha; for advanced users only.
    13  
    14  The APIs of these commands may change frequently.
    15  `,
    16  	}
    17  
    18  	addCommand(result, newTiltfileResultCmd(streams))
    19  	addCommand(result, newUpdogCmd(streams))
    20  	addCommand(result, newGetCmd(streams))
    21  	addCommand(result, newApiresourcesCmd(streams))
    22  	addCommand(result, newShellCmd(streams))
    23  
    24  	return result
    25  }