From 0319ee8c64dababa1f8606612d140cb5805e4f45 Mon Sep 17 00:00:00 2001
From: Russell Teague <rteague@redhat.com>
Date: Mon, 27 Feb 2017 16:02:11 -0500
Subject: Correct fact creation for pvc

---
 roles/openshift_hosted/tasks/registry/registry.yml | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/roles/openshift_hosted/tasks/registry/registry.yml b/roles/openshift_hosted/tasks/registry/registry.yml
index cad5c666c..62d625da0 100644
--- a/roles/openshift_hosted/tasks/registry/registry.yml
+++ b/roles/openshift_hosted/tasks/registry/registry.yml
@@ -64,13 +64,14 @@
   when:
   - openshift.hosted.registry.storage.kind | default(none) == 'object'
 
-- name: Set facts for persistent volume
+- name: Update openshift_hosted facts for persistent volumes
   set_fact:
+    openshift_hosted_registry_volumes: "{{ openshift_hosted_registry_volumes | union(pvc_volume_mounts) }}"
+  vars:
     pvc_volume_mounts:
     - name: registry-storage
       type: persistentVolumeClaim
       claim_name: "{{ openshift.hosted.registry.storage.volume.name }}-claim"
-    openshift_hosted_registry_volumes: "{{ openshift_hosted_registry_volumes | union(pvc_volume_mounts) }}"
   when:
   - openshift.hosted.registry.storage.kind | default(none) in ['nfs', 'openstack']
 
-- 
cgit v1.2.3