use minio s3 for savepoint and checkpoint path separate task-manager, job-manager and operator use statefulset for task-manager to handle replication support basic credential for download jar request update to flink 1.20.1
124 lines
3.5 KiB
YAML
124 lines
3.5 KiB
YAML
# flink-crd.yaml
|
|
apiVersion: apiextensions.k8s.io/v1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
name: flink-jobs.flink.logicamp.tech
|
|
spec:
|
|
group: flink.logicamp.tech
|
|
names:
|
|
kind: FlinkJob
|
|
plural: flink-jobs
|
|
singular: flink-job
|
|
shortNames:
|
|
- lfj
|
|
scope: Namespaced
|
|
versions:
|
|
- name: v1alpha1
|
|
served: true
|
|
storage: true
|
|
schema:
|
|
openAPIV3Schema:
|
|
type: object
|
|
properties:
|
|
spec:
|
|
type: object
|
|
required:
|
|
- key
|
|
- jarUri
|
|
properties:
|
|
key:
|
|
type: string
|
|
name:
|
|
type: string
|
|
entryClass:
|
|
type: string
|
|
parallelism:
|
|
type: integer
|
|
jarUri:
|
|
type: string
|
|
jarURIBasicAuthUsername:
|
|
type: string
|
|
jarURIBasicAuthPassword:
|
|
type: string
|
|
args:
|
|
type: array
|
|
items:
|
|
type: string
|
|
savepointInterval:
|
|
type: string
|
|
format: duration
|
|
flinkConfiguration:
|
|
type: object
|
|
additionalProperties:
|
|
type: string
|
|
resources:
|
|
type: object
|
|
properties:
|
|
requests:
|
|
type: object
|
|
properties:
|
|
memory:
|
|
type: string
|
|
cpu:
|
|
type: string
|
|
limits:
|
|
type: object
|
|
properties:
|
|
memory:
|
|
type: string
|
|
cpu:
|
|
type: string
|
|
status:
|
|
type: object
|
|
properties:
|
|
jobStatus:
|
|
type: string
|
|
startTime:
|
|
type: string
|
|
jobId:
|
|
type: string
|
|
jarId:
|
|
type: string
|
|
error:
|
|
type: string
|
|
lastSavepointPath:
|
|
type: string
|
|
lifeCycleStatus:
|
|
type: string
|
|
savepointTriggerId:
|
|
type: string
|
|
lastSavepointDate:
|
|
type: string
|
|
format: time
|
|
lastRestoredSavepointDate:
|
|
type: string
|
|
format: time
|
|
lastRestoredSavepointRestoredDate:
|
|
type: string
|
|
format: time
|
|
runningJarURI:
|
|
type: string
|
|
pauseSavepointTriggerId:
|
|
type: string
|
|
restoredCount:
|
|
type: number
|
|
additionalPrinterColumns:
|
|
- name: Status
|
|
type: string
|
|
jsonPath: .status.jobStatus
|
|
- name: Age
|
|
type: date
|
|
jsonPath: .metadata.creationTimestamp
|
|
- name: Life Cycle Status
|
|
type: string
|
|
jsonPath: .status.lifeCycleStatus
|
|
- name: Last Savepoint
|
|
type: date
|
|
jsonPath: .status.lastSavepointDate
|
|
- name: Last Restored Savepoint
|
|
type: date
|
|
jsonPath: .status.lastRestoredSavepointDate
|
|
- name: Restored Count
|
|
type: number
|
|
jsonPath: .status.restoredCount
|