kubernetes/staging/src/k8s.io/kubectl/pkg/cmd/create/create_serviceaccount.go

var serviceAccountLong

var serviceAccountExample

type ServiceAccountOpts

// NewServiceAccountOpts creates a new *ServiceAccountOpts with sane defaults
func NewServiceAccountOpts(ioStreams genericiooptions.IOStreams) *ServiceAccountOpts {}

// NewCmdCreateServiceAccount is a macro command to create a new service account
func NewCmdCreateServiceAccount(f cmdutil.Factory, ioStreams genericiooptions.IOStreams) *cobra.Command {}

// Complete completes all the required options
func (o *ServiceAccountOpts) Complete(f cmdutil.Factory, cmd *cobra.Command, args []string) error {}

// Validate checks ServiceAccountOpts to see if there is sufficient information run the command.
func (o *ServiceAccountOpts) Validate() error {}

// Run makes the api call to the server
func (o *ServiceAccountOpts) Run() error {}

func (o *ServiceAccountOpts) createServiceAccount() (*corev1.ServiceAccount, error) {}