diff --git a/cinder/volume/drivers/scality.py b/cinder/volume/drivers/scality.py
index eb1c6b76313..f3c9fdb5d73 100644
--- a/cinder/volume/drivers/scality.py
+++ b/cinder/volume/drivers/scality.py
@@ -85,6 +85,10 @@ class ScalityDriver(remotefs_drv.RemoteFSSnapDriver):
         # as a config switch to customers.
         self.configuration.scality_sofs_sparsed_volumes = True
 
+        # TODO(smcginnis) Either remove this if CI requirements are met, or
+        # remove this driver in the Ocata release per normal deprecation
+        self._supported = False
+
     def check_for_setup_error(self):
         """Sanity checks before attempting to mount SOFS."""
 
diff --git a/releasenotes/notes/mark-scality-unsupported-530370e034a6f488.yaml b/releasenotes/notes/mark-scality-unsupported-530370e034a6f488.yaml
new file mode 100644
index 00000000000..0aeb7c0e018
--- /dev/null
+++ b/releasenotes/notes/mark-scality-unsupported-530370e034a6f488.yaml
@@ -0,0 +1,11 @@
+---
+upgrade:
+  - The Scality driver has been marked as unsupported and is
+    now deprecated. enable_unsupported_drivers will need to
+    be set to True in cinder.conf to continue to use it.
+deprecations:
+  - The Scality driver has been marked as unsupported and is
+    now deprecated. enable_unsupported_drivers will need to
+    be set to True in cinder.conf to continue to use it. If
+    its support status does not change it will be removed in
+    the next release.