OPS435 Online Lab9

From CDOT Wiki
Jump to: navigation, search

Objective

  1. Confirm and review the Ansible package installed on matrix.senecacollege.ca
  2. Explore and run Ansible's ad hoc commands
  3. Explore and study a few Ansible's modules
  4. Explore, create, and run a few Ansible playbooks

Overview

Ansible is an agentless IT automation engine for automating cloud provisioning, configuration management, application deployment, intra-service orchestration, and many other IT system administration tasks.
Ansible uses no additional custom security infrastructure, and it uses a very simple human readable language called 'YAML', to compose an Ansible Playbook which allows you to describe the tasks you want to automate.

Reference

System requirements

  • You must have a valid Seneca user account on matrix.senecacollege.ca and an VM assigned to you in myvmlab.senecacollege.ca:
    • control machine (matrix.senecacollege.ca)- run ansible to configure your assigned VM in myvmlab.senecacollege.ca
    • managed machine(s) (your vm in myvmlab.senecacollege) - to be managed by the control machine
  • You should be able to ssh from matrix.senecacollege.ca as a regular user to your managed machine without supplying a login password.
  • Your account on your managed machine is a sudoer and can run sudo with/without password.
  • Has Python 2.7+ installed on your managed machine(s).


Investigation I: The Ansible Package

In this investigation, we explore the main components of the Ansible configuration management system and its operating environment. we also study a simple playbook for managing the configuration of a CentOS 7.x VM.
You need at least two Linux systems for this lab: your account on matrix.senecacollege.ca to be used as the control machine and your assigned VM in myvmlab.senecacollege.ca as the managed machines. The Ansible package is already installed on matrix for you.

Key Concepts when using Ansible

  • YAML - a human-readable data serialization language use by Ansible's playbooks. To know more, your can check out the wikipedia page here or a simple introduction here
  • Control machine - the host on which you use Ansible to execute tasks on the managed machines
  • Managed machine - a host that is configured by the control machine
  • Hosts file - contains information about machines to be managed - click here for sample hosts file
  • Idempotency - is an operation that, if applied twice to any value, gives the same result as if it were applied once.
  • Ad hoc commands - a simple one-off task:
    • shell commands
      • ansible remote_machine_id [-i inventory] [--private-key id_rsa] [-u remote_user] -a 'date'
  • Ansible modules - code that performs a particular task such as copy a file, installing a package, etc:
    • copy module
      • ansible remote_machine_id -m copy -a "src=/ops435/ansible.txt dest=/tmp/ansible.txt"
    • Package management
      • ansible remote_machine_id -m yum -a "name=epel-release state=latest"
  • Playbooks - contains one or multiple plays, each play defines a set of repeatable tasks on one or more managed machines. Playbooks are written in YAML. Every play in the playbook is created with environment-specific parameters for the target machines:
    • ansible-playbook remote_machine_id [-i inventory] setup_webserver.yaml
    • ansible-playbook remote_machine_id [-i inventory] firstrun.yaml

Part 1: The Ansible package installed on matrix

You only need to have the "ansible" package on your control VM (i.e. matrix).
  • Login to matrix with your Seneca account and change to the directory ~/ops435/lab9
  • Issue the following command to check the version of the "ansible" package:
     
    rpm -q ansible
To confirm that you have access to the Ansible package, try the following command:
[raymond.chan@mtrx-node02pd lab9]$ ansible --help
usage: ansible [-h] [--version] [-v] [-b] [--become-method BECOME_METHOD]
               [--become-user BECOME_USER] [-K] [-i INVENTORY] [--list-hosts]
               [-l SUBSET] [-P POLL_INTERVAL] [-B SECONDS] [-o] [-t TREE] [-k]
               [--private-key PRIVATE_KEY_FILE] [-u REMOTE_USER]
               [-c CONNECTION] [-T TIMEOUT]
               [--ssh-common-args SSH_COMMON_ARGS]
               [--sftp-extra-args SFTP_EXTRA_ARGS]
               [--scp-extra-args SCP_EXTRA_ARGS]
               [--ssh-extra-args SSH_EXTRA_ARGS] [-C] [--syntax-check] [-D]
               [-e EXTRA_VARS] [--vault-id VAULT_IDS]
               [--ask-vault-pass | --vault-password-file VAULT_PASSWORD_FILES]
               [-f FORKS] [-M MODULE_PATH] [--playbook-dir BASEDIR]
               [-a MODULE_ARGS] [-m MODULE_NAME]
               pattern
