Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
annirudh committed Dec 17, 2024
1 parent 70debde commit 0c328aa
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ spec:
{{- include "parquet.labels" . | nindent 8 }}
annotations:
{{- if .Values.fuse.enabled }}
{{- if eq $bucketProvider "gcs" }}
{{- if and (eq $bucketProvider "gcs") (eq .Values.global.cloudProvider "gcp") }}
gke-gcsfuse/volumes: "true"
gke-gcsfuse/ephemeral-storage-limit: "{{ index .Values.fuse.resources.limits "ephemeral-storage" }}"
gke-gcsfuse/cpu-request: "{{ .Values.fuse.resources.requests.cpu }}"
Expand Down Expand Up @@ -216,7 +216,7 @@ spec:
volumes:
{{- if .Values.fuse.enabled }}
- name: fuse
{{- if eq $bucketProvider "gcs" }}
{{- if and (eq $bucketProvider "gcs") (eq .Values.global.cloudProvider "gcp") }}
csi:
driver: gcsfuse.csi.storage.gke.io
readOnly: true
Expand Down

0 comments on commit 0c328aa

Please sign in to comment.