|
|
@ -56,6 +56,7 @@ func newShowCmd(out io.Writer) *cobra.Command {
|
|
|
|
|
|
|
|
|
|
|
|
showCommand := &cobra.Command{
|
|
|
|
showCommand := &cobra.Command{
|
|
|
|
Use: "show",
|
|
|
|
Use: "show",
|
|
|
|
|
|
|
|
DisableFlagsInUseLine: true,
|
|
|
|
Short: "show information of a chart",
|
|
|
|
Short: "show information of a chart",
|
|
|
|
Aliases: []string{"inspect"},
|
|
|
|
Aliases: []string{"inspect"},
|
|
|
|
Long: showDesc,
|
|
|
|
Long: showDesc,
|
|
|
@ -72,6 +73,7 @@ func newShowCmd(out io.Writer) *cobra.Command {
|
|
|
|
|
|
|
|
|
|
|
|
all := &cobra.Command{
|
|
|
|
all := &cobra.Command{
|
|
|
|
Use: "all [CHART]",
|
|
|
|
Use: "all [CHART]",
|
|
|
|
|
|
|
|
DisableFlagsInUseLine: true,
|
|
|
|
Short: "show all information of the chart",
|
|
|
|
Short: "show all information of the chart",
|
|
|
|
Long: showAllDesc,
|
|
|
|
Long: showAllDesc,
|
|
|
|
Args: require.ExactArgs(1),
|
|
|
|
Args: require.ExactArgs(1),
|
|
|
@ -88,6 +90,7 @@ func newShowCmd(out io.Writer) *cobra.Command {
|
|
|
|
|
|
|
|
|
|
|
|
valuesSubCmd := &cobra.Command{
|
|
|
|
valuesSubCmd := &cobra.Command{
|
|
|
|
Use: "values [CHART]",
|
|
|
|
Use: "values [CHART]",
|
|
|
|
|
|
|
|
DisableFlagsInUseLine: true,
|
|
|
|
Short: "show the chart's values",
|
|
|
|
Short: "show the chart's values",
|
|
|
|
Long: showValuesDesc,
|
|
|
|
Long: showValuesDesc,
|
|
|
|
Args: require.ExactArgs(1),
|
|
|
|
Args: require.ExactArgs(1),
|
|
|
@ -104,6 +107,7 @@ func newShowCmd(out io.Writer) *cobra.Command {
|
|
|
|
|
|
|
|
|
|
|
|
chartSubCmd := &cobra.Command{
|
|
|
|
chartSubCmd := &cobra.Command{
|
|
|
|
Use: "chart [CHART]",
|
|
|
|
Use: "chart [CHART]",
|
|
|
|
|
|
|
|
DisableFlagsInUseLine: true,
|
|
|
|
Short: "show the chart's definition",
|
|
|
|
Short: "show the chart's definition",
|
|
|
|
Long: showChartDesc,
|
|
|
|
Long: showChartDesc,
|
|
|
|
Args: require.ExactArgs(1),
|
|
|
|
Args: require.ExactArgs(1),
|
|
|
@ -120,6 +124,7 @@ func newShowCmd(out io.Writer) *cobra.Command {
|
|
|
|
|
|
|
|
|
|
|
|
readmeSubCmd := &cobra.Command{
|
|
|
|
readmeSubCmd := &cobra.Command{
|
|
|
|
Use: "readme [CHART]",
|
|
|
|
Use: "readme [CHART]",
|
|
|
|
|
|
|
|
DisableFlagsInUseLine: true,
|
|
|
|
Short: "show the chart's README",
|
|
|
|
Short: "show the chart's README",
|
|
|
|
Long: readmeChartDesc,
|
|
|
|
Long: readmeChartDesc,
|
|
|
|
Args: require.ExactArgs(1),
|
|
|
|
Args: require.ExactArgs(1),
|
|
|
|