This commit is contained in:
Colin Hoglund 2022-08-16 11:43:37 -07:00
parent eeccfdd143
commit c5a7551da8
1 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ import (
)
const (
DefaultHistoryMax = 10
defaultHistoryMax = 10
)
var (
@ -85,7 +85,7 @@ func NewConfig(stdout, stderr io.Writer) (*Config, error) {
Certificate: aliases.Certificate,
// set to same default as helm CLI
HistoryMax: DefaultHistoryMax,
HistoryMax: defaultHistoryMax,
Stdout: stdout,
Stderr: stderr,