[incubator/druid] overlord is broken when gCloudStorage.enabled is true (#23484) (#23485)

Signed-off-by: Youngwoo Kim <ywkim@apache.org>
This commit is contained in:
Youngwoo Kim
2020-09-23 07:08:09 -07:00
committed by GitHub
parent eebc887f00
commit ef5b868762
2 changed files with 12 additions and 1 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ apiVersion: v1
appVersion: 0.19.0
description: Apache Druid is a high performance real-time analytics database.
name: druid
version: 0.2.10
version: 0.2.11
home: https://druid.apache.org/
icon: https://druid.apache.org/img/favicon.png
maintainers:
@@ -56,6 +56,17 @@ spec:
port: {{ .Values.overlord.port }}
resources:
{{ toYaml .Values.overlord.resources | indent 12 }}
volumeMounts:
{{- if .Values.gCloudStorage.enabled }}
- name: google-cloud-key
mountPath: /var/secrets/google
{{- end }}
volumes:
{{- if .Values.gCloudStorage.enabled }}
- name: google-cloud-key
secret:
secretName: {{ .Values.gCloudStorage.secretName }}
{{- end }}
{{- with .Values.overlord.nodeSelector }}
nodeSelector:
{{ toYaml . | indent 8 }}