|
|
@ -27,27 +27,26 @@ import (
|
|
|
|
"k8s.io/helm/pkg/chartutil"
|
|
|
|
"k8s.io/helm/pkg/chartutil"
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
const inspectDesc = `
|
|
|
|
const (
|
|
|
|
|
|
|
|
inspectDesc = `
|
|
|
|
This command inspects a chart and displays information. It takes a chart reference
|
|
|
|
This command inspects a chart and displays information. It takes a chart reference
|
|
|
|
('stable/drupal'), a full path to a directory or packaged chart, or a URL.
|
|
|
|
('stable/drupal'), a full path to a directory or packaged chart, or a URL.
|
|
|
|
|
|
|
|
|
|
|
|
Inspect prints the contents of the Chart.yaml file and the values.yaml file.
|
|
|
|
Inspect prints the contents of the Chart.yaml file and the values.yaml file.
|
|
|
|
`
|
|
|
|
`
|
|
|
|
|
|
|
|
inspectValuesDesc = `
|
|
|
|
const inspectValuesDesc = `
|
|
|
|
|
|
|
|
This command inspects a chart (directory, file, or URL) and displays the contents
|
|
|
|
This command inspects a chart (directory, file, or URL) and displays the contents
|
|
|
|
of the values.yaml file
|
|
|
|
of the values.yaml file
|
|
|
|
`
|
|
|
|
`
|
|
|
|
|
|
|
|
inspectChartDesc = `
|
|
|
|
const inspectChartDesc = `
|
|
|
|
|
|
|
|
This command inspects a chart (directory, file, or URL) and displays the contents
|
|
|
|
This command inspects a chart (directory, file, or URL) and displays the contents
|
|
|
|
of the Charts.yaml file
|
|
|
|
of the Charts.yaml file
|
|
|
|
`
|
|
|
|
`
|
|
|
|
|
|
|
|
readmeChartDesc = `
|
|
|
|
const readmeChartDesc = `
|
|
|
|
|
|
|
|
This command inspects a chart (directory, file, or URL) and displays the contents
|
|
|
|
This command inspects a chart (directory, file, or URL) and displays the contents
|
|
|
|
of the README file
|
|
|
|
of the README file
|
|
|
|
`
|
|
|
|
`
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
type inspectCmd struct {
|
|
|
|
type inspectCmd struct {
|
|
|
|
chartpath string
|
|
|
|
chartpath string
|
|
|
|