Add pkg `thin-provisioning-tools` to cinder.volume

When we use `cinder.volume.backend.engine == lvm2`.
We  need install the supporting utility packages.
Docs:
https://docs.openstack.org/cinder/pike/install/cinder-storage-install-ubuntu.html
https://docs.openstack.org/cinder/queens/install/cinder-storage-install-ubuntu.html
https://docs.openstack.org/cinder/rocky/install/cinder-storage-install-ubuntu.html

Change-Id: Ie9c47ec17337742126bd1abe6844ccdb088a0f39
Related-Prod: PROD-23724 (PROD:23724)
diff --git a/cinder/volume.sls b/cinder/volume.sls
index 57bb23e..cc221e6 100644
--- a/cinder/volume.sls
+++ b/cinder/volume.sls
@@ -200,6 +200,10 @@
 
 {%- if backend.engine in ['lvm'] %}
 
+{%- if volume.version not in ["juno", "kilo", "liberty", "mitaka", "newton", "ocata"] %}
+  {%- do volume.openiscsi_pkgs.append('thin-provisioning-tools') %}
+{%- endif %}
+
 cinder_openiscsi_packages_{{ loop.index }}:
   pkg.installed:
   - names: {{ volume.openiscsi_pkgs }}