Jelajahi Sumber

Enforce connection: local and become: no on all localhost plays

Jason DeTiberus 9 tahun lalu
induk
melakukan
e81bf0e72d
43 mengubah file dengan 112 tambahan dan 11 penghapusan
  1. 6 4
      playbooks/adhoc/create_pv/create_pv.yaml
  2. 4 0
      playbooks/adhoc/noc/create_host.yml
  3. 2 0
      playbooks/adhoc/noc/create_maintenance.yml
  4. 2 0
      playbooks/adhoc/noc/get_zabbix_problems.yml
  5. 2 0
      playbooks/adhoc/zabbix_setup/clean_zabbix.yml
  6. 2 0
      playbooks/adhoc/zabbix_setup/oo-config-zaio.yml
  7. 2 0
      playbooks/aws/ansible-tower/config.yml
  8. 1 0
      playbooks/aws/ansible-tower/launch.yml
  9. 1 0
      playbooks/aws/openshift-cluster/addNodes.yml
  10. 2 0
      playbooks/aws/openshift-cluster/config.yml
  11. 1 0
      playbooks/aws/openshift-cluster/launch.yml
  12. 2 0
      playbooks/aws/openshift-cluster/list.yml
  13. 2 0
      playbooks/aws/openshift-cluster/scaleup.yml
  14. 2 0
      playbooks/aws/openshift-cluster/service.yml
  15. 3 0
      playbooks/aws/openshift-cluster/terminate.yml
  16. 2 0
      playbooks/aws/openshift-cluster/update.yml
  17. 2 0
      playbooks/common/openshift-cluster/evaluate_groups.yml
  18. 16 0
      playbooks/common/openshift-cluster/upgrades/v3_0_to_v3_1/upgrade.yml
  19. 2 2
      playbooks/common/openshift-etcd/config.yml
  20. 2 0
      playbooks/common/openshift-etcd/service.yml
  21. 5 3
      playbooks/common/openshift-master/config.yml
  22. 2 0
      playbooks/common/openshift-master/service.yml
  23. 2 2
      playbooks/common/openshift-node/config.yml
  24. 2 0
      playbooks/common/openshift-node/service.yml
  25. 2 0
      playbooks/gce/openshift-cluster/config.yml
  26. 4 0
      playbooks/gce/openshift-cluster/join_node.yml
  27. 1 0
      playbooks/gce/openshift-cluster/launch.yml
  28. 2 0
      playbooks/gce/openshift-cluster/list.yml
  29. 2 0
      playbooks/gce/openshift-cluster/service.yml
  30. 2 0
      playbooks/gce/openshift-cluster/terminate.yml
  31. 2 0
      playbooks/gce/openshift-cluster/update.yml
  32. 1 0
      playbooks/gce/openshift-cluster/wip.yml
  33. 2 0
      playbooks/libvirt/openshift-cluster/config.yml
  34. 2 0
      playbooks/libvirt/openshift-cluster/launch.yml
  35. 4 0
      playbooks/libvirt/openshift-cluster/list.yml
  36. 2 0
      playbooks/libvirt/openshift-cluster/service.yml
  37. 4 0
      playbooks/libvirt/openshift-cluster/terminate.yml
  38. 2 0
      playbooks/libvirt/openshift-cluster/update.yml
  39. 2 0
      playbooks/openstack/openshift-cluster/config.yml
  40. 1 0
      playbooks/openstack/openshift-cluster/launch.yml
  41. 4 0
      playbooks/openstack/openshift-cluster/list.yml
  42. 2 0
      playbooks/openstack/openshift-cluster/terminate.yml
  43. 2 0
      playbooks/openstack/openshift-cluster/update.yml

+ 6 - 4
playbooks/adhoc/create_pv/create_pv.yaml

@@ -1,5 +1,5 @@
 ---
-#example run: 
+#example run:
 # ansible-playbook -e "cli_volume_size=1" \
 #                  -e "cli_device_name=/dev/xvdf" \
 #                  -e "cli_hosttype=master" \
@@ -9,6 +9,8 @@
 #
 - name: Create a volume and attach it to master
   hosts: localhost
+  connection: local
+  become: no
   gather_facts: no
   vars:
     cli_volume_type: gp2
@@ -103,7 +105,7 @@
     filesystem:
       dev: "{{ cli_device_name }}"
       fstype: ext4
-    
+
   - name: Mount the dev
     mount:
       name: "{{ pv_mntdir }}"
