Updating Hybrid Helm-based projects for newer Operator SDK versions

OKD 4.11 supports Operator SDK 1.22.0. If you already have the 1.16.0 CLI installed on your workstation, you can update the CLI to 1.22.0 by installing the latest version.

However, to ensure your existing Operator projects maintain compatibility with Operator SDK 1.22.0, update steps are required for the associated breaking changes introduced since 1.16.0. You must perform the update steps manually in any of your Operator projects that were previously created or maintained with 1.16.0.

Updating Hybrid Helm-based Operator projects for Operator SDK 1.22.0

The following procedure updates an existing Hybrid Helm-based Operator project for compatibility with 1.22.0.

Prerequisites

  • Operator SDK 1.22.0 installed.

  • An Operator project created or maintained with Operator SDK 1.16.0.

Procedure

  1. Make the following changes to the config/default/manager_auth_proxy_patch.yaml file:

    1. ...
    2. spec:
    3. template:
    4. spec:
    5. containers:
    6. - name: kube-rbac-proxy
    7. image: registry.redhat.io/openshift4/ose-kube-rbac-proxy:v4.11 (1)
    8. args:
    9. - "--secure-listen-address=0.0.0.0:8443"
    10. - "--upstream=http://127.0.0.1:8080/"
    11. - "--logtostderr=true"
    12. - "--v=0" (2)
    13. ...
    14. resources:
    15. limits:
    16. cpu: 500m
    17. memory: 128Mi
    18. requests:
    19. cpu: 5m
    20. memory: 64Mi (3)
    1Update the tag version from v4.10 to v4.11.
    2Reduce the debugging log level from —v=10 to —v=0.
    3Add resource requests and limits.
  2. Make the following changes to your Makefile:

    1. Enable support for image digests by adding the following environment variables to your Makefile:

      Old Makefile

      1. BUNDLE_IMG ?= $(IMAGE_TAG_BASE)-bundle:v$(VERSION)
      2. ...

      New Makefile

      1. BUNDLE_IMG ?= $(IMAGE_TAG_BASE)-bundle:v$(VERSION)
      2. # BUNDLE_GEN_FLAGS are the flags passed to the operator-sdk generate bundle command
      3. BUNDLE_GEN_FLAGS ?= -q --overwrite --version $(VERSION) $(BUNDLE_METADATA_OPTS)
      4. # USE_IMAGE_DIGESTS defines if images are resolved via tags or digests
      5. # You can enable this value if you would like to use SHA Based Digests
      6. # To enable set flag to true
      7. USE_IMAGE_DIGESTS ?= false
      8. ifeq ($(USE_IMAGE_DIGESTS), true)
      9. BUNDLE_GEN_FLAGS += --use-image-digests
      10. endif
    2. Edit your Makefile to replace the bundle target with the BUNDLE_GEN_FLAGS environment variable:

      Old Makefile

      1. $(KUSTOMIZE) build config/manifests | operator-sdk generate bundle -q --overwrite --version $(VERSION) $(BUNDLE_METADATA_OPTS)

      New Makefile

      1. $(KUSTOMIZE) build config/manifests | operator-sdk generate bundle $(BUNDLE_GEN_FLAGS)
    3. Edit your Makefile to update opm to version 1.23.0:

      1. .PHONY: opm
      2. OPM = ./bin/opm
      3. opm: ## Download opm locally if necessary.
      4. ifeq (,$(wildcard $(OPM)))
      5. ifeq (,$(shell which opm 2>/dev/null))
      6. @{ \
      7. set -e ;\
      8. mkdir -p $(dir $(OPM)) ;\
      9. OS=$(shell go env GOOS) && ARCH=$(shell go env GOARCH) && \
      10. curl -sSLo $(OPM) https://github.com/operator-framework/operator-registry/releases/download/v1.23.0/$${OS}-$${ARCH}-opm ;\ (1)
      11. chmod +x $(OPM) ;\
      12. }
      13. else
      14. OPM = $(shell which opm)
      15. endif
      16. endif
      1Replace v1.19.1 with v1.23.0.
    4. Update ENVTEST_K8S_VERSION and controller-gen fields in your Makefile to support Kubernetes 1.24:

      1. ...
      2. ENVTEST_K8S_VERSION = 1.24 (1)
      3. ...
      4. sigs.k8s.io/controller-tools/cmd/controller-gen@v0.9.0 (2)
      1Update version 1.22 to 1.24.
      2Update version 0.7.0 to 0.9.0.
    5. Apply the changes to your Makefile and rebuild your Operator by entering the following command:

      1. $ make
  3. Make the following changes to the go.mod file to update Go and its dependencies:

    1. go 1.18 (1)
    2. require (
    3. github.com/onsi/ginkgo v1.16.5 (2)
    4. github.com/onsi/gomega v1.18.1 (3)
    5. k8s.io/api v0.24.0 (4)
    6. k8s.io/apimachinery v0.24.0 (4)
    7. k8s.io/client-go v0.24.0 (4)
    8. sigs.k8s.io/controller-runtime v0.12.1 (5)
    9. )
    1Update version 1.16 to 1.18.
    2Update version v1.16.4 to v1.16.5.
    3Update version v1.15.0 to v1.18.1.
    4Update version v0.22.1 to v0.24.0.
    5Update version v0.10.0 to v0.12.1.
  4. Edit your go.mod file to update the Helm Operator plug-ins:

    1. github.com/operator-framework/helm-operator-plugins v0.0.11 (1)
    1Update version v0.0.8 to v0.0.11.
  5. Download and clean up the dependencies by entering the following command:

    1. $ go mod tidy

Additional resources