fix(helm): wrong checkpoint path flink properties

This commit is contained in:
2025-04-13 10:38:15 +03:30
parent 62c340bc64
commit dedbe00fba
4 changed files with 7 additions and 7 deletions

View File

@@ -2,7 +2,7 @@ apiVersion: v2
name: flink-kube-operator
description: Helm chart for flink kube operator
type: application
version: 1.1.0
version: 1.1.1
appVersion: "0.1.1"
dependencies:
- name: minio

View File

@@ -21,7 +21,7 @@
execution.checkpointing.interval: {{ .Values.flink.state.checkpoint.interval }}
execution.checkpointing.mode: {{ .Values.flink.state.checkpoint.mode }}
{{- if eq .Values.flink.state.checkpoint.storageType "filesystem" }}
state.checkpoints.dir: /opt/flink/checkpoints/
state.checkpoints.dir: file:///opt/flink/checkpoints/
{{- else if eq .Values.flink.state.checkpoint.storageType "s3" }}
state.checkpoints.dir: s3://flink/checkpoints/
{{- end }}