@@ -112,7 +114,7 @@
       state: mounted
 
   - name: chgrp g+rwXs
-    file: 
+    file:
       path: "{{ pv_mntdir }}"
       mode: 'g+rwXs'
       recurse: yes
@@ -154,6 +156,6 @@
 
   - debug: var=oc_output
 
-  - fail: 
+  - fail:
       msg: "Failed to add {{ pv_template }} to master."
     when: oc_output.rc != 0

+ 4 - 0
playbooks/adhoc/noc/create_host.yml

@@ -1,6 +1,8 @@
 ---
 - name: 'Create a host object in zabbix'
   hosts: localhost
+  connection: local
+  become: no
   gather_facts: no
   roles:
     - os_zabbix
@@ -23,6 +25,8 @@
 #ansible-playbook -e 'oo_desc=kwoodson test' -e 'oo_name=kwoodson test name' -e 'oo_start=1435715357' -e 'oo_stop=1435718985' -e 'oo_hostids=11549' create_maintenance.yml
 - name: 'Create a host object in zabbix'
   hosts: localhost
+  connection: local
+  become: no
   gather_facts: no
   roles:
     - os_zabbix

+ 2 - 0
playbooks/adhoc/noc/create_maintenance.yml

@@ -2,6 +2,8 @@
 #ansible-playbook -e 'oo_desc=kwoodson test' -e 'oo_name=kwoodson test name' -e 'oo_start=1435715357' -e 'oo_stop=1435718985' -e 'oo_hostids=11549' create_maintenance.yml
 - name: 'Create a maintenace object in zabbix'
   hosts: localhost
+  connection: local
+  become: no
   gather_facts: no
   roles:
     - os_zabbix

+ 2 - 0
playbooks/adhoc/noc/get_zabbix_problems.yml

@@ -1,6 +1,8 @@
 ---
 - name: 'Get current hosts who have triggers that are alerting by trigger description'
   hosts: localhost
+  connection: local
+  become: no
   gather_facts: no
   roles:
     - os_zabbix

+ 2 - 0
playbooks/adhoc/zabbix_setup/clean_zabbix.yml

@@ -1,6 +1,8 @@
 ---
 - hosts: localhost
   gather_facts: no
+  connection: local
+  become: no
   vars:
     g_server: http://localhost:8080/zabbix/api_jsonrpc.php
     g_user: ''

+ 2 - 0
playbooks/adhoc/zabbix_setup/oo-config-zaio.yml

@@ -2,6 +2,8 @@
 ---
 - hosts: localhost
   gather_facts: no
+  connection: local
+  become: no
   vars:
     g_server: http://localhost/zabbix/api_jsonrpc.php
     g_user: Admin

+ 2 - 0
playbooks/aws/ansible-tower/config.yml

@@ -2,6 +2,8 @@
 - name: "populate oo_hosts_to_config host group if needed"
   hosts: localhost
   gather_facts: no
+  connection: local
+  become: no
   tasks:
   - name: Evaluate oo_host_group_exp if it's set
     add_host: "name={{ item }} groups=oo_hosts_to_config"

+ 1 - 0
playbooks/aws/ansible-tower/launch.yml

@@ -2,6 +2,7 @@
 - name: Launch instance(s)
   hosts: localhost
   connection: local
+  become: no
   gather_facts: no
 
   vars:

+ 1 - 0
playbooks/aws/openshift-cluster/addNodes.yml

@@ -2,6 +2,7 @@
 - name: Launch instance(s)
   hosts: localhost
   connection: local
+  become: no
   gather_facts: no
   vars_files:
   - vars.yml

+ 2 - 0
playbooks/aws/openshift-cluster/config.yml

@@ -1,6 +1,8 @@
 ---
 - hosts: localhost
   gather_facts: no
+  connection: local
+  become: no
   vars_files:
   - vars.yml
   tasks:

+ 1 - 0
playbooks/aws/openshift-cluster/launch.yml

@@ -2,6 +2,7 @@
 - name: Launch instance(s)
   hosts: localhost
   connection: local
+  become: no
   gather_facts: no
   vars_files:
   - vars.yml

+ 2 - 0
playbooks/aws/openshift-cluster/list.yml

@@ -2,6 +2,8 @@
 - name: Generate oo_list_hosts group
   hosts: localhost
   gather_facts: no
+  connection: local
+  become: no
   vars_files:
   - vars.yml
   tasks:

+ 2 - 0
playbooks/aws/openshift-cluster/scaleup.yml

