This Helm Chart is an addition to the existing way of deploying Flink job clusters.
A typical Helm chart will usually include all of the manifests which you would manually apply with kubectl as templates, along with a values.yaml
file for quick management of user preferences, so it becomes a one-step process to manage all of these resources as a single resource. Since Flink job clusters are currently deployed with just one YAML file, it might seem like the helm chart is unnecessary. However, the more components are added in the future, such as a PodMonitor
or Services
, the easier it will be to manage those manifests from a central values.yaml
. Helm also supports various deployment checks before and after deployment so it integrates well with CI/CD pipelines. Some of these benefits are listed below:
- Easy configuration as you just have to configure or enable features in the
values.yaml
without much knowledge of the entire chart - You can use helm operations such as
helm --dry run
to check for any errors before deployment - Automated rollback to a previous functioning release with the
--atomic
flag - Manual rollbacks to previous revisions possible with
helm rollback
- Helm includes release versioning which can be checked by using the
helm list <namespace>
command
- Fink Operator Image Version:
gcr.io/flink-operator/flink-operator:v1beta1-6
follow these instructions to deploy the Operator - Flink Image Version:
flink:1.9.3
orflink:latest
- Helm version 2.x or 3.x
Optional:
- Prometheus-Operator to use the custom resource
PodMonitor
in order to scrape flink-job-cluster metrics
The instructions to install the Flink Job Cluster chart:
- Clone the repository to your local machine, which has access to your running kubernetes cluster.
git clone https://github.com/GoogleCloudPlatform/flink-on-k8s-operator.git
-
Navigate to the following folder:
/flink-on-k8s-operator/helm-chart
-
Use the following command to dry-run the Flink job cluster chart:
helm install --dry-run --namespace=<namespace> flink-job-cluster ./flink-job-cluster -f ./flink-job-cluster/values.yaml
The dry-run
flag will render the templated yaml files. It is used to debug your chart. You'll be notified if there is any error in the chart configuration.
- Use the following command to install the Flink job cluster chart:
helm install --namespace=<namespace> flink-job-cluster ./flink-job-cluster -f ./flink-job-cluster/values.yaml
Afterwards, you should see the following output in your console:
NAME: flink-job-cluster
LAST DEPLOYED: Tue Aug 4 10:39:10 2020
NAMESPACE: <namespace>
STATUS: deployed
REVISION: 1
TEST SUITE: None
Note the values.file
in /flink-on-k8s-operator/helm-chart/flink-job-cluster/
is just an example configuration. You can use your own values.yaml if you wish and edit the parts that you want to change. The current values.yaml has the minimum configuration requirements enabled for the Flink job cluster to start successfully.
To uninstall your release:
- Use the following command to list the Flink job cluster release:
helm list --namespace=<namespace>
- Find your release name and delete it:
helm delete <release_name> --namespace=<namespace>
After using the helm command, the following resources will be deployed
- Flink job (1x)
- Flink job manager (1x)
- Flink task manager (2x)
You can check the status of your deployment by using
kubectl get deployments --namespace=<namespace>
You can check which images of the Operator are available at GoogleCloudPlatform
The Flink job cluster comes with a PodMonitor resource, which is the counter part to a ServiceMonitor. The PodMonitor will use pod labels and configure prometheus to scrape the Flink job cluster metrics. Reason for using the PodMonitor is simple, the Flink job cluster does not deploy services.
You can use the following dashboard in your grafana to monitor the flink-job-cluster.
You have the option to download job jars to be executed as jobs, directly into the Flink job cluster pods. There is already an example. on how to run the Flink job cluster with a remote job jar.
If you do not want to use a remote job jar, you can simply use the Flink image e.g. flink:1.9.3
and copy your built jar file into that image to create your custom Flink image. This way you can directly start the job without using an InitContainer. Just use your custom Flink image as image
in the values.yaml, and make sure to set the correct path for the job to look for the JAR file.
image:
repository: <your_repository>/<your_custom_flink_image>
tag: 1.9.3
job:
# job will look for a JAR file at ./examples/streaming/WordCount.jar and execute it
# className has to be valid and used in the provided JAR File
jarFile: ./examples/streaming/WordCount.jar
You can check running jobs by using the following command:
kubectl get jobs -n <namespace>
- Build your new/updated JAR file which will be executed by the Flink job cluster
- Prepare a new custom Flink Image which has your JAR file included, for example at: /JARFiles/<JAR_FILE>
- Adjust the path for the jar file in
values.yaml
at job.jarFile from "./examples/streaming/WordCount.jar" to "/JARFiles/<JAR_FILE>" - Upload your custom Flink Image to your registry
- Specify your custom Flink Image in the helm-chart
values.yaml
under theimage
section - Navigate to
/flink-on-k8s-operator/helm-chart
and use the helm command to update your running Flink job cluster.
helm upgrade --namespace=<namespace> flink-job-cluster ./flink-job-cluster -f ./flink-job-cluster/values.yaml
We are planning to extend the chart by adding the possibility to use strimzi.io KafkaUsers. This way, we can automatically spin up new KafkaUsers when deploying a Flink job cluster.