mirror of
https://github.com/helm/helm.git
synced 2026-08-05 23:51:03 +00:00
The result is that when doing shell completion (bash and zsh only), instead of getting no suggestions for commands that take no more arguments, the user will instead be shown an informative message: $ helm list <TAB> This command does not take any more arguments (but may accept flags). Signed-off-by: Marc Khouzam <marc.khouzam@gmail.com>
71 lines
2.0 KiB
Go
71 lines
2.0 KiB
Go
/*
|
|
Copyright The Helm Authors.
|
|
Licensed 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 main
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"helm.sh/helm/v3/cmd/helm/require"
|
|
"helm.sh/helm/v3/pkg/action"
|
|
)
|
|
|
|
const verifyDesc = `
|
|
Verify that the given chart has a valid provenance file.
|
|
|
|
Provenance files provide cryptographic verification that a chart has not been
|
|
tampered with, and was packaged by a trusted provider.
|
|
|
|
This command can be used to verify a local chart. Several other commands provide
|
|
'--verify' flags that run the same validation. To generate a signed package, use
|
|
the 'helm package --sign' command.
|
|
`
|
|
|
|
func newVerifyCmd(out io.Writer) *cobra.Command {
|
|
client := action.NewVerify()
|
|
|
|
cmd := &cobra.Command{
|
|
Use: "verify PATH",
|
|
Short: "verify that a chart at the given path has been signed and is valid",
|
|
Long: verifyDesc,
|
|
Args: require.ExactArgs(1),
|
|
ValidArgsFunction: func(_ *cobra.Command, args []string, _ string) ([]string, cobra.ShellCompDirective) {
|
|
if len(args) == 0 {
|
|
// Allow file completion when completing the argument for the path
|
|
return nil, cobra.ShellCompDirectiveDefault
|
|
}
|
|
// No more completions, so disable file completion
|
|
return noMoreArgsComp()
|
|
},
|
|
RunE: func(_ *cobra.Command, args []string) error {
|
|
err := client.Run(args[0])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
fmt.Fprint(out, client.Out)
|
|
|
|
return nil
|
|
},
|
|
}
|
|
|
|
cmd.Flags().StringVar(&client.Keyring, "keyring", defaultKeyring(), "keyring containing public keys")
|
|
|
|
return cmd
|
|
}
|