diff --git a/Makefile b/Makefile index 4e8e1580afe..1667fa5f9d7 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/operator/v1/types.go b/operator/v1/types.go index 2a4fe24d84b..3f5af652f6f 100644 --- a/operator/v1/types.go +++ b/operator/v1/types.go @@ -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