summaryrefslogtreecommitdiffstats
path: root/roles/openshift_registry/tasks
diff options
context:
space:
mode:
authorJhon Honce <jhonce@redhat.com>2015-05-01 13:57:30 -0700
committerJhon Honce <jhonce@redhat.com>2015-05-29 14:36:56 -0700
commit3e533e199aa9262f5ca45f8311e82e975cde73b9 (patch)
treec9ce290ee05b408aa4209c9ebeaecfacb84acd12 /roles/openshift_registry/tasks
parent1b4526d677651cb3677cbf7cc687a76fcba47c9a (diff)
downloadopenshift-3e533e199aa9262f5ca45f8311e82e975cde73b9.tar.gz
openshift-3e533e199aa9262f5ca45f8311e82e975cde73b9.tar.bz2
openshift-3e533e199aa9262f5ca45f8311e82e975cde73b9.tar.xz
openshift-3e533e199aa9262f5ca45f8311e82e975cde73b9.zip
* Deploy services from common playbook
Diffstat (limited to 'roles/openshift_registry/tasks')
-rw-r--r--roles/openshift_registry/tasks/main.yml8
1 files changed, 8 insertions, 0 deletions
diff --git a/roles/openshift_registry/tasks/main.yml b/roles/openshift_registry/tasks/main.yml
new file mode 100644
index 000000000..ea362bb7d
--- /dev/null
+++ b/roles/openshift_registry/tasks/main.yml
@@ -0,0 +1,8 @@
+---
+- set_fact: _option_images="--images={{ openshift_registry_url|quote }}"
+ when: openshift_registry_url is defined
+
+- name: Deploy OpenShift Registry
+ command: openshift admin registry --create --credentials=/var/lib/openshift/openshift.local.certificates/openshift-registry/.kubeconfig {{ _option_images|default() }}
+ register: _openshift_registry__results
+ changed_when: "'service exists' not in _openshift_registry__results.stdout"