Skip to content
This repository has been archived by the owner on Oct 10, 2023. It is now read-only.

[release-0.25] Fix incorrect log message when creating management-cluster #3172

Merged
merged 1 commit into from
Aug 23, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/v1/tkg/client/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ func (c *TkgClient) InitRegion(options *InitRegionOptions) error { //nolint:funl
if regionalConfigBytes, options.ClusterName, configFilePath, err = c.BuildRegionalClusterConfiguration(options); err != nil {
return errors.Wrap(err, "unable to build management cluster configuration")
}
log.Infof("ClusterClass based management cluster config file has been generated and stored at: '%v'", configFilePath)
log.Infof("Management cluster config file has been generated and stored at: '%v'", configFilePath)

isStartedRegionalClusterCreation = true

Expand Down