|
@@ -18,12 +18,17 @@ class ActionModule(ActionBase):
|
|
|
volume = self.get_templated(str(varname) + '_volume_name')
|
|
|
size = self.get_templated(str(varname) + '_volume_size')
|
|
|
labels = self.task_vars.get(str(varname) + '_labels')
|
|
|
+ annotations = self.task_vars.get(str(varname) + '_annotations')
|
|
|
if labels:
|
|
|
labels = self._templar.template(labels)
|
|
|
else:
|
|
|
labels = dict()
|
|
|
+ if annotations:
|
|
|
+ annotations = self._templar.template(annotations)
|
|
|
+ else:
|
|
|
+ annotations = list()
|
|
|
access_modes = self.get_templated(str(varname) + '_access_modes')
|
|
|
- return (volume, size, labels, access_modes)
|
|
|
+ return (volume, size, labels, annotations, access_modes)
|
|
|
|
|
|
def build_pv_nfs(self, varname=None):
|
|
|
"""Build pv dictionary for nfs storage type"""
|
|
@@ -98,7 +103,7 @@ class ActionModule(ActionBase):
|
|
|
elif kind == 'glusterfs':
|
|
|
return self.build_pv_glusterfs(varname=varname)
|
|
|
|
|
|
- elif not (kind == 'object' or kind == 'dynamic'):
|
|
|
+ elif not (kind == 'object' or kind == 'dynamic' or kind == 'vsphere'):
|
|
|
msg = "|failed invalid storage kind '{0}' for component '{1}'".format(
|
|
|
kind,
|
|
|
varname)
|
|
@@ -117,7 +122,7 @@ class ActionModule(ActionBase):
|
|
|
if create_pvc:
|
|
|
create_pvc = self._templar.template(create_pvc)
|
|
|
if kind != 'object' and create_pv and create_pvc:
|
|
|
- volume, size, _, access_modes = self.build_common(varname=varname)
|
|
|
+ volume, size, _, annotations, access_modes = self.build_common(varname=varname)
|
|
|
storageclass = self.task_vars.get(str(varname) + '_storageclass')
|
|
|
if storageclass:
|
|
|
storageclass = self._templar.template(storageclass)
|
|
@@ -126,6 +131,7 @@ class ActionModule(ActionBase):
|
|
|
return dict(
|
|
|
name="{0}-claim".format(volume),
|
|
|
capacity=size,
|
|
|
+ annotations=annotations,
|
|
|
access_modes=access_modes,
|
|
|
storageclass=storageclass)
|
|
|
return None
|