Skip to content

Latest commit

 

History

History
 
 

kubernetes-client-examples

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Flink Kubernetes Client Code Example

Overview

This is an end-to-end example of running Flink Job via code using the Flink Kubernetes Operator.

What's in this example?

  1. Sample code for submitting an application similar to examples/basic.yaml programatically.

How does it work?

Just like when we apply k8 yaml file to k8 cluster, internally operator does create all deployment objects and submit.

Usage

The following steps assume that you have the Flink Kubernetes Operator installed and running in your environment.

Step 1: Build K8 client maven project

cd examples/kubernetes-client-examples
mvn clean package

Step 2: Run the main method in Basic.java