...
Take a look of all the available command line options for the "ansible" command. There are a lots of options when running Ansible. Let's move on to try a few simple ones.

Part 2: Sample runs for some of the Ad hoc commands

The following commands are based on the following entries in the ansible inventory file called "hosts" in the current working directory:

...
[ops435b]
jkwok   ansible_host=myvmlab.senecacollege.ca ansible_port=7850
cdee    ansible_host=myvmlab.senecacollege.ca ansible_port=7874
...
[raymond.chan@mtrx-node02pd lab9]$ ansible jkwok -i hosts --private-key id_rsa -u instructor -m copy -a "src=/home/raymond.chan/ops435/lab9/hosts dest=/tmp/ansible_hosts"
jkwok | CHANGED => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/bin/python"
    }, 
    "changed": true, 
    "checksum": "bc4ffa4127e3af3228e61f0ddc4fca87c5e548a4", 
    "dest": "/tmp/ansible_hosts", 
    "gid": 1003, 
    "group": "instructor", 
    "md5sum": "17e94f6ee9ce0920ebf835bd4f6250a7", 
    "mode": "0664", 
    "owner": "instructor", 
    "size": 423, 
    "src": "/home/instructor/.ansible/tmp/ansible-tmp-1616732233.49-236519-35150082693243/source", 
    "state": "file", 
    "uid": 1003
}

jkwok is the remote machine ID.
hosts is the name of the ansible inventory file in the current working directory, you may also specify the inventory file with full path name, e.g. /home/raymond.chan/ops435/lab9/hosts.
--private-key id_ras is the private key for ssh key-based authentication for connecting to the remote machine.
-u is for specifying the user account to be used to login to the remote machine.
-m copy is to tell ansible to use the "copy" module.
after '-a' is the arguments to the copy module, which specify the source file and the destination for the copy action.
If you got the same "SUCCESS" message, login to the remote machine and check the directory "/tmp" for the file ansible_hosts.

Part 3: Sample runs for using some Ansible's modules

You can get a complete list of all the ansible modules installed on you system with the following command:
    ansible-doc --list_files
"yum" is a stable ansible module. You can get the detail information about any ansible module with the ansible-doc, try the following commands to see the documentation and examples for using the copy and yum modules:
    ansible-doc copy

    ansible-doc yum
