@@ -57,10 +57,6 @@ func newTransferOwnerOptions(streams genericclioptions.IOStreams, globalOpts *gl
57
57
func (o * transferOwnerOptions ) run () error {
58
58
fmt .Print ("Before making changes in OCM, the cluster must have the pull secret updated to be the new owner's. " )
59
59
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
- }
64
60
65
61
// Create an OCM client to talk to the cluster API
66
62
// the user has to be logged in (e.g. 'ocm login')
@@ -138,6 +134,13 @@ func (o *transferOwnerOptions) run() error {
138
134
return fmt .Errorf ("subscription has no displayName" )
139
135
}
140
136
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
+
141
144
ok = validateOldOwner (oldOrganizationId , subscription , oldOwnerAccount )
142
145
if ! ok {
143
146
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 {
173
176
return fmt .Errorf ("can't create new owners rolebinding %w" , err )
174
177
}
175
178
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 )
178
179
if orgChanged {
179
180
fmt .Printf ("with organization change from \t '%v' to '%v'\n " , oldOrganizationId , newOrganizationId )
180
181
}
0 commit comments