Skip to content

Commit

Permalink
Add new terminal failure binding condition (openshift#1057)
Browse files Browse the repository at this point in the history
  • Loading branch information
jpeeler authored and arschles committed Aug 14, 2017
1 parent 4e642d5 commit bc61919
Show file tree
Hide file tree
Showing 6 changed files with 708 additions and 61 deletions.
4 changes: 4 additions & 0 deletions pkg/apis/servicecatalog/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -477,6 +477,10 @@ type BindingConditionType string
const (
// BindingConditionReady represents a BindingCondition is in ready state.
BindingConditionReady BindingConditionType = "Ready"

// BindingConditionFailed represents a BindingCondition that has failed
// completely and should not be retried.
BindingConditionFailed BindingConditionType = "Failed"
)

// These are internal finalizer values to service catalog, must be qualified name.
Expand Down
4 changes: 4 additions & 0 deletions pkg/apis/servicecatalog/v1alpha1/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -478,6 +478,10 @@ type BindingConditionType string
const (
// BindingConditionReady represents a binding condition is in ready state.
BindingConditionReady BindingConditionType = "Ready"

// BindingConditionFailed represents a BindingCondition that has failed
// completely and should not be retried.
BindingConditionFailed BindingConditionType = "Failed"
)

// These are external finalizer values to service catalog, must be qualified name.
Expand Down
Loading

0 comments on commit bc61919

Please sign in to comment.