Skip to content

Commit

Permalink
Merge pull request #96 from trifork/fix-empty-volumes
Browse files Browse the repository at this point in the history
Fix empty volumes
  • Loading branch information
pegtrifork authored Aug 23, 2023
2 parents 85ee1d2 + 96b8cd8 commit d104215
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion charts/flink-job/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.4.5
version: 0.4.6

dependencies:
- name: image-automation
Expand Down
2 changes: 1 addition & 1 deletion charts/flink-job/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# flink-job

![Version: 0.4.5](https://img.shields.io/badge/Version-0.4.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![Version: 0.4.6](https://img.shields.io/badge/Version-0.4.6-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)

A Helm chart for handling Cheetah Data Platform Flink jobs

Expand Down
8 changes: 4 additions & 4 deletions charts/flink-job/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -241,11 +241,11 @@ taskManager:
envFrom:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with (concat .Values.volumeMounts .Values.taskManager.volumeMounts (list (include "flink-job.sslVolumeMounts" . | fromYaml))) }}
{{- with (compact (concat .Values.volumeMounts .Values.taskManager.volumeMounts (list (include "flink-job.sslVolumeMounts" . | fromYaml)))) }}
volumeMounts:
{{- toYaml . | nindent 8 -}}
{{- end }}
{{- with (concat .Values.volumes .Values.taskManager.volumes (list (include "flink-job.sslVolumes" . | fromYaml))) }}
{{- with (compact (concat .Values.volumes .Values.taskManager.volumes (list (include "flink-job.sslVolumes" . | fromYaml)))) }}
volumes:
{{- toYaml . | nindent 4 -}}
{{- end }}
Expand Down Expand Up @@ -310,11 +310,11 @@ jobManager:
envFrom:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with (concat .Values.volumeMounts .Values.jobManager.volumeMounts (list (include "flink-job.sslVolumeMounts" . | fromYaml))) }}
{{- with (compact (concat .Values.volumeMounts .Values.jobManager.volumeMounts (list (include "flink-job.sslVolumeMounts" . | fromYaml)))) }}
volumeMounts:
{{- toYaml . | nindent 8 -}}
{{- end }}
{{- with (concat .Values.volumes .Values.jobManager.volumes (list (include "flink-job.sslVolumes" . | fromYaml))) }}
{{- with (compact (concat .Values.volumes .Values.jobManager.volumes (list (include "flink-job.sslVolumes" . | fromYaml)))) }}
volumes:
{{- toYaml . | nindent 4 -}}
{{- end }}
Expand Down

0 comments on commit d104215

Please sign in to comment.