Ansible Operations: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 40: Line 40:
         msg: "Reset confirmation failed"
         msg: "Reset confirmation failed"
       when: reset_confirmation != "yes"
       when: reset_confirmation != "yes"
=SSH Configuration=
... --ask-pass --ssh-extra-args='-o "PubkeyAuthentication=no"' ...

Revision as of 04:38, 12 December 2019

Internal

Ping all Hosts from a Group

This will also list the hosts from that group.

ansible all -m ping

Execute a Shell Command on all Hosts in Some Groups

ansible masters,nodes -m shell -a "systemctl status docker | grep Active"

Copy Files

ansible <my-servers> -m copy -a "src=/root/ipa-ca.crt dest=/etc/origin/master"

ansible-playbook

ansible-playbook

Provide In-Line Prompt Confirmation

ansible-playbook ... -e reset_confirmation=yes

where "reset_confirmation" is defined in playbook:

- hosts: etcd:k8s-cluster:calico-rr

  pre_tasks:
    - name: check confirmation
      fail:
        msg: "Reset confirmation failed"
      when: reset_confirmation != "yes"

SSH Configuration

... --ask-pass --ssh-extra-args='-o "PubkeyAuthentication=no"' ...