mirror of
https://github.com/helm/chart-testing.git
synced 2026-02-05 09:45:14 +01:00
* add job to check if docs are up to date Signed-off-by: cpanato <ctadeu@gmail.com> * remove auto generated date Signed-off-by: cpanato <ctadeu@gmail.com> * disable auto generated tag in the docs Signed-off-by: cpanato <ctadeu@gmail.com> Signed-off-by: cpanato <ctadeu@gmail.com>
106 lines
3.7 KiB
Go
106 lines
3.7 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 cmd
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/MakeNowJust/heredoc"
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/pflag"
|
|
)
|
|
|
|
var (
|
|
cfgFile string
|
|
)
|
|
|
|
func NewRootCmd() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "ct",
|
|
Short: "The Helm chart testing tool",
|
|
Long: heredoc.Doc(`
|
|
Lint and test
|
|
|
|
* changed charts
|
|
* specific charts
|
|
* all charts
|
|
|
|
in given chart directories.`),
|
|
SilenceUsage: true,
|
|
}
|
|
|
|
cmd.AddCommand(newLintCmd())
|
|
cmd.AddCommand(newInstallCmd())
|
|
cmd.AddCommand(newLintAndInstallCmd())
|
|
cmd.AddCommand(newListChangedCmd())
|
|
cmd.AddCommand(newVersionCmd())
|
|
cmd.AddCommand(newGenerateDocsCmd())
|
|
|
|
cmd.DisableAutoGenTag = true
|
|
|
|
return cmd
|
|
}
|
|
|
|
// Execute runs the application
|
|
func Execute() {
|
|
if err := NewRootCmd().Execute(); err != nil {
|
|
fmt.Println(err)
|
|
os.Exit(1)
|
|
}
|
|
}
|
|
|
|
func addCommonFlags(flags *pflag.FlagSet) {
|
|
flags.StringVar(&cfgFile, "config", "", "Config file")
|
|
flags.String("remote", "origin", "The name of the Git remote used to identify changed charts")
|
|
flags.String("target-branch", "master", "The name of the target branch used to identify changed charts")
|
|
flags.String("since", "HEAD", "The Git reference used to identify changed charts")
|
|
flags.StringSlice("chart-dirs", []string{"charts"}, heredoc.Doc(`
|
|
Directories containing Helm charts. May be specified multiple times
|
|
or separate values with commas`))
|
|
flags.StringSlice("excluded-charts", []string{}, heredoc.Doc(`
|
|
Charts that should be skipped. May be specified multiple times
|
|
or separate values with commas`))
|
|
flags.Bool("print-config", false, heredoc.Doc(`
|
|
Prints the configuration to stderr (caution: setting this may
|
|
expose sensitive data when helm-repo-extra-args contains passwords)`))
|
|
flags.Bool("exclude-deprecated", false, "Skip charts that are marked as deprecated")
|
|
}
|
|
|
|
func addCommonLintAndInstallFlags(flags *pflag.FlagSet) {
|
|
addCommonFlags(flags)
|
|
flags.Bool("all", false, heredoc.Doc(`
|
|
Process all charts except those explicitly excluded.
|
|
Disables changed charts detection and version increment checking`))
|
|
flags.StringSlice("charts", []string{}, heredoc.Doc(`
|
|
Specific charts to test. Disables changed charts detection and
|
|
version increment checking. May be specified multiple times
|
|
or separate values with commas`))
|
|
flags.StringSlice("chart-repos", []string{}, heredoc.Doc(`
|
|
Additional chart repositories for dependency resolutions.
|
|
Repositories should be formatted as 'name=url' (ex: local=http://127.0.0.1:8879/charts).
|
|
May be specified multiple times or separate values with commas`))
|
|
flags.StringSlice("helm-repo-extra-args", []string{}, heredoc.Doc(`
|
|
Additional arguments for the 'helm repo add' command to be
|
|
specified on a per-repo basis with an equals sign as delimiter
|
|
(e.g. 'myrepo=--username test --password secret'). May be specified
|
|
multiple times or separate values with commas`))
|
|
flags.StringSlice("helm-dependency-extra-args", []string{}, heredoc.Doc(`
|
|
Additional arguments for 'helm dependency build' (e.g. ["--skip-refresh"]`))
|
|
flags.Bool("debug", false, heredoc.Doc(`
|
|
Print CLI calls of external tools to stdout (caution: setting this may
|
|
expose sensitive data when helm-repo-extra-args contains passwords)`))
|
|
}
|