Operator SDK Part 2
· ☕ 6 min read · ✍️ Brett Johnson
Feature image source
This post continues from Operator SDK Part1 and looks at building the operators container image and running the operator.
Building the Operator Container An operator container image contains the operator runtime for the type of operator and your business logic.
The command make docker-build IMG=$IMG_NAME:TAG creates the operator container image using a Dockerfile in the projects root directory. The initialization process generates the Dockerfile based on the type of operator.