Skip to content

Commit

Permalink
feat(charts/thredds): allow templating in publicDataSubPath & cacheDa…
Browse files Browse the repository at this point in the history
…taSubPath [pack]
  • Loading branch information
robinbourianes-kalisio committed Feb 28, 2022
1 parent be09d64 commit de57641
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions charts/thredds/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ spec:
- mountPath: /usr/local/tomcat/content/thredds
name: thredds-config
- mountPath: /usr/local/tomcat/content/thredds/public
subPath: {{ .Values.publicDataSubPath }}
subPath: {{ include "common.tplvalues.render" ( dict "value" .Values.publicDataSubPath "context" $ ) }}
name: thredds-data
- mountPath: /usr/local/tomcat/content/thredds/cache
subPath: {{ .Values.cacheDataSubPath }}
subPath: {{ include "common.tplvalues.render" ( dict "value" .Values.cacheDataSubPath "context" $ ) }}
name: thredds-data
volumes:
- name: tomcat-config
Expand Down

0 comments on commit de57641

Please sign in to comment.