@@ -2,6 +2,8 @@
 
 - hosts: localhost
   gather_facts: no
+  connection: local
+  become: no
   vars_files:
   - vars.yml
   tasks:

+ 2 - 0
playbooks/aws/openshift-cluster/service.yml

@@ -1,6 +1,8 @@
 ---
 - name: Call same systemctl command for openshift on all instance(s)
   hosts: localhost
+  connection: local
+  become: no
   gather_facts: no
   vars_files:
   - vars.yml

+ 3 - 0
playbooks/aws/openshift-cluster/terminate.yml

@@ -1,6 +1,8 @@
 ---
 - name: Terminate instance(s)
   hosts: localhost
+  connection: local
+  become: no
   gather_facts: no
   vars_files:
   - vars.yml
@@ -25,6 +27,7 @@
 - name: Terminate instances
   hosts: localhost
   connection: local
+  become: no
   gather_facts: no
   vars:
     host_vars: "{{ hostvars

+ 2 - 0
playbooks/aws/openshift-cluster/update.yml

@@ -1,6 +1,8 @@
 ---
 - name: Populate oo_hosts_to_update group
   hosts: localhost
+  connection: local
+  become: no
   gather_facts: no
   vars_files:
   - vars.yml

+ 2 - 0
playbooks/common/openshift-cluster/evaluate_groups.yml

@@ -1,6 +1,8 @@
 ---
 - name: Populate config host groups
   hosts: localhost
+  connection: local
+  become: no
   gather_facts: no
   tasks:
   - fail:

+ 16 - 0
playbooks/common/openshift-cluster/upgrades/v3_0_to_v3_1/upgrade.yml

@@ -12,6 +12,8 @@
 
 - name: Evaluate additional groups for upgrade
   hosts: localhost
+  connection: local
+  become: no
   tasks:
   - name: Evaluate etcd_hosts_to_backup
     add_host:
@@ -87,6 +89,8 @@
 ##############################################################################
 - name: Gate on pre-upgrade checks
   hosts: localhost
+  connection: local
+  become: no
   vars:
     pre_upgrade_hosts: "{{ groups.oo_masters_to_config | union(groups.oo_nodes_to_config) }}"
   tasks:
@@ -171,6 +175,8 @@
 ##############################################################################
 - name: Gate on etcd backup
   hosts: localhost
+  connection: local
+  become: no
   tasks:
   - set_fact:
       etcd_backup_completed: "{{ hostvars
@@ -189,6 +195,8 @@
 ###############################################################################
 - name: Create temp directory for syncing certs
   hosts: localhost
+  connection: local
+  become: no
   gather_facts: no
   tasks:
   - name: Create local temp directory for syncing certs
@@ -339,6 +347,8 @@
 
 - name: Delete temporary directory on localhost
   hosts: localhost
+  connection: local
+  become: no
   gather_facts: no
   tasks:
   - file: name={{ g_master_mktemp.stdout }} state=absent
@@ -357,6 +367,8 @@
 ##############################################################################
 - name: Gate on master update
   hosts: localhost
+  connection: local
+  become: no
   tasks:
   - set_fact:
       master_update_completed: "{{ hostvars
@@ -397,6 +409,8 @@
 ##############################################################################
 - name: Gate on nodes update
   hosts: localhost
+  connection: local
+  become: no
   tasks:
   - set_fact:
       node_update_completed: "{{ hostvars
@@ -464,6 +478,8 @@
 ##############################################################################
 - name: Gate on reconcile
   hosts: localhost
+  connection: local
+  become: no
   tasks:
   - set_fact:
       reconcile_completed: "{{ hostvars

+ 2 - 2
playbooks/common/openshift-etcd/config.yml

@@ -33,7 +33,7 @@
 - name: Create temp directory for syncing certs
   hosts: localhost
   connection: local
-  sudo: false
+  become: no
   gather_facts: no
   tasks:
   - name: Create local temp directory for syncing certs
@@ -92,7 +92,7 @@
 - name: Delete temporary directory on localhost
   hosts: localhost
   connection: local
-  sudo: false
+  become: no
   gather_facts: no
   tasks:
   - file: name={{ g_etcd_mktemp.stdout }} state=absent

+ 2 - 0
playbooks/common/openshift-etcd/service.yml

@@ -1,6 +1,8 @@
 ---
 - name: Populate g_service_masters host group if needed
   hosts: localhost
