diff options
author | Brenton Leanhardt <bleanhar@redhat.com> | 2015-11-06 09:31:24 -0500 |
---|---|---|
committer | Brenton Leanhardt <bleanhar@redhat.com> | 2015-11-06 14:16:33 -0500 |
commit | c20c024d9729f83607e600d304272398c394652b (patch) | |
tree | 236ab12930ca08bc50dcd37982b1ac3dd35cacc3 /playbooks | |
parent | f50cb24856560880be33607323053d14916c5650 (diff) | |
download | openshift-c20c024d9729f83607e600d304272398c394652b.tar.gz openshift-c20c024d9729f83607e600d304272398c394652b.tar.bz2 openshift-c20c024d9729f83607e600d304272398c394652b.tar.xz openshift-c20c024d9729f83607e600d304272398c394652b.zip |
Bug 1278245 - Failed to add node to existing env using atomic-openshift-installer
Diffstat (limited to 'playbooks')
-rw-r--r-- | playbooks/common/openshift-cluster/scaleup.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/playbooks/common/openshift-cluster/scaleup.yml b/playbooks/common/openshift-cluster/scaleup.yml index 201320de8..6d2777732 100644 --- a/playbooks/common/openshift-cluster/scaleup.yml +++ b/playbooks/common/openshift-cluster/scaleup.yml @@ -1,7 +1,16 @@ --- - include: evaluate_groups.yml + vars: + g_etcd_group: "{{ 'etcd' }}" + g_masters_group: "{{ 'masters' }}" + g_nodes_group: "{{ 'nodes' }}" + g_lb_group: "{{ 'lb' }}" + openshift_cluster_id: "{{ cluster_id | default('default') }}" + openshift_debug_level: 2 + openshift_deployment_type: "{{ deployment_type }}" - include: ../openshift-node/config.yml vars: osn_cluster_dns_domain: "{{ hostvars[groups.oo_first_master.0].openshift.dns.domain }}" osn_cluster_dns_ip: "{{ hostvars[groups.oo_first_master.0].openshift.dns.ip }}" + openshift_deployment_type: "{{ deployment_type }}" |