commands/wsk.go (46 lines of code) (raw):

/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package commands import ( "github.com/apache/openwhisk-cli/wski18n" "github.com/spf13/cobra" ) // WskCmd defines the entry point for the cli. var WskCmd = &cobra.Command{ Use: "wsk", Short: wski18n.T("OpenWhisk cloud computing command line interface."), Long: logoText(), SilenceUsage: true, PersistentPreRunE: parseConfigFlags, } var listCmd = &cobra.Command{ Use: "list", Short: wski18n.T("list entities in the current namespace"), SilenceUsage: true, SilenceErrors: true, PreRunE: SetupClientConfig, RunE: namespaceGetCmd.RunE, } func init() { WskCmd.SetHelpTemplate(`{{with or .Long .Short }}{{.}} {{end}}{{if or .Runnable .HasSubCommands}}{{.UsageString}}{{end}}`) listCmd.Flags().BoolVarP(&Flags.common.nameSort, "name-sort", "n", false, wski18n.T("sorts a list alphabetically by entity name; only applicable within the limit/skip returned entity block")) WskCmd.AddCommand( actionCmd, activationCmd, packageCmd, ruleCmd, triggerCmd, sdkCmd, propertyCmd, namespaceCmd, listCmd, apiCmd, projectCmd, ) WskCmd.PersistentFlags().BoolVarP(&Flags.Global.Verbose, "verbose", "v", false, wski18n.T("verbose output")) WskCmd.PersistentFlags().BoolVarP(&Flags.Global.Debug, "debug", "d", false, wski18n.T("debug level output")) WskCmd.PersistentFlags().StringVar(&Flags.Global.Cert, "cert", "", wski18n.T("client cert")) WskCmd.PersistentFlags().StringVar(&Flags.Global.Key, "key", "", wski18n.T("client key")) WskCmd.PersistentFlags().StringVarP(&Flags.Global.Auth, "auth", "u", "", wski18n.T("authorization `KEY`")) WskCmd.PersistentFlags().StringVar(&Flags.Global.Apihost, "apihost", "", wski18n.T("whisk API `HOST`")) WskCmd.PersistentFlags().StringVar(&Flags.Global.Apiversion, "apiversion", "", wski18n.T("whisk API `VERSION`")) WskCmd.PersistentFlags().BoolVarP(&Flags.Global.Insecure, "insecure", "i", false, wski18n.T("bypass certificate checking")) }