+  connection: local
+  become: no
   gather_facts: no
   tasks:
   - fail: msg="new_cluster_state is required to be injected in this playbook"

+ 5 - 3
playbooks/common/openshift-master/config.yml

@@ -70,7 +70,7 @@
 - name: Create temp directory for syncing certs
   hosts: localhost
   connection: local
-  sudo: false
+  become: no
   gather_facts: no
   tasks:
   - name: Create local temp directory for syncing certs
@@ -207,7 +207,7 @@
 - name: Compute haproxy_backend_servers
   hosts: localhost
   connection: local
-  sudo: false
+  become: no
   gather_facts: no
   tasks:
   - set_fact:
@@ -268,6 +268,8 @@
 
 - name: Parse named certificates
   hosts: localhost
+  connection: local
+  become: no
   vars:
     internal_hostnames: "{{ hostvars[groups.oo_first_master.0].openshift.common.internal_hostnames }}"
     named_certificates: "{{ hostvars[groups.oo_first_master.0].openshift_master_named_certificates | default([]) }}"
@@ -394,7 +396,7 @@
 - name: Delete temporary directory on localhost
   hosts: localhost
   connection: local
-  sudo: false
+  become: no
   gather_facts: no
   tasks:
   - file: name={{ g_master_mktemp.stdout }} state=absent

+ 2 - 0
playbooks/common/openshift-master/service.yml

@@ -2,6 +2,8 @@
 - name: Populate g_service_masters host group if needed
   hosts: localhost
   gather_facts: no
+  connection: local
+  become: no
   tasks:
   - fail: msg="new_cluster_state is required to be injected in this playbook"
     when: new_cluster_state is not defined

+ 2 - 2
playbooks/common/openshift-node/config.yml

@@ -58,7 +58,7 @@
 - name: Create temp directory for syncing certs
   hosts: localhost
   connection: local
-  sudo: false
+  become: no
   gather_facts: no
   tasks:
   - name: Create local temp directory for syncing certs
@@ -189,7 +189,7 @@
 - name: Delete temporary directory on localhost
   hosts: localhost
   connection: local
-  sudo: false
+  become: no
   gather_facts: no
   tasks:
   - file: name={{ mktemp.stdout }} state=absent

+ 2 - 0
playbooks/common/openshift-node/service.yml

@@ -1,6 +1,8 @@
 ---
 - name: Populate g_service_nodes host group if needed
   hosts: localhost
+  connection: local
+  become: no
   gather_facts: no
   tasks:
   - fail: msg="new_cluster_state is required to be injected in this playbook"

+ 2 - 0
playbooks/gce/openshift-cluster/config.yml

@@ -4,6 +4,8 @@
 
 - hosts: localhost
   gather_facts: no
+  connection: local
+  become: no
   vars_files:
   - vars.yml
   tasks:

+ 4 - 0
playbooks/gce/openshift-cluster/join_node.yml

@@ -1,6 +1,8 @@
 ---
 - name: Populate oo_hosts_to_update group
   hosts: localhost
+  connection: local
+  become: no
   gather_facts: no
   vars_files:
   - vars.yml
@@ -16,6 +18,8 @@
 
 - name: Populate oo_masters_to_config host group
   hosts: localhost
+  connection: local
+  become: no
   gather_facts: no
   vars_files:
   - vars.yml

+ 1 - 0
playbooks/gce/openshift-cluster/launch.yml

@@ -2,6 +2,7 @@
 - name: Launch instance(s)
   hosts: localhost
   connection: local
+  become: no
   gather_facts: no
   vars_files:
   - vars.yml

+ 2 - 0
playbooks/gce/openshift-cluster/list.yml

@@ -1,6 +1,8 @@
 ---
 - name: Generate oo_list_hosts group
   hosts: localhost
+  connection: local
+  become: no
   gather_facts: no
   vars_files:
   - vars.yml

+ 2 - 0
playbooks/gce/openshift-cluster/service.yml

@@ -1,6 +1,8 @@
 ---
 - name: Call same systemctl command for openshift on all instance(s)
   hosts: localhost
+  connection: local
+  become: no
   gather_facts: no
   vars_files:
   - vars.yml

+ 2 - 0
playbooks/gce/openshift-cluster/terminate.yml

@@ -2,6 +2,7 @@
 - name: Terminate instance(s)
   hosts: localhost
   connection: local
+  become: no
   gather_facts: no
   vars_files:
   - vars.yml
@@ -27,6 +28,7 @@
 
 - name: Terminate instances(s)
   hosts: localhost
