mirror of
https://github.com/helm/chart-testing.git
synced 2026-02-05 09:45:14 +01:00
Allows to identify chart changes before actually running lint or install commands. This can be useful in the following cases: * In a CI setup where kind clusters are spun up on the fly, this makes it possible to decide whether a cluster is necessary at all. A PR may only contain changes that are not relevant to any charts. * By knowing upfront which charts have changed, it is possible to load a per-chart CI configuration which would allows us to determine the number of nodes needed in a kind cluster. For most charts, one node is enough, but in certain scenarios, especially for StatefulSets, we may want to test with pod anti-affinity where replicas have to be spread across multiple nodes. Signed-off-by: Reinhard Nägele <unguiculus@gmail.com>
96 lines
3.1 KiB
Go
96 lines
3.1 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.`),
|
|
}
|
|
|
|
cmd.AddCommand(newLintCmd())
|
|
cmd.AddCommand(newInstallCmd())
|
|
cmd.AddCommand(newLintAndInstallCmd())
|
|
cmd.AddCommand(newListChangedCmd())
|
|
cmd.AddCommand(newVersionCmd())
|
|
cmd.AddCommand(newGenerateDocsCmd())
|
|
|
|
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.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`))
|
|
}
|
|
|
|
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.Bool("debug", false, heredoc.Doc(`
|
|
Print CLI calls of external tools to stdout (Note: depending on helm-extra-args
|
|
passed, this may reveal sensitive data)`))
|
|
}
|