Skip to content

Commit

Permalink
enable usages
Browse files Browse the repository at this point in the history
Signed-off-by: Taylor Thornton <thornton.tn@gmail.com>
  • Loading branch information
tnthornton committed Jan 30, 2024
1 parent 90be06a commit 2f6dd66
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cmd/up/space/prerequisites/uxp/uxp.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,11 @@ func (u *UXP) Install() error {
if err != nil && !kerrors.IsAlreadyExists(err) {
return errors.Wrap(err, fmt.Sprintf(errFmtCreateNamespace, ns))
}
return u.mgr.Install(version, map[string]any{})
return u.mgr.Install(version, map[string]any{
"args": []string{
"--enable-usages",
},
})
}

// IsInstalled checks if UXP has been installed in the target cluster.
Expand Down

0 comments on commit 2f6dd66

Please sign in to comment.