v1.16.0

    TODO(user): Configure the resources accordingly based on the project requirements. # More info: resources:

    limits: cpu: 500m memory: 768Mi requests: cpu: 10m memory: 256Mi``` IMPORTANT: Having resource limits is a best-practice and these values are reasonable defaults, but Operator authors should optimize these values based on their project’s requirements.

    See #5274 for more details.

    See for more details.

    Add the following annotation into the file config/manager/manager.yaml

    See #5330 for more details.

    See for more details.

    Update the Makefile with the following changes. 1) Above add the following: ... ifndef ignore-not-found ignore-not-found = false endif ... 2) Replace: sh kubectl delete -f - With: sh kubectl delete --ignore-not-found=$(ignore-not-found) -f -

    NOTE You can also compare your Makefile with the one tagged by this release, in operator-sdk/testdata of the OperatorSDK project.