Skip to content

Commit

Permalink
Fix: Allow clickhouse data and logs volumes to have different file sy…
Browse files Browse the repository at this point in the history
…stems (#74)
  • Loading branch information
alexandermorozov authored Jun 2, 2024
1 parent 41b628f commit 89e0016
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion charts/datafold/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: datafold
description: Helm chart package to deploy Datafold on kubernetes.
type: application
version: 0.6.2
version: 0.6.3
appVersion: "1.0.0"
icon: https://www.datafold.com/logo.png

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ spec:
csi:
driver: ebs.csi.aws.com
volumeHandle: {{ .Values.storage.dataVolumeId }}
fsType: "ext4"
fsType: {{ .Values.storage.dataFsType }}
{{- end }}
{{- if (eq .Values.global.cloudProvider "gcp") }}
csi:
driver: pd.csi.storage.gke.io
volumeHandle: {{ .Values.storage.dataVolumeId }}
fsType: "ext4"
fsType: {{ .Values.storage.dataFsType }}
{{- end }}
claimRef:
name: {{ include "clickhouse.data.pvc.name" . }}
Expand All @@ -51,13 +51,13 @@ spec:
csi:
driver: ebs.csi.aws.com
volumeHandle: {{ .Values.storage.logVolumeId }}
fsType: "ext4"
fsType: {{ .Values.storage.logsFsType }}
{{- end }}
{{- if (eq .Values.global.cloudProvider "gcp") }}
csi:
driver: pd.csi.storage.gke.io
volumeHandle: {{ .Values.storage.logVolumeId }}
fsType: "ext4"
fsType: {{ .Values.storage.logsFsType }}
{{- end }}
claimRef:
name: {{ include "clickhouse.logs.pvc.name" . }}
Expand Down
2 changes: 2 additions & 0 deletions charts/datafold/charts/clickhouse/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ storage:
storageClass: ""
dataVolumeId: ""
logVolumeId: ""
dataFsType: "ext4"
logsFsType: "ext4"

config:
ram_ratio: 0.9
Expand Down
2 changes: 1 addition & 1 deletion charts/datafold/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ config:
enableSsrfProtection: "true"
logLevel: "INFO"
enforceHttps: "true"
googleOauthRequestBQ: "true"
googleOauthRequestBQ: "false"
ddTraceEnabled: "false"
ddApmAddress: ""
ddDogStatsDisable: "false"
Expand Down

0 comments on commit 89e0016

Please sign in to comment.