Skip to content

Commit

Permalink
Hardcode options for configmap
Browse files Browse the repository at this point in the history
  • Loading branch information
Santiago Botto committed Aug 15, 2023
1 parent 463914c commit afd5712
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/common/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ 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.0.15-beta12
version: 0.0.15-beta13

# 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
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "0.0.15-beta12"
appVersion: "0.0.15-beta13"
icon: https://cncf-branding.netlify.app/img/projects/helm/horizontal/color/helm-horizontal-color.png
6 changes: 5 additions & 1 deletion charts/common/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,11 @@ spec:
#{{- if $volume.configMap }}
- name: {{ $volume.name }}
configMap:
{{- toYaml $volume.configMap | nindent 12 }}
#{{- toYaml $volume.configMap | nindent 12 }}
name: {{ $volume.configMap.name }}
items:
- key: {{ $volume.configMap.items.key }}
path: {{ $volume.configMap.items.path }}
#{{- else if $volume.secret }}
#- name: {{ $volume.name }}
# secret:
Expand Down

0 comments on commit afd5712

Please sign in to comment.