The following command demonstrates how to install the "epel-release" package with the "yum" module with different module arguments and under different remote user (your result may be differ from what is show below):
[raymond.chan@mtrx-node02pd lab9]$ ansible jkwok -i hosts --private-key id_rsa -u instructor -m yum -a "name=epel-release state=present"
jkwok | FAILED! => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/bin/python"
    }, 
    "changed": false, 
    "changes": {
        "installed": [
            "epel-release"
        ]
    }, 
    "msg": "You need to be root to perform this command.\n", 
    "rc": 1, 
    "results": [
        "Loaded plugins: fastestmirror\n"
    ]
}
Add the '-b' option to tell ansible to invoke "sudo" when running the yum command on the remote machine:
[raymond.chan@mtrx-node02pd lab9]$ ansible jkwok -i hosts --private-key id_rsa -u instructor -b -m yum -a "name=epel-release state=present"
jkwok | CHANGED => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/bin/python"
    }, 
    "changed": true, 
    "changes": {
        "installed": [
            "epel-release"
        ]
    }, 
    "msg": "", 
    "rc": 0, 
    "results": [
        "Loaded plugins: fastestmirror\nLoading mirror speeds from cached hostfile\n * base: mirror.netflash.net\n * extras: mirror.netflash.net\n * updates: mirror.calgah.com\nResolving Dependencies\n--> Running transaction check\n---> Package epel-release.noarch 0:7-11 will be installed\n--> Finished Dependency Resolution\n\nDependencies Resolved\n\n================================================================================\n Package                Arch             Version         Repository        Size\n================================================================================\nInstalling:\n epel-release           noarch           7-11            extras            15 k\n\nTransaction Summary\n================================================================================\nInstall  1 Package\n\nTotal download size: 15 k\nInstalled size: 24 k\nDownloading packages:\nRunning transaction check\nRunning transaction test\nTransaction test succeeded\nRunning transaction\n  Installing : epel-release-7-11.noarch                                     1/1 \n  Verifying  : epel-release-7-11.noarch                                     1/1 \n\nInstalled:\n  epel-release.noarch 0:7-11                                                    \n\nComplete!\n"
    ]
}
If you run the same commond the 2nd time:
[raymond.chan@mtrx-node02pd lab9]$ ansible jkwok -i hosts --private-key id_rsa -u instructor -b -m yum -a "name=epel-release state=present"
jkwok | SUCCESS => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/bin/python"
    }, 
    "changed": false, 
    "msg": "", 
    "rc": 0, 
    "results": [
        "epel-release-7-11.noarch providing epel-release is already installed"
    ]
}
Now run the similar command but with "state=latest":
[raymond.chan@mtrx-node02pd lab9]$ ansible jkwok -i hosts --private-key id_rsa -u instructor -b -m yum -a "name=epel-release state=latest"
jkwok | SUCCESS => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/bin/python"
    }, 
    "changed": false, 
    "changes": {
        "installed": [], 
        "updated": []
    }, 
    "msg": "", 
    "rc": 0, 
    "results": [
        "All packages providing epel-release are up to date", 
        ""
    ]
}
Depending on the status of the packages installed on your VM, the output may not exactly the same as shown above. Please read and try to understanding the meaning of the text return by ansible.

Part 4: Gather software and hardware information available on remote machine

One of the core ansible module is called "setup", it is automatically called by ansible playbook to gather useful "facts" about remote hosts that can be used in ansible playbooks. It can also be executed directly by the ansible command (/usr/bin/ansible) to check out what "facts" are available on a remote host.
[raymond.chan@mtrx-node02pd lab9]$ ansible jkwok -i hosts --private-key id_rsa -u instructor -m setup
jkwok | SUCCESS => {
    "ansible_facts": {
        "ansible_all_ipv4_addresses": [
            "10.102.114.140"
        ], 
        "ansible_all_ipv6_addresses": [
            "fe80::21d:d8ff:feb7:20cc"
        ], 
        "ansible_apparmor": {
            "status": "disabled"
        }, 
        "ansible_architecture": "x86_64", 
        "ansible_bios_date": "11/26/2012", 

...

        "ansible_userspace_bits": "64", 
        "ansible_virtualization_role": "guest", 
        "ansible_virtualization_type": "VirtualPC", 
        "discovered_interpreter_python": "/usr/bin/python", 
        "gather_subset": [
            "all"
        ], 
        "module_setup": true
    }, 
    "changed": false
}

Click here for complete sample contents of the above

Investigation II: Ansible Playbook

What is a playbook?

* Playbook is one of the core features of Ansible.
* Playbook tells Ansible what to execute by which user on the remote machine.
* Playbook is like a to-do list for Ansible
* Playbook is written "YAML".
* Playbook links a task to an ansible module and provide needed arguments to the module which requires them.

Part 1: A playbook to update the /etc/motd file

Name: motd-play.yml

