summaryrefslogtreecommitdiffstats
path: root/roles/openshift_metrics/templates/pvc.j2
diff options
context:
space:
mode:
authorJan Pazdziora <jpazdziora@redhat.com>2017-11-27 12:32:48 +0100
committerJan Pazdziora <jpazdziora@redhat.com>2017-11-27 13:11:45 +0100
commit37636c325aed612c06f86cbb042fc14bcbde218c (patch)
tree000e3bc81c52c3a87488b5e71bcb68fd13eb76d1 /roles/openshift_metrics/templates/pvc.j2
parent1ef463e727e202ba7595976f0478110b3b7585d0 (diff)
downloadopenshift-37636c325aed612c06f86cbb042fc14bcbde218c.tar.gz
openshift-37636c325aed612c06f86cbb042fc14bcbde218c.tar.bz2
openshift-37636c325aed612c06f86cbb042fc14bcbde218c.tar.xz
openshift-37636c325aed612c06f86cbb042fc14bcbde218c.zip
dist.iteritems() no longer exists in Python 3.
Diffstat (limited to 'roles/openshift_metrics/templates/pvc.j2')
-rw-r--r--roles/openshift_metrics/templates/pvc.j26
1 files changed, 3 insertions, 3 deletions
diff --git a/roles/openshift_metrics/templates/pvc.j2 b/roles/openshift_metrics/templates/pvc.j2
index b4e6a1503..9a4b428ec 100644
--- a/roles/openshift_metrics/templates/pvc.j2
+++ b/roles/openshift_metrics/templates/pvc.j2
@@ -7,13 +7,13 @@ metadata:
metrics-infra: support
{% elif labels %}
labels:
-{% for key, value in labels.iteritems() %}
+{% for key, value in labels.items() %}
{{ key }}: {{ value }}
{% endfor %}
{% endif %}
{% if annotations is defined and annotations %}
annotations:
-{% for key,value in annotations.iteritems() %}
+{% for key,value in annotations.items() %}
{{key}}: {{value}}
{% endfor %}
{% endif %}
@@ -21,7 +21,7 @@ spec:
{% if pv_selector is defined and pv_selector is mapping %}
selector:
matchLabels:
-{% for key,value in pv_selector.iteritems() %}
+{% for key,value in pv_selector.items() %}
{{key}}: {{value}}
{% endfor %}
{% endif %}