1
0
mirror of https://github.com/alexellis/arkade.git synced 2022-05-07 18:22:49 +03:00
Files
arkade-kubernetes/cmd/venafi/install.go
Alex Ellis (OpenFaaS Ltd) be5a8cc594 Update thanks message to support message
Adds a message to downloads and K8s apps to show how to
support arkade.

Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
2022-04-11 09:30:13 +01:00

25 lines
629 B
Go

// Copyright (c) arkade author(s) 2022. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
package venafi
import "github.com/spf13/cobra"
func MakeInstall() *cobra.Command {
command := &cobra.Command{
Use: "install",
Short: "Install Sponsored Apps for Venafi",
Long: `Install Sponsored Apps for Venafi`,
Aliases: []string{"i"},
Example: ` arkade venafi install [APP]
arkade venafi install --help`,
SilenceUsage: true,
}
command.RunE = func(cmd *cobra.Command, args []string) error {
return cmd.Usage()
}
return command
}