@@ -43,19 +43,24 @@ func (b *Broker) Unbind(u user.Info, instanceID, bindingID string) *api.Response
43
43
return api .Forbidden (err )
44
44
}
45
45
46
+ status := http .StatusGone
46
47
templateInstance , err := b .templateclient .TemplateInstances (namespace ).Get (brokerTemplateInstance .Spec .TemplateInstance .Name , metav1.GetOptions {})
47
48
if err != nil {
48
- return api .InternalServerError (err )
49
+ // Tolerate NotFound errors in case the user deleted the templateinstance manually. We do not
50
+ // want to leave the system in a state where unbind cannot proceed because then the user cannot
51
+ // deprovision either(you must unbind before deprovisioning). So just proceed as if we found it.
52
+ if ! kerrors .IsNotFound (err ) {
53
+ return api .InternalServerError (err )
54
+ }
49
55
}
50
- if strings .ToLower (templateInstance .Spec .Template .Annotations [templateapi .BindableAnnotation ]) == "false" {
56
+ if templateInstance != nil && strings .ToLower (templateInstance .Spec .Template .Annotations [templateapi .BindableAnnotation ]) == "false" {
51
57
return api .BadRequest (errors .New ("provisioned service is not bindable" ))
52
58
}
53
59
54
60
// The OSB API requires this function to be idempotent (restartable). If
55
61
// any actual change was made, per the spec, StatusOK is returned, else
56
62
// StatusGone.
57
63
58
- status := http .StatusGone
59
64
for i := 0 ; i < len (brokerTemplateInstance .Spec .BindingIDs ); i ++ {
60
65
for i < len (brokerTemplateInstance .Spec .BindingIDs ) && brokerTemplateInstance .Spec .BindingIDs [i ] == bindingID {
61
66
brokerTemplateInstance .Spec .BindingIDs = append (brokerTemplateInstance .Spec .BindingIDs [:i ], brokerTemplateInstance .Spec .BindingIDs [i + 1 :]... )
@@ -65,6 +70,8 @@ func (b *Broker) Unbind(u user.Info, instanceID, bindingID string) *api.Response
65
70
if status == http .StatusOK { // binding found; remove it
66
71
// end users are not expected to have access to BrokerTemplateInstance
67
72
// objects; SAR on the TemplateInstance instead.
73
+ // Note that this specific templateinstance object might not actually exist anymore, but the SAR check
74
+ // is still valid to confirm the user can update templateinstances in this namespace.
68
75
if err := util .Authorize (b .kc .Authorization ().SubjectAccessReviews (), u , & authorizationv1.ResourceAttributes {
69
76
Namespace : namespace ,
70
77
Verb : "update" ,
0 commit comments