Skip to content

Latest commit

 

History

History
87 lines (61 loc) · 3.29 KB

developer_guide.md

File metadata and controls

87 lines (61 loc) · 3.29 KB

Developer Guide

Project overview

Kubernetes Operator for Apache Flink is built on top of the Kubernetes controller-runtime library. The project structure and boilerplate files are generated with Kubebuilder. Knowledge of controller-runtime and Kubebuilder is required to understand this project.

The Flink custom resource is defined in Go struct FlinkCluster, then Kubebuild generates related Go files and YAML files, e.g. flinkclusters.yaml. The custom logic for reconciling a Flink custom resource is inside of the controllers directory, e.g., flinkcluster_controller.go.

Dockerfile defines the steps of building the Flink Operator image.

Makefile includes various actions you can take to generate code, build the Flink Operator binary, run unit tests, build and push docker image, deploy the Flink Operator to a Kubernetes cluster.

You might want to watch this tech talk (video, slides) to get a high-level overview of the project.

Dependencies

The following dependencies are required to build the Flink Operator binary and run unit tests:

But you don't have to install them on your local machine, because this project includes a builder Docker image with the dependencies installed. Build and unit test can happen inside of the builder container. This is the recommended way for local development.

But to create the Flink Operator Docker image and deploy it to a Kubernetes cluster, the following dependencies are required on your local machine:

Local build and test

To build the Flink Operator binary and run unit tests, run:

In Docker (recommended)

make test-in-docker

Non-Docker (not recommended)

make test

Build and push the operator image

Build a Docker image for the Flink Operator and then push it to an image registry with

make operator-image push-operator-image IMG=<tag>

For example, if you are using Google Container Registry, follow the instructions here to set it up, then build the image and push it to GCR with:

PROJECT=<gcp-project>
IMAGE_TAG=gcr.io/${PROJECT}/flink-operator:latest
make operator-image push-operator-image IMG=${IMAGE_TAG}

After building the image, the image tag will be automatically saved in config/default/manager_image_patch.yaml, when you run make deploy later, it knows what image to use.

Deploy the operator and run jobs

Now you can follow the User Guide to deploy the operator and run jobs.