Skip to content

Commit da534d9

Browse files
committed
return gone on unbind from non-existent templateinstance
1 parent 1927cae commit da534d9

File tree

2 files changed

+24
-3
lines changed

2 files changed

+24
-3
lines changed

pkg/templateservicebroker/servicebroker/unbind.go

+10-3
Original file line numberDiff line numberDiff line change
@@ -43,19 +43,24 @@ func (b *Broker) Unbind(u user.Info, instanceID, bindingID string) *api.Response
4343
return api.Forbidden(err)
4444
}
4545

46+
status := http.StatusGone
4647
templateInstance, err := b.templateclient.TemplateInstances(namespace).Get(brokerTemplateInstance.Spec.TemplateInstance.Name, metav1.GetOptions{})
4748
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+
}
4955
}
50-
if strings.ToLower(templateInstance.Spec.Template.Annotations[templateapi.BindableAnnotation]) == "false" {
56+
if templateInstance != nil && strings.ToLower(templateInstance.Spec.Template.Annotations[templateapi.BindableAnnotation]) == "false" {
5157
return api.BadRequest(errors.New("provisioned service is not bindable"))
5258
}
5359

5460
// The OSB API requires this function to be idempotent (restartable). If
5561
// any actual change was made, per the spec, StatusOK is returned, else
5662
// StatusGone.
5763

58-
status := http.StatusGone
5964
for i := 0; i < len(brokerTemplateInstance.Spec.BindingIDs); i++ {
6065
for i < len(brokerTemplateInstance.Spec.BindingIDs) && brokerTemplateInstance.Spec.BindingIDs[i] == bindingID {
6166
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
6570
if status == http.StatusOK { // binding found; remove it
6671
// end users are not expected to have access to BrokerTemplateInstance
6772
// 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.
6875
if err := util.Authorize(b.kc.Authorization().SubjectAccessReviews(), u, &authorizationv1.ResourceAttributes{
6976
Namespace: namespace,
7077
Verb: "update",

test/extended/templates/templateservicebroker_e2e.go

+14
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,21 @@ var _ = g.Describe("[Conformance][templates] templateservicebroker end-to-end te
374374
provision()
375375
bind()
376376
unbind()
377+
// unbinding a second time should result in a gone message, but not an error
378+
unbind()
377379
deprovision()
380+
381+
/*
382+
Reenable once the TSB changes have made it into a published image
383+
provision()
384+
bind()
385+
g.By("deleting the template instance that was bound")
386+
err := cli.Run("delete").Args("templateinstance", "--all").Execute()
387+
o.Expect(err).NotTo(o.HaveOccurred())
388+
unbind()
389+
// unbinding a second time should result in a gone message, but not an error
390+
unbind()
391+
*/
378392
})
379393
})
380394
})

0 commit comments

Comments
 (0)