Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TagCommand (0.24 sec)

  1. istioctl/cmd/root.go

    	bugReportCmd := bugreport.Cmd(ctx, root.LoggingOptions)
    	hideInheritedFlags(bugReportCmd, cli.FlagNamespace, cli.FlagIstioNamespace)
    	rootCmd.AddCommand(bugReportCmd)
    
    	tagCmd := tag.TagCommand(ctx)
    	hideInheritedFlags(tag.TagCommand(ctx), cli.FlagNamespace, cli.FlagIstioNamespace, FlagCharts)
    	rootCmd.AddCommand(tagCmd)
    
    	// leave the multicluster commands in x for backwards compat
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Apr 11 20:51:30 GMT 2024
    - 10K bytes
    - Viewed (0)
  2. istioctl/pkg/tag/tag.go

    	outputFormat         = util.TableFormat
    )
    
    type tagDescription struct {
    	Tag        string   `json:"tag"`
    	Revision   string   `json:"revision"`
    	Namespaces []string `json:"namespaces"`
    }
    
    func TagCommand(ctx cli.Context) *cobra.Command {
    	cmd := &cobra.Command{
    		Use:   "tag",
    		Short: "Command group used to interact with revision tags",
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Apr 02 08:32:06 GMT 2024
    - 16.3K bytes
    - Viewed (0)
Back to top