Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ update-deps:

generate-with-container: Dockerfile.build
$(RUNTIME) build -t $(RUNTIME_IMAGE_NAME) -f Dockerfile.build .
$(RUNTIME) run -ti --rm -v $(PWD):/go/src/github.com/openshift/api -w /go/src/github.com/openshift/api $(RUNTIME_IMAGE_NAME) make generate
$(RUNTIME) run -ti --rm -v $(PWD):/go/src/github.com/openshift/api:z -w /go/src/github.com/openshift/api $(RUNTIME_IMAGE_NAME) make generate

generate:
hack/update-deepcopy.sh
Expand Down
2 changes: 0 additions & 2 deletions operator/v1/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,6 @@ var (
OperatorStatusTypeAvailable = "Available"
// Progressing indicates that the operator is trying to transition the operand to a different state
OperatorStatusTypeProgressing = "Progressing"
// Failing indicates that the operator (not the operand) is unable to fulfill the user intent
OperatorStatusTypeFailing = "Failing"
// Degraded indicates that the operator (not the operand) is unable to fulfill the user intent
OperatorStatusTypeDegraded = "Degraded"
// PrereqsSatisfied indicates that the things this operator depends on are present and at levels compatible with the
Expand Down