diff --git a/shiny-server/Chart.yaml b/shiny-server/Chart.yaml
index 839185e98ecaa1534e95a8f9e73778cf57eac538..ec90c804378aad5c36f79e962271b885855c01c6 100644
--- a/shiny-server/Chart.yaml
+++ b/shiny-server/Chart.yaml
@@ -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: 0.7.1
+version: 0.7.2
 
 # 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
diff --git a/shiny-server/templates/storage.yaml b/shiny-server/templates/storage.yaml
index 4404b250b547523e990de04314d435b975efbe9f..0510dd4609acfbbda6befe06f609703b6e612284 100644
--- a/shiny-server/templates/storage.yaml
+++ b/shiny-server/templates/storage.yaml
@@ -2,8 +2,8 @@
 {{- if and (eq .Values.storage.className "ceph-block") .Values.nodowntime.enabled }}
 {{- required "Using ceph-block storage is incompatible with nodowntime enabled." "" }}
 {{- end }}
-{{- if not (or (eq .Values.storage.className "ceph-block") (eq .Values.storage.className "isilon")) }}
-{{- required (printf "Storage class unkown (%s). Only isilon or ceph-block expected." .Values.storage.className) "" }}
+{{- if not (or (eq .Values.storage.className "ceph-fs") (eq .Values.storage.className "ceph-block") (eq .Values.storage.className "isilon")) }}
+{{- required (printf "Storage class unkown (%s). Only isilon, ceph-fs or ceph-block expected." .Values.storage.className) "" }}
 {{- end }}
 apiVersion: v1
 kind: PersistentVolumeClaim
@@ -21,5 +21,5 @@ spec:
   resources:
     requests:
       storage: {{ (default "1Gi" .Values.storage.size ) | quote }}
-  storageClassName: {{ (default "isilon" .Values.storage.className ) | quote }}
+  storageClassName: {{ (default "ceph-fs" .Values.storage.className ) | quote }}
 {{- end }}
\ No newline at end of file
diff --git a/shiny-server/values.yaml b/shiny-server/values.yaml
index 0d4190c16f83af467747862d90638583236d587f..5d65acdbd2fdabebf5876335c734211fbe4303b9 100644
--- a/shiny-server/values.yaml
+++ b/shiny-server/values.yaml
@@ -37,5 +37,5 @@ registry:
 storage:
   enabled: false
   size: "1Gi"
-  className: "isilon" # could be ceph-block, incompatible with nodowntime
+  className: "ceph-fs" # could be ceph-block, incompatible with nodowntime
   keepOnDelete: true