[raymond.chan@mtrx-node02pd lab9]$ cat motd-play.yml 
---
- name: update motd file
  hosts: jkwok
  user: instructor
  become: yes
  vars:
    apache_version: 2.6
    motd_warning: 'WARNING: user by ICT faculty/students only.'
    testserver: yes
  tasks:
    - name: setup a MOTD
      copy:
        dest: /etc/motd
        content: "{{ motd_warning }}"

Sample Run:

[raymond.chan@mtrx-node02pd lab9]$ ansible-playbook -i hosts --private-key id_rsa -b motd-play.yml 

PLAY [update motd file] *******************************************************************

TASK [Gathering Facts] ********************************************************************
ok: [jkwok]

TASK [setup a MOTD] ***********************************************************************
changed: [jkwok]

PLAY RECAP ********************************************************************************
jkwok   ok=2    changed=1    unreachable=0    failed=0    skipped=0    rescued=0    ignored=0   

Try to run it the 2nd time and pay attention to the result. What conclusion can you draw?

Part 2: A playbook to install and start Apache Server

Name: httpd-play.yml

---
- hosts: 192.168.99.153
  user: root
  vars:
    apache_version: 2.6
    motd_warning: 'WARNING: use by ICT faculty/students only.'
    testserver: yes
  tasks:
    - name: install apache
      action: yum name=httpd state=installed
    
    - name: restart apache
      service: 
        name: httpd
        state: restarted

Sample Run:

[rchan@centos7 playbooks]$ ansible-playbook httpd-play.yml

PLAY [192.168.99.153] **********************************************************

TASK [Gathering Facts] *********************************************************
ok: [192.168.99.153]

TASK [install apache] **********************************************************
changed: [192.168.99.153]

TASK [restart apache] **********************************************************
changed: [192.168.99.153]

PLAY RECAP *********************************************************************
192.168.99.153             : ok=3    changed=2    unreachable=0    failed=0   

Investigation III: Using Playbook to configure an OPS435 Linux VM machine

Assume you have just installed the latest version of CentOS 7.x on a VM with GNOME Desktop. You need to configure it so that you can use it for doing the Labs for OPS435.
Study the documentation and examples of following ansible modules:
  • copy
  • file
  • hostname
  • template
  • user
  • yum

Create an ansible playbook using the appropriate modules to perform the following configuration tasks on your assigned VM:

  • update all the packages installed on the VM
  • install extra packages repository for enterprise Linux
  • install python3 if it is not already installed
  • set the host name to your Seneca user name
  • install the git package
  • create a new user with your Seneca_id with sudo access
  • configure the new user account so that you can ssh to it without password
  • setup a directory structs for completing and organizing labs as shown below:
          /home/[seneca_id]/ops435/lab0
          /home/[seneca_id]/ops435/lab1
          /home/[seneca_id]/ops435/lab2
          /home/[seneca_id]/ops435/lab3
          /home/[seneca_id]/ops435/lab4
          /home/[seneca_id]/ops435/lab5
          /home/[seneca_id]/ops435/lab6
          /home/[seneca_id]/ops435/lab7
          /home/[seneca_id]/ops435/lab8
          /home/[seneca_id]/ops435/lab9
  • create a playbook named "config_ops435.yml" to perform the tasks mentioned above.
  • test and capture its output for a successful run of your playbook to a file named "lab9_[seneca_id].txt"

Lab 9 Sign-off (Show Instructor)

For the Winter 2021 Semeter, this lab is optional and if you complete and submit this lab by April 7, 2021, you could get a maximum bonus of 2%. Please confirm this with your instructor.

Have the following items ready to show your instructor:

* The Ansible playbook called "config_ops435.yaml" for configuring the VM mentioned in Lab 1.
* The result of running the playbook "config_ops435.yaml". Save the result in a file called "lab9_[seneca_id].txt"

Upload the following files to blackboard

* config_ops435.yaml
* lab9_[seneca_id].txt