Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for CreateCmd (0.19 sec)

  1. cmd/kubeadm/app/cmd/token.go

    	bto.AddTTLFlagWithName(createCmd.Flags(), "ttl")
    	bto.AddUsagesFlag(createCmd.Flags())
    	bto.AddGroupsFlag(createCmd.Flags())
    	bto.AddDescriptionFlag(createCmd.Flags())
    
    	tokenCmd.AddCommand(createCmd)
    	tokenCmd.AddCommand(newCmdTokenGenerate(out))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  2. istioctl/pkg/workload/workload.go

    	createCmd.PersistentFlags().StringSliceVarP(&annotations, "annotations", "a", nil, "The annotations to apply to the workload instances")
    	createCmd.PersistentFlags().StringSliceVarP(&ports, "ports", "p", nil, "The incoming ports exposed by the workload instance")
    	createCmd.PersistentFlags().StringVarP(&serviceAccount, "serviceAccount", "s", "default", "The service identity to associate with the workload instances")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/command_headers_test.go

    */
    
    package genericclioptions
    
    import (
    	"net/http"
    	"testing"
    
    	"github.com/spf13/cobra"
    )
    
    var kubectlCmd = &cobra.Command{Use: "kubectl"}
    var applyCmd = &cobra.Command{Use: "apply"}
    var createCmd = &cobra.Command{Use: "create"}
    var secretCmd = &cobra.Command{Use: "secret"}
    var genericCmd = &cobra.Command{Use: "generic"}
    var authCmd = &cobra.Command{Use: "auth"}
    var reconcileCmd = &cobra.Command{Use: "reconcile"}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 20 20:34:02 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/vcs/vcs.go

    // like Mercurial, Git, or Subversion.
    type Cmd struct {
    	Name      string
    	Cmd       string     // name of binary to invoke command
    	RootNames []rootName // filename and mode indicating the root of a checkout directory
    
    	CreateCmd   []string // commands to download a fresh copy of a repository
    	DownloadCmd []string // commands to download updates into an existing repository
    
    	TagCmd         []tagCmd // commands to list tags
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
Back to top