Skip to content

Flink native Kubernetes Operator is a java based control plane for running Apache Flink native application on Kubernetes.

License

Notifications You must be signed in to change notification settings

bgeng777/flink-native-k8s-operator

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Flink native K8s operator in Java

Flink native K8s operator

Flink native Kubernetes Operator is a control plane for running Apache Flink native application on Kubernetes. It is java implemented operator, which use fabric8 Kubernetes Client to contact with K8s apiserver. Also instead of running shell commands flink run/run-application to start a Flink application, we choose to use Flink client interfaces to do this(e.g. ApplicationDeployer). Same for the savepoint and job status. Benefit from this, the operator will have better performance to launch multiple applications.

How to Build

   mvn clean install

How to Run

  1. Make Sure that FlinkApplication Custom Resource Definition is already applied onto the cluster. The CRD could be find here. If not, issue the following commands to apply:
kubectl apply -f deploy/crd.yaml
  1. Build Docker Image
docker build . -t flink-native-k8s-operator:1.0.x
docker push
  1. Start flink-native-k8s-operator deployment
 kubectl apply -f deploy/flink-native-k8s-operator.yaml
  1. Apply the RBAC for flink

A new ServiceAccount "flink" will be created with enough permission to create/delete pods and ConfigMaps.

 kubectl apply -f deploy/flink-rbac.yaml
  1. Create a new Flink application

The flink-native-k8s-operator will watch the CRD resources and submit a new Flink application once the CR is applied.

kubectl apply -f deploy/cr.yaml
  1. Get/List Flink applications Get all the Flink applications running in the K8s cluster
kubectl get flinkapp

Describe a specific Flink application to show the status(including job status, savepoint, ect.)

kubectl describe flinkapp {app_name}
  1. Delete a Flink application
kubectl delete -f deploy/cr.yaml

OR

kubectl delete flinkapp {app_name}

How to access JobManager UI

By default, we expose the JobManager rest port with ClusterIP, which means it could only be accessed in the cluster. In order to access the webUI outside of the K8s cluster, the operator will try to create an ingress entry for each application. Then you could use http://{app_name}.flink.k8s.io for the JobManager webUI.

All the Flink app share a same ingress with different rules. This will save a lot public LoadBalancer ip requirements.

You should add {app_name}.flink.k8s.io {ingress_ip} to your local /etc/hosts file.

kubectl get ingress flink-native-k8s-operator could be used to get the ingress ip address.

Features

wangyang0918#27

About

Flink native Kubernetes Operator is a java based control plane for running Apache Flink native application on Kubernetes.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • Java 89.6%
  • Shell 10.0%
  • Dockerfile 0.4%