@@ -43,6 +43,7 @@ type RoleModificationOptions struct {
43
43
RoleName string
44
44
RoleBindingAccessor RoleBindingAccessor
45
45
46
+ Targets []string
46
47
Users []string
47
48
Groups []string
48
49
Subjects []kapi.ObjectReference
@@ -63,7 +64,10 @@ func NewCmdAddRoleToGroup(name, fullName string, f *clientcmd.Factory, out io.Wr
63
64
64
65
if err := options .AddRole (); err != nil {
65
66
kcmdutil .CheckErr (err )
67
+ return
66
68
}
69
+ printSuccessForCommand (options .RoleName , true , "group" , options .Targets , true , out )
70
+
67
71
},
68
72
}
69
73
@@ -89,7 +93,9 @@ func NewCmdAddRoleToUser(name, fullName string, f *clientcmd.Factory, out io.Wri
89
93
90
94
if err := options .AddRole (); err != nil {
91
95
kcmdutil .CheckErr (err )
96
+ return
92
97
}
98
+ printSuccessForCommand (options .RoleName , true , "user" , options .Targets , true , out )
93
99
},
94
100
}
95
101
@@ -114,7 +120,9 @@ func NewCmdRemoveRoleFromGroup(name, fullName string, f *clientcmd.Factory, out
114
120
115
121
if err := options .RemoveRole (); err != nil {
116
122
kcmdutil .CheckErr (err )
123
+ return
117
124
}
125
+ printSuccessForCommand (options .RoleName , false , "group" , options .Targets , true , out )
118
126
},
119
127
}
120
128
@@ -139,7 +147,9 @@ func NewCmdRemoveRoleFromUser(name, fullName string, f *clientcmd.Factory, out i
139
147
140
148
if err := options .RemoveRole (); err != nil {
141
149
kcmdutil .CheckErr (err )
150
+ return
142
151
}
152
+ printSuccessForCommand (options .RoleName , false , "user" , options .Targets , true , out )
143
153
},
144
154
}
145
155
@@ -164,7 +174,9 @@ func NewCmdAddClusterRoleToGroup(name, fullName string, f *clientcmd.Factory, ou
164
174
165
175
if err := options .AddRole (); err != nil {
166
176
kcmdutil .CheckErr (err )
177
+ return
167
178
}
179
+ printSuccessForCommand (options .RoleName , true , "group" , options .Targets , false , out )
168
180
},
169
181
}
170
182
@@ -186,7 +198,9 @@ func NewCmdAddClusterRoleToUser(name, fullName string, f *clientcmd.Factory, out
186
198
187
199
if err := options .AddRole (); err != nil {
188
200
kcmdutil .CheckErr (err )
201
+ return
189
202
}
203
+ printSuccessForCommand (options .RoleName , true , "user" , options .Targets , false , out )
190
204
},
191
205
}
192
206
@@ -208,7 +222,9 @@ func NewCmdRemoveClusterRoleFromGroup(name, fullName string, f *clientcmd.Factor
208
222
209
223
if err := options .RemoveRole (); err != nil {
210
224
kcmdutil .CheckErr (err )
225
+ return
211
226
}
227
+ printSuccessForCommand (options .RoleName , false , "group" , options .Targets , false , out )
212
228
},
213
229
}
214
230
@@ -230,7 +246,9 @@ func NewCmdRemoveClusterRoleFromUser(name, fullName string, f *clientcmd.Factory
230
246
231
247
if err := options .RemoveRole (); err != nil {
232
248
kcmdutil .CheckErr (err )
249
+ return
233
250
}
251
+ printSuccessForCommand (options .RoleName , false , "user" , options .Targets , false , out )
234
252
},
235
253
}
236
254
@@ -247,6 +265,8 @@ func (o *RoleModificationOptions) CompleteUserWithSA(f *clientcmd.Factory, args
247
265
o .Users = append (o .Users , args [1 :]... )
248
266
}
249
267
268
+ o .Targets = o .Users
269
+
250
270
if (len (o .Users ) == 0 ) && (len (saNames ) == 0 ) {
251
271
return errors .New ("you must specify at least one user or service account" )
252
272
}
@@ -263,6 +283,7 @@ func (o *RoleModificationOptions) CompleteUserWithSA(f *clientcmd.Factory, args
263
283
o .RoleBindingAccessor = NewLocalRoleBindingAccessor (roleBindingNamespace , osClient )
264
284
265
285
for _ , sa := range saNames {
286
+ o .Targets = append (o .Targets , sa )
266
287
o .Subjects = append (o .Subjects , kapi.ObjectReference {Namespace : roleBindingNamespace , Name : sa , Kind : "ServiceAccount" })
267
288
}
268
289
@@ -277,6 +298,8 @@ func (o *RoleModificationOptions) Complete(f *clientcmd.Factory, args []string,
277
298
o .RoleName = args [0 ]
278
299
* target = append (* target , args [1 :]... )
279
300
301
+ o .Targets = * target
302
+
280
303
osClient , _ , _ , err := f .Clients ()
281
304
if err != nil {
282
305
return err
@@ -396,3 +419,23 @@ existingLoop:
396
419
397
420
return newSubjects
398
421
}
422
+
423
+ // prints affirmative output for role modification commands
424
+ func printSuccessForCommand (role string , didAdd bool , targetName string , targets []string , isNamespaced bool , out io.Writer ) {
425
+ verb := "removed"
426
+ clusterScope := "cluster "
427
+ allTargets := fmt .Sprintf ("%q" , targets )
428
+ if isNamespaced {
429
+ clusterScope = ""
430
+ }
431
+ if len (targets ) > 1 {
432
+ targetName = fmt .Sprintf ("%ss" , targetName )
433
+ } else if len (targets ) == 1 {
434
+ allTargets = fmt .Sprintf ("%q" , targets [0 ])
435
+ }
436
+ if didAdd {
437
+ verb = "added"
438
+ }
439
+
440
+ fmt .Fprintf (out , "%srole %q %s: %s\n " , clusterScope , role , verb , allTargets )
441
+ }
0 commit comments