+  become: no
   connection: local
   gather_facts: no
   vars_files:

+ 2 - 0
playbooks/gce/openshift-cluster/update.yml

@@ -1,6 +1,8 @@
 ---
 - name: Populate oo_hosts_to_update group
   hosts: localhost
+  become: no
+  connection: local
   gather_facts: no
   vars_files:
   - vars.yml

+ 1 - 0
playbooks/gce/openshift-cluster/wip.yml

@@ -1,6 +1,7 @@
 ---
 - name: WIP
   hosts: localhost
+  become: no
   connection: local
   gather_facts: no
   vars_files:

+ 2 - 0
playbooks/libvirt/openshift-cluster/config.yml

@@ -5,6 +5,8 @@
 
 - hosts: localhost
   gather_facts: no
+  become: no
+  connection: local
   vars_files:
   - vars.yml
   tasks:

+ 2 - 0
playbooks/libvirt/openshift-cluster/launch.yml

@@ -1,6 +1,8 @@
 ---
 - name: Launch instance(s)
   hosts: localhost
+  become: no
+  connection: local
   gather_facts: no
   vars_files:
   - vars.yml

+ 4 - 0
playbooks/libvirt/openshift-cluster/list.yml

@@ -1,6 +1,8 @@
 ---
 - name: Generate oo_list_hosts group
   hosts: localhost
+  become: no
+  connection: local
   gather_facts: no
   vars_files:
   - vars.yml
@@ -21,6 +23,8 @@
 
 - name: List Hosts
   hosts: localhost
+  become: no
+  connection: local
   gather_facts: no
   vars_files:
   - vars.yml

+ 2 - 0
playbooks/libvirt/openshift-cluster/service.yml

@@ -5,6 +5,8 @@
 
 - name: Call same systemctl command for openshift on all instance(s)
   hosts: localhost
+  become: no
+  connection: local
   gather_facts: no
   vars_files:
   - vars.yml

+ 4 - 0
playbooks/libvirt/openshift-cluster/terminate.yml

@@ -3,6 +3,8 @@
 
 - name: Terminate instance(s)
   hosts: localhost
+  become: no
+  connection: local
   gather_facts: no
   vars_files:
   - vars.yml
@@ -28,6 +30,8 @@
 
 - name: Terminate instance(s)
   hosts: localhost
+  become: no
+  connection: local
   gather_facts: no
   vars_files:
   - vars.yml

+ 2 - 0
playbooks/libvirt/openshift-cluster/update.yml

@@ -1,6 +1,8 @@
 ---
 - name: Populate oo_hosts_to_update group
   hosts: localhost
+  become: no
+  connection: local
   gather_facts: no
   vars_files:
   - vars.yml

+ 2 - 0
playbooks/openstack/openshift-cluster/config.yml

@@ -1,5 +1,7 @@
 - hosts: localhost
   gather_facts: no
+  become: no
+  connection: local
   vars_files:
   - vars.yml
   tasks:

+ 1 - 0
playbooks/openstack/openshift-cluster/launch.yml

@@ -1,6 +1,7 @@
 ---
 - name: Launch instance(s)
   hosts: localhost
+  become: no
   connection: local
   gather_facts: no
   vars_files:

+ 4 - 0
playbooks/openstack/openshift-cluster/list.yml

@@ -1,6 +1,8 @@
 ---
 - name: Generate oo_list_hosts group
   hosts: localhost
+  become: no
+  connection: local
   gather_facts: no
   vars_files:
   - vars.yml
@@ -22,6 +24,8 @@
 
 - name: List Hosts
   hosts: localhost
+  become: no
+  connection: local
   gather_facts: no
   vars_files:
   - vars.yml

+ 2 - 0
playbooks/openstack/openshift-cluster/terminate.yml

@@ -1,5 +1,6 @@
 - name: Terminate instance(s)
   hosts: localhost
+  become: no
   connection: local
   gather_facts: no
   vars_files:
@@ -25,6 +26,7 @@
             default('no', True) | lower in ['no', 'false']
 
 - hosts: localhost
+  become: no
   connection: local
   gather_facts: no
   vars_files:

+ 2 - 0
playbooks/openstack/openshift-cluster/update.yml

@@ -1,6 +1,8 @@
 ---
 - name: Populate oo_hosts_to_update group
   hosts: localhost
+  become: no
+  connection: local
   gather_facts: no
   vars_files:
   - vars.yml