diff options
| author | Kenny Woodson <kwoodson@redhat.com> | 2015-10-29 11:14:51 -0400 | 
|---|---|---|
| committer | Kenny Woodson <kwoodson@redhat.com> | 2015-10-29 11:14:51 -0400 | 
| commit | 9bbaa824da5e1a049cdec1a6523c3841d713386c (patch) | |
| tree | 93e80f1577ad0f2f5f8931b493c50cd9aa657c77 /playbooks/gce/openshift-node | |
| parent | 15df494fb781dd1509854eeb366e981930b52c22 (diff) | |
| parent | 16d1bce0be2f8c3942489630adcb7030aecadc55 (diff) | |
Merge pull request #763 from openshift/master
Merge master into prod.
Diffstat (limited to 'playbooks/gce/openshift-node')
| -rw-r--r-- | playbooks/gce/openshift-node/config.yml | 25 | ||||
| l--------- | playbooks/gce/openshift-node/filter_plugins | 1 | ||||
| -rw-r--r-- | playbooks/gce/openshift-node/launch.yml | 51 | ||||
| l--------- | playbooks/gce/openshift-node/roles | 1 | ||||
| -rw-r--r-- | playbooks/gce/openshift-node/terminate.yml | 35 | 
5 files changed, 0 insertions, 113 deletions
diff --git a/playbooks/gce/openshift-node/config.yml b/playbooks/gce/openshift-node/config.yml deleted file mode 100644 index 54b0da2ca..000000000 --- a/playbooks/gce/openshift-node/config.yml +++ /dev/null @@ -1,25 +0,0 @@ ---- -- name: Populate oo_nodes_to_config and oo_first_master host groups -  hosts: localhost -  gather_facts: no -  tasks: -  - name: Evaluate oo_nodes_to_config -    add_host: -      name: "{{ item }}" -      groups: oo_nodes_to_config -      ansible_ssh_user: root -    with_items: oo_host_group_exp | default([]) -  - name: Evaluate oo_first_master -    add_host: -      name: "{{ groups['tag_env-host-type-' ~ cluster_id ~ '-openshift-master'][0] }}" -      groups: oo_first_master -      ansible_ssh_user: root - - -- include: ../../common/openshift-node/config.yml -  vars: -    openshift_cluster_id: "{{ cluster_id }}" -    openshift_debug_level: 4 -    openshift_deployment_type: "{{ deployment_type }}" -    openshift_first_master: "{{ groups.oo_first_master.0 }}" -    openshift_hostname: "{{ gce_private_ip }}" diff --git a/playbooks/gce/openshift-node/filter_plugins b/playbooks/gce/openshift-node/filter_plugins deleted file mode 120000 index 99a95e4ca..000000000 --- a/playbooks/gce/openshift-node/filter_plugins +++ /dev/null @@ -1 +0,0 @@ -../../../filter_plugins
\ No newline at end of file diff --git a/playbooks/gce/openshift-node/launch.yml b/playbooks/gce/openshift-node/launch.yml deleted file mode 100644 index 086ba58bc..000000000 --- a/playbooks/gce/openshift-node/launch.yml +++ /dev/null @@ -1,51 +0,0 @@ ---- -# TODO: when we are ready to go to ansible 1.9+ support only, we can update to -# the gce task to use the disk_auto_delete parameter to avoid having to delete -# the disk as a separate step on termination - -- name: Launch instance(s) -  hosts: localhost -  connection: local -  gather_facts: no - -# TODO: modify image based on deployment_type -  vars: -    inst_names: "{{ oo_new_inst_names }}" -    machine_type: n1-standard-1 -    image: libra-rhel7 - -  tasks: -    - name: Launch instances -      gce: -        instance_names: "{{ inst_names }}" -        machine_type: "{{ machine_type }}" -        image: "{{ image }}" -        service_account_email: "{{ gce_service_account_email }}" -        pem_file: "{{ gce_pem_file }}" -        project_id: "{{ gce_project_id }}" -        tags: "{{ oo_new_inst_tags }}" -      register: gce - -    - name: Add new instances public IPs to oo_nodes_to_config -      add_host: -        hostname: "{{ item.name }}" -        ansible_ssh_host: "{{ item.public_ip }}" -        groupname: oo_nodes_to_config -        gce_private_ip: "{{ item.private_ip }}" -      with_items: gce.instance_data - -    - name: Wait for ssh -      wait_for: port=22 host={{ item.public_ip }} -      with_items: gce.instance_data - -    - name: Wait for root user setup -      command: "ssh -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ConnectTimeout=10 -o UserKnownHostsFile=/dev/null root@{{ item.public_ip }} echo root user is setup" -      register: result -      until: result.rc == 0 -      retries: 20 -      delay: 10 -      with_items: gce.instance_data - - -# Apply the configs, separate so that just the configs can be run by themselves -- include: config.yml diff --git a/playbooks/gce/openshift-node/roles b/playbooks/gce/openshift-node/roles deleted file mode 120000 index 20c4c58cf..000000000 --- a/playbooks/gce/openshift-node/roles +++ /dev/null @@ -1 +0,0 @@ -../../../roles
\ No newline at end of file diff --git a/playbooks/gce/openshift-node/terminate.yml b/playbooks/gce/openshift-node/terminate.yml deleted file mode 100644 index 357e0c295..000000000 --- a/playbooks/gce/openshift-node/terminate.yml +++ /dev/null @@ -1,35 +0,0 @@ ---- -- name: Populate oo_nodes_to_terminate host group if needed -  hosts: localhost -  gather_facts: no -  tasks: -    - name: Evaluate oo_nodes_to_terminate -      add_host: name={{ item }} groups=oo_nodes_to_terminate -      with_items: oo_host_group_exp | default([]) - -- name: Terminate node instances -  hosts: localhost -  connection: local -  gather_facts: no -  tasks: -    - name: Terminate node instances -      gce: -        service_account_email: "{{ gce_service_account_email }}" -        pem_file: "{{ gce_pem_file }}" -        project_id: "{{ gce_project_id }}" -        state: 'absent' -        instance_names: "{{ groups['oo_nodes_to_terminate'] }}" -        disks: "{{ groups['oo_nodes_to_terminate'] }}" -      register: gce -      when: "'oo_nodes_to_terminate' in groups" - -    - name: Remove disks of instances -      gce_pd: -        service_account_email: "{{ gce_service_account_email }}" -        pem_file: "{{ gce_pem_file }}" -        project_id: "{{ gce_project_id }}" -        name: "{{ item }}" -        zone: "{{ gce.zone }}" -        state: absent -      with_items: gce.instance_names -      when: "'oo_nodes_to_terminate' in groups"  | 
