diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2019-09-25 22:31:36 +0200 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2019-09-25 22:31:36 +0200 |
commit | 55ae94fdb6a6508f30c0eb0f5dfe95a11ac9682f (patch) | |
tree | 28f69be919f62748df8957fb6ee7f27d38199cbb /roles/glusterfs/templates/export.openshift.conf.j2 | |
parent | 9cd1db3fd3581ea36423a76c9a74be8054e846d4 (diff) | |
download | ands-55ae94fdb6a6508f30c0eb0f5dfe95a11ac9682f.tar.gz ands-55ae94fdb6a6508f30c0eb0f5dfe95a11ac9682f.tar.bz2 ands-55ae94fdb6a6508f30c0eb0f5dfe95a11ac9682f.tar.xz ands-55ae94fdb6a6508f30c0eb0f5dfe95a11ac9682f.zip |
Python3 compatibility
Diffstat (limited to 'roles/glusterfs/templates/export.openshift.conf.j2')
-rw-r--r-- | roles/glusterfs/templates/export.openshift.conf.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/glusterfs/templates/export.openshift.conf.j2 b/roles/glusterfs/templates/export.openshift.conf.j2 index 85132cb..a2d1971 100644 --- a/roles/glusterfs/templates/export.openshift.conf.j2 +++ b/roles/glusterfs/templates/export.openshift.conf.j2 @@ -1,6 +1,6 @@ {% set i = 0 %} {% for domain in glusterfs_domains %} -{% for name, vol in domain.volumes.iteritems() %} +{% for name, vol in domain.volumes.items() %} {% if vol.nfs_clients is defined %} {% set nfs = vol.nfs_clients %} {% set i = i + 1 %} |