diff options
author | Wesley Hearn <wesley.s.hearn@gmail.com> | 2016-01-04 09:42:43 -0500 |
---|---|---|
committer | Wesley Hearn <wesley.s.hearn@gmail.com> | 2016-01-04 09:42:43 -0500 |
commit | f1951b2ca60536e81c9ff26a30b1cfbaf5ca12e9 (patch) | |
tree | 1c304d5daebfb1780ca26973319b4427e2a40b54 /playbooks/common/openshift-cluster | |
parent | fb1b9ff7d3293c821a8569ae95dcc8a98dfbf967 (diff) | |
parent | 0c18c742c60e5c4acd609d682caae7f7ce8840cd (diff) | |
download | openshift-f1951b2ca60536e81c9ff26a30b1cfbaf5ca12e9.tar.gz openshift-f1951b2ca60536e81c9ff26a30b1cfbaf5ca12e9.tar.bz2 openshift-f1951b2ca60536e81c9ff26a30b1cfbaf5ca12e9.tar.xz openshift-f1951b2ca60536e81c9ff26a30b1cfbaf5ca12e9.zip |
Merge pull request #951 from abutcher/nfs
NFS for registry storage
Diffstat (limited to 'playbooks/common/openshift-cluster')
-rw-r--r-- | playbooks/common/openshift-cluster/config.yml | 2 | ||||
-rw-r--r-- | playbooks/common/openshift-cluster/evaluate_groups.yml | 16 |
2 files changed, 18 insertions, 0 deletions
diff --git a/playbooks/common/openshift-cluster/config.yml b/playbooks/common/openshift-cluster/config.yml index a62d60167..11e5b68f6 100644 --- a/playbooks/common/openshift-cluster/config.yml +++ b/playbooks/common/openshift-cluster/config.yml @@ -5,6 +5,8 @@ - include: ../openshift-etcd/config.yml +- include: ../openshift-nfs/config.yml + - include: ../openshift-master/config.yml - include: ../openshift-node/config.yml diff --git a/playbooks/common/openshift-cluster/evaluate_groups.yml b/playbooks/common/openshift-cluster/evaluate_groups.yml index 6343a2567..db7105ed5 100644 --- a/playbooks/common/openshift-cluster/evaluate_groups.yml +++ b/playbooks/common/openshift-cluster/evaluate_groups.yml @@ -21,6 +21,14 @@ msg: This playbook requires g_lb_hosts to be set when: g_lb_hosts is not defined + - fail: + msg: This playbook requires g_nfs_hosts to be set + when: g_nfs_hosts is not defined + + - fail: + msg: The nfs group must be limited to one host + when: (groups[g_nfs_hosts] | default([])) | length > 1 + - name: Evaluate oo_etcd_to_config add_host: name: "{{ item }}" @@ -81,3 +89,11 @@ ansible_ssh_user: "{{ g_ssh_user | default(omit) }}" ansible_sudo: "{{ g_sudo | default(omit) }}" with_items: "{{ g_lb_hosts | default([]) }}" + + - name: Evaluate oo_nfs_to_config + add_host: + name: "{{ item }}" + groups: oo_nfs_to_config + ansible_ssh_user: "{{ g_ssh_user | default(omit) }}" + ansible_sudo: "{{ g_sudo | default(omit) }}" + with_items: "{{ g_nfs_hosts | default([]) }}" |