Difference between revisions of "Ops535 ansible lab"

From CDOT Wiki
Jump to: navigation, search
(Key Concepts)
(Lab Procedure)
Line 83: Line 83:
  
 
= Lab Procedure =
 
= Lab Procedure =
 +
== Gather all the information available on remote machine ==
 +
[rchan@centos7 ansible]$ ansible 192.168.99.153 -m setup
 +
192.168.99.153 | SUCCESS => {
 +
    "ansible_facts": {
 +
        "ansible_all_ipv4_addresses": [
 +
            "192.168.122.99",
 +
            "192.168.99.153"
 +
        ],
 +
        "ansible_all_ipv6_addresses": [
 +
            "fe80::5054:ff:fe11:6767",
 +
            "fe80::5054:ff:fe8c:b67c"
 +
        ],
 +
        "ansible_architecture": "x86_64",
 +
        "ansible_bios_date": "04/01/2014",
 +
        "ansible_bios_version": "1.9.1-5.el7_3.2",
 +
        "ansible_cmdline": {
 +
            "BOOT_IMAGE": "/vmlinuz-3.10.0-862.14.4.el7.x86_64",
 +
            "LANG": "en_CA.UTF-8",
 +
            "console": "ttyS0",
 +
...
 +
        "ansible_userspace_bits": "64",
 +
        "ansible_virtualization_role": "guest",
 +
        "ansible_virtualization_type": "kvm",
 +
        "module_setup": true
 +
    },
 +
    "changed": false
 +
}
 +
</pre>
 +
[[OPS435_Ansible_setup|Click here for complete contents of the above]]
  
 
= Questions =
 
= Questions =
  
 
= Completing the Lab =
 
= Completing the Lab =

Revision as of 12:05, 22 November 2018

Overview

Ansible is an IT automation engine that automates cloud provisioning, configuration management, application deployment, intra-service orchestration, and many other IT needs. Ansible was designed for multi-tier deployments since day one, and models your IT infrastructure by describing how all of your systems inter-relate, rather than just managing one system at a time.

Ansible uses no agents and no additional custom security infrastructure, and it uses a very simple language called "YAML", to compose an Ansible Playbook which allow you to describe your automation jobs in a very simple way.

For more detail information about ansible, check out the ansible web site at www.ansible.com

Objectives

In this lab, we explore the main components of the Ansible configuration management system and its operating environment. we also develop a simple playbook to manage the configuration of a CentOS 7.x VM. For more detail information about ansible, check out the ansible web site at https://www.ansible.com

Reference

Key Concepts

  • YAML - a human-readable data serialization language & is commonly used for configuration files. To know more, your can check out the wikipedia page here
  • Control machine - (Management node)
  • Remote machine - (Controlled node)
  • Playbook -
  • Inventory file -
  • Hosts file -
  • Ad hoc commands
    • shell commands
    • ansible 192.168.99.153 -a 'date'
    • ansible 192.168.99.153 -a 'df'
    • ansible 192.168.99.153 -a 'iptables -L -n -v' -u root
    • copy module
    • ansible 192.169.99.153 -m copy -a "src=/ops435/ansible.txt dest=/tmp/ansible.txt"
    • Package management



Sample runs for some of the Ad hoc commands

[rchan@centos7 ansible]$ ansible 192.168.99.153 -m copy -a "src=/home/rchan/ops435/ansible/ansible.txt dest=/tmp/ansible.txt"
192.168.99.153 | SUCCESS => {
    "changed": true, 
    "checksum": "837affc90674fb92cdb0ebac6e49ad31a586b37e", 
    "dest": "/tmp/ansible.txt", 
    "gid": 1001, 
    "group": "rchan", 
    "md5sum": "78ae49d77d28d06173cf2194a3909732", 
    "mode": "0664", 
    "owner": "rchan", 
    "secontext": "unconfined_u:object_r:user_home_t:s0", 
    "size": 106, 
    "src": "/home/rchan/.ansible/tmp/ansible-tmp-1542902119.15-117618539513309/source", 
    "state": "file", 
    "uid": 1001
}
[rchan@centos7 ansible]$ ansible 192.168.99.153 -m yum -a "name=epel-release state=present"
192.168.99.153 | SUCCESS => {
    "changed": false, 
    "msg": "", 
    "rc": 0, 
    "results": [
        "epel-release-7-11.noarch providing epel-release is already installed"
    ]
}
[rchan@centos7 ansible]$ ansible 192.168.99.153 -m yum -a "name=epel-release state=present" -u root
192.168.99.153 | SUCCESS => {
    "changed": false, 
    "msg": "", 
    "rc": 0, 
    "results": [
        "epel-release-7-11.noarch providing epel-release is already installed"
    ]
}
[rchan@centos7 ansible]$ ansible 192.168.99.153 -m yum -a "name=epel-release state=latest" -u root
192.168.99.153 | SUCCESS => {
    "changed": false, 
    "msg": "", 
    "rc": 0, 
    "results": [
        "All packages providing epel-release are up to date", 
        ""
    ]
}

Pre-Lab arrangement

Lab Procedure

Gather all the information available on remote machine

[rchan@centos7 ansible]$ ansible 192.168.99.153 -m setup 192.168.99.153 | SUCCESS => {

   "ansible_facts": {
       "ansible_all_ipv4_addresses": [
           "192.168.122.99", 
           "192.168.99.153"
       ], 
       "ansible_all_ipv6_addresses": [
           "fe80::5054:ff:fe11:6767", 
           "fe80::5054:ff:fe8c:b67c"
       ], 
       "ansible_architecture": "x86_64", 
       "ansible_bios_date": "04/01/2014", 
       "ansible_bios_version": "1.9.1-5.el7_3.2", 
       "ansible_cmdline": {
           "BOOT_IMAGE": "/vmlinuz-3.10.0-862.14.4.el7.x86_64", 
           "LANG": "en_CA.UTF-8", 
           "console": "ttyS0", 

...

       "ansible_userspace_bits": "64", 
       "ansible_virtualization_role": "guest", 
       "ansible_virtualization_type": "kvm", 
       "module_setup": true
   }, 
   "changed": false

} </pre> Click here for complete contents of the above

Questions

Completing the Lab