Skip to content

Commit

Permalink
refactor: use more appropriate ytt function
Browse files Browse the repository at this point in the history
  • Loading branch information
Zebradil committed Jun 14, 2023
1 parent 8edba12 commit 72388b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/myks/environment.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ func (e *Environment) renderEnvData(envDataFiles []string) ([]byte, error) {
if len(envDataFiles) == 0 {
return nil, errors.New("No environment data files found")
}
res, err := e.g.yttS(envDataFiles, nil, "--data-values-inspect")
res, err := e.g.ytt(envDataFiles, "--data-values-inspect")
if err != nil {
log.Error().Err(err).Str("stderr", res.Stderr).Msg("Unable to render environment data")
return nil, err
Expand Down

0 comments on commit 72388b1

Please sign in to comment.