We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 073bb37 commit 86e8a92Copy full SHA for 86e8a92
pkg/oc/admin/policy/remove_from_project.go
@@ -176,7 +176,11 @@ func (o *RemoveFromProjectOptions) Run() error {
176
}
177
178
if !o.DryRun {
179
- _, err = o.Client.RoleBindings(o.BindingNamespace).Update(&currBinding)
+ if len(currBinding.Subjects) > 0 {
180
+ _, err = o.Client.RoleBindings(o.BindingNamespace).Update(&currBinding)
181
+ } else {
182
+ err = o.Client.RoleBindings(o.BindingNamespace).Delete(currBinding.Name, &metav1.DeleteOptions{})
183
+ }
184
if err != nil {
185
return err
186
0 commit comments