Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix error message when embedded cluster fails to render #4768

Open
wants to merge 11 commits into
base: main
Choose a base branch
from
2 changes: 1 addition & 1 deletion pkg/store/kotsstore/version_store.go
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ func (s *KOTSStore) upsertAppVersionRecordStatements(appID string, sequence int6

embeddedClusterConfig, err := kotsKinds.Marshal("embeddedcluster.replicated.com", "v1beta1", "Config")
if err != nil {
return nil, errors.Wrap(err, "failed to marshal configvalues spec")
return nil, errors.Wrap(err, "failed to marshal embedded cluster config")
}

var releasedAt *int64
Expand Down
Loading