Skip to content

Commit

Permalink
fix: trino chart deployments (#416)
Browse files Browse the repository at this point in the history
  • Loading branch information
rohank07 authored Mar 30, 2023
1 parent e3b5ddc commit 6708180
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion stable/trino/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: 1.23.2
version: 1.23.3

# 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
3 changes: 2 additions & 1 deletion stable/trino/templates/deployment-coordinator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,10 @@ spec:
{{- if .Values.server.protb }}
- configMap:
name: trino-protb-rules
{{ end }}
{{ else }}
- configMap:
name: trino-unclassified-rules
{{ end }}
- name: catalog-volume
configMap:
{{- if .Values.server.protb }}
Expand Down
5 changes: 3 additions & 2 deletions stable/trino/templates/deployment-worker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,13 @@ spec:
- name: rules-volume
projected:
sources:
{{- if .Values.server.protb }}
{{- if .Values.server.protb }}
- configMap:
name: trino-protb-rules
{{ end }}
{{- else }}
- configMap:
name: trino-unclassified-rules
{{ end }}
- name: config-volume
configMap:
name: {{ template "trino.worker" . }}
Expand Down

0 comments on commit 6708180

Please sign in to comment.