Skip to content

Commit ecb959c

Browse files
committed
Move prompt to after transfer details are finished
1 parent d31a4de commit ecb959c

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

cmd/cluster/transferowner.go

+7-6
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,6 @@ func newTransferOwnerOptions(streams genericclioptions.IOStreams, globalOpts *gl
5757
func (o *transferOwnerOptions) run() error {
5858
fmt.Print("Before making changes in OCM, the cluster must have the pull secret updated to be the new owner's. ")
5959
fmt.Print("See: https://github.com/openshift/ops-sop/blob/master/v4/howto/replace-pull-secret.md\n")
60-
err := utils.ConfirmSend()
61-
if err != nil {
62-
return err
63-
}
6460

6561
// Create an OCM client to talk to the cluster API
6662
// the user has to be logged in (e.g. 'ocm login')
@@ -138,6 +134,13 @@ func (o *transferOwnerOptions) run() error {
138134
return fmt.Errorf("subscription has no displayName")
139135
}
140136

137+
fmt.Printf("Transfer cluster: \t\t'%v' (%v)\n", externalClusterID, cluster.Name())
138+
fmt.Printf("from user \t\t\t'%v' to '%v'\n", oldOwnerAccount.ID(), accountID)
139+
err = utils.ConfirmSend()
140+
if err != nil {
141+
return err
142+
}
143+
141144
ok = validateOldOwner(oldOrganizationId, subscription, oldOwnerAccount)
142145
if !ok {
143146
fmt.Print("can't validate this is old owners cluster, this could be because of a previously failed run\n")
@@ -173,8 +176,6 @@ func (o *transferOwnerOptions) run() error {
173176
return fmt.Errorf("can't create new owners rolebinding %w", err)
174177
}
175178

176-
fmt.Printf("Transfer cluster: \t\t'%v' (%v)\n", externalClusterID, cluster.Name())
177-
fmt.Printf("from user \t\t\t'%v' to '%v'\n", oldOwnerAccount.ID(), accountID)
178179
if orgChanged {
179180
fmt.Printf("with organization change from \t'%v' to '%v'\n", oldOrganizationId, newOrganizationId)
180181
}

0 commit comments

Comments
 (0)