Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix flink podtemplate #51

Merged
merged 2 commits into from
May 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/cheetah-flink-native/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,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, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.4.0
version: 0.4.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion charts/cheetah-flink-native/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# cheetah-flink-native

![Version: 0.4.0](https://img.shields.io/badge/Version-0.4.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.3.0](https://img.shields.io/badge/AppVersion-1.3.0-informational?style=flat-square)
![Version: 0.4.1](https://img.shields.io/badge/Version-0.4.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.3.0](https://img.shields.io/badge/AppVersion-1.3.0-informational?style=flat-square)

A Helm chart for handling Cheetah Data Platform Flink jobs

Expand Down
2 changes: 1 addition & 1 deletion charts/cheetah-flink-native/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ If `securityContext` is defined, we look for the "flink-main-container" containe
If it isn't found, we create it with the correct `securityContext`
*/}}
{{- define "cheetah-flink-native.podTemplate" -}}
{{- $podTemplate := (.Values.podTemplate | default dict ) -}}
{{- $podTemplate := (.Values.podTemplate | default (dict "spec" dict) ) -}}
{{/*update the pod security context*/}}
{{- with .Values.podSecurityContext -}}
{{- $_ := set $podTemplate.spec "securityContext" . -}}
Expand Down