summaryrefslogtreecommitdiffstats
path: root/roles/openshift_examples/tasks
diff options
context:
space:
mode:
authorScott Dodson <sdodson@redhat.com>2016-07-29 12:54:35 -0400
committerScott Dodson <sdodson@redhat.com>2016-07-29 13:59:38 -0400
commit3391066d5b5c5a981ee6f0a375b55bd94d42c7fd (patch)
tree66ad870204e2380500802d17588c0534cedfc2bf /roles/openshift_examples/tasks
parentc70525677eed8818602d2a6db080e009689c0ca3 (diff)
downloadopenshift-3391066d5b5c5a981ee6f0a375b55bd94d42c7fd.tar.gz
openshift-3391066d5b5c5a981ee6f0a375b55bd94d42c7fd.tar.bz2
openshift-3391066d5b5c5a981ee6f0a375b55bd94d42c7fd.tar.xz
openshift-3391066d5b5c5a981ee6f0a375b55bd94d42c7fd.zip
Add dotnet image stream to enterprise installs
Diffstat (limited to 'roles/openshift_examples/tasks')
-rw-r--r--roles/openshift_examples/tasks/main.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/roles/openshift_examples/tasks/main.yml b/roles/openshift_examples/tasks/main.yml
index d80e7f086..86148784f 100644
--- a/roles/openshift_examples/tasks/main.yml
+++ b/roles/openshift_examples/tasks/main.yml
@@ -49,8 +49,10 @@
# RHEL and Centos image streams are mutually exclusive
- name: Import RHEL streams
command: >
- {{ openshift.common.client_binary }} {{ openshift_examples_import_command }} -n openshift -f {{ rhel_image_streams }}
+ {{ openshift.common.client_binary }} {{ openshift_examples_import_command }} -n openshift -f {{ item }}
when: openshift_examples_load_rhel | bool
+ with_items:
+ - "{{ rhel_image_streams }}"
register: oex_import_rhel_streams
failed_when: "'already exists' not in oex_import_rhel_streams.stderr and oex_import_rhel_streams.rc != 0"
changed_when: false