Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

[incubator/druid] fix invalid default values.yaml configuration that crashes JVM #23121

Closed
wants to merge 2 commits into from
Closed
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
4 changes: 3 additions & 1 deletion incubator/druid/templates/historical/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@ spec:
imagePullSecrets:
{{ toYaml .Values.image.pullSecrets | indent 8 }}
{{- end }}
securityContext:
fsGroup: 1000
containers:
- name: druid
args: [ "historical" ]
Expand Down Expand Up @@ -97,7 +99,7 @@ spec:
- containerPort: {{ .Values.historical.port }}
name: http
volumeMounts:
- mountPath: /var/druid/
- mountPath: /opt/druid/var/druid/
name: data
{{- if .Values.gCloudStorage.enabled }}
- name: google-cloud-key
Expand Down
4 changes: 3 additions & 1 deletion incubator/druid/templates/middleManager/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@ spec:
imagePullSecrets:
{{ toYaml .Values.image.pullSecrets | indent 8 }}
{{- end }}
securityContext:
fsGroup: 1000
containers:
- name: druid
args: [ "middleManager" ]
Expand Down Expand Up @@ -97,7 +99,7 @@ spec:
- containerPort: {{ .Values.middleManager.port }}
name: http
volumeMounts:
- mountPath: /var/druid/
- mountPath: /opt/druid/var/druid/
elad-yosifon marked this conversation as resolved.
Show resolved Hide resolved
name: data
{{- if .Values.gCloudStorage.enabled }}
- name: google-cloud-key
Expand Down