learnxinyminutes-docs/ansible.html.markdown

565 lines
18 KiB
Markdown
Raw Normal View History

2017-09-27 19:34:38 +03:00
---
2017-06-09 15:05:58 +03:00
category: tool
2017-06-09 15:07:58 +03:00
tool: ansible
2017-06-09 15:05:58 +03:00
contributors:
- ["Jakub Muszynski" , "http://github.com/sirkubax"]
filename: LearnAnsible.txt
---
2017-09-22 23:25:47 +03:00
## Ansible: the easiest orchestration tool
2017-09-22 23:21:42 +03:00
```yaml
---
2017-09-27 18:00:23 +03:00
"{{ Why Ansible and detailed Intro }}" written in the second part of document
2017-06-09 15:05:58 +03:00
2017-09-22 23:21:42 +03:00
```
2017-08-15 22:55:44 +03:00
2017-09-22 23:21:42 +03:00
## Installation
```bash
# Universal way
$ pip install ansible
2017-06-09 15:05:58 +03:00
2017-09-22 23:21:42 +03:00
# Debian, Ubuntu
$ apt-get install ansible
2017-09-07 00:40:18 +03:00
2017-09-22 23:21:42 +03:00
```
* Appendix A - How do I install ansible
2017-09-22 23:27:32 +03:00
* [Additional Reading.](http://docs.ansible.com/ansible/latest/intro_installation.html)
2017-09-22 23:21:42 +03:00
2017-09-22 23:48:55 +03:00
### Your first ansible command (shell execution)
2017-09-22 23:21:42 +03:00
```bash
# This command ping the localhost (defined in default inventory /etc/ansible/hosts)
$ ansible -m ping localhost
2017-09-22 23:49:43 +03:00
# you should see this output
2017-09-22 23:27:32 +03:00
localhost | SUCCESS => {
2017-09-22 23:21:42 +03:00
"changed": false,
"ping": "pong"
2017-09-22 23:27:32 +03:00
}
2017-09-22 23:21:42 +03:00
```
2017-09-22 23:48:55 +03:00
### Shell Commands
2017-09-07 00:40:18 +03:00
There are few commands you should know about
2017-09-22 23:29:12 +03:00
* `ansible` (to run modules in CLI)
* `ansible-playbook` (to run playbooks)
* `ansible-vault` (to manage secrets)
* `ansible-galaxy` (to install roles from github/galaxy)
2017-09-22 23:30:27 +03:00
* and other!
2017-09-22 23:48:55 +03:00
### Module
2017-09-28 01:02:50 +03:00
_program (usally python) that execute, do some work and return proper JSON output_
2017-09-22 23:43:50 +03:00
This *program* perform specialized task/action (like manage instances in the cloud, execute shell command).
2017-09-22 23:42:43 +03:00
2017-09-22 23:41:27 +03:00
The simplest module is called `ping` - it just returns a JSON with `pong` message.
Example of modules:
* Module: `ping` - the simplest module that is usefull to verify host connectivity
* Module: `shell` - a module that executes shell command on a specified host(s).
2017-09-22 23:48:55 +03:00
Example of execution - `ping`, `shell`
2017-06-09 15:05:58 +03:00
2017-09-22 23:21:42 +03:00
```bash
2017-09-27 18:00:23 +03:00
$ ansible -m ping all
2017-09-22 23:21:42 +03:00
$ ansible -m shell -a 'date; whoami' localhost #hostname_or_a_group_name
```
2017-09-23 12:43:25 +03:00
* Module: `command` - executes a single command that will not be processed through the shell, so variables like $HOME or operands like `|` `;` will not work
2017-09-27 18:00:23 +03:00
#JM
2017-09-22 23:29:12 +03:00
2017-09-22 23:21:42 +03:00
```bash
$ ansible -m command -a 'date; whoami' # FAILURE
2017-09-27 18:00:23 +03:00
$ ansible -m command -a 'date' all
$ ansible -m command -a 'whoami' all
2017-09-22 23:21:42 +03:00
```
2017-09-22 23:41:27 +03:00
* Module: `file` - performs file operations (stat, link, dir, ...)
* Module: `raw` - executes a low-down and dirty SSH command, not going through the module subsystem (usefull to install python2.7)
2017-09-22 23:21:42 +03:00
2017-09-27 17:47:10 +03:00
### Task
2017-09-23 12:54:26 +03:00
Execution of a single Ansible **module** is called a **task**
2017-08-15 22:44:20 +03:00
2017-09-23 12:56:13 +03:00
The simplest module is called `ping` as you could see above
2017-09-23 12:56:50 +03:00
2017-09-27 17:47:10 +03:00
Another example of the module that allow you to execute command remotly on multiple resources is called `shell`. See above how you were using them already.
2017-08-15 22:44:20 +03:00
2017-09-27 17:47:10 +03:00
### Playbook
2017-09-27 18:06:17 +03:00
**Execution plan** written in a form of script file(s) is called **playbook**.
2017-09-22 23:21:42 +03:00
Playbook consist of multiple elements
* a list (or group) of hosts that 'the play' is executed against
* `task(s)` or `role(s)` that are going to be executed
* multiple optional settings (like default variables, and way more)
2017-09-27 18:06:17 +03:00
Playbook script language is YAML.
2017-09-07 00:20:52 +03:00
2017-09-22 23:21:42 +03:00
You can think that playbook is very advanced CLI script that you are executing.
2017-08-15 22:44:20 +03:00
2017-09-27 17:47:10 +03:00
#### Example of the playbook:
2017-09-27 18:06:17 +03:00
This example-playbook would execute (on all hosts defined in the inventory) two tasks:
2017-09-27 18:00:23 +03:00
* `ping` that would return message *pong*
2017-09-22 23:21:42 +03:00
* `shell` that execute three commands and return the output to our terminal
2017-08-15 22:44:20 +03:00
2017-09-07 00:20:52 +03:00
```yml
2017-10-21 00:45:03 +03:00
- hosts: all
tasks:
- name: "ping all"
ping:
- name: "execute a shell command"
shell: "date; whoami; df -h;"
2017-09-07 00:20:52 +03:00
```
2017-09-27 18:06:17 +03:00
You can run the playbook with the command:
2017-09-07 00:20:52 +03:00
```bash
$ ansible-playbook path/name_of_the_playbook.yml
2017-08-15 22:44:20 +03:00
```
2017-09-27 18:52:48 +03:00
### More on ansible concept
2017-06-09 15:05:58 +03:00
2017-09-28 01:02:01 +03:00
### Inventory
Inventory is a set of an objects or hosts, against which we are executing our playbooks or single tasks via shell commands
For this few minutes, lets asume that we are using default ansible inventory (which in Debian based system is placed in /etc/ansible/hosts)
`/etc/ansible/hosts`
```
localhost
[some_group]
hostA.mydomain.com
hostB.localdomain
[a_group_of_a_groups:children]
some_group
some_other_group
```
* [Additional Reading.](http://docs.ansible.com/ansible/latest/intro_inventory.html)
2017-09-28 01:05:12 +03:00
### ansible-roles (a 'template-playbooks' with right structure)
2017-06-09 15:05:58 +03:00
2017-09-27 19:11:20 +03:00
You already know the tasks (modules) that can be run via CLI. You also know the playbooks - the execution plans of multiple tasks (with variables and logic).
2017-08-15 22:46:45 +03:00
2017-09-27 19:11:20 +03:00
A concept called `role` was introduced for parts of the code (playbooks) that should be reusable.
2017-08-15 22:55:44 +03:00
2017-09-27 18:52:48 +03:00
**Role** is a structured way to manage your set of tasks, variables, handlers, default settings, and way more (meta, files, templates).
Role allows to reuse the same parts of code in multiple plybooks (you can parametrize the role 'further' during it's execution).
2017-08-15 22:55:44 +03:00
It is a great way to introduce `object oriented` management for your applications.
2017-09-27 18:52:48 +03:00
Role can be included in your playbook (executed via your playbook).
2017-08-15 22:55:44 +03:00
2017-09-07 00:20:52 +03:00
```yml
2017-10-21 00:45:03 +03:00
- hosts: all
tasks:
- name: "ping all"
ping:
- name: "execute a shell command"
shell: "date; whoami; df -h;"
roles:
- some_role
- { role: another_role, some_variable: 'learnxiny', tags: ['my_tag'] }
pre_tasks:
- name: some pre-task
shell: echo 'this task is the last, but would be executed before roles, and before tasks'
2017-09-07 00:20:52 +03:00
```
2017-10-21 00:32:41 +03:00
#### For remaining examples we would use additional repository
2017-10-21 00:29:13 +03:00
This example install ansible in `virtualenv` so it is independend from a system. You need to init it with `source environment.sh` command
2017-09-27 18:52:48 +03:00
```bash
$ git colone git@github.com:sirkubax/ansible-for-learnXinYminutes.git
2017-10-21 00:29:13 +03:00
user@host:~/$ cd ansible-for-learnXinYminutes
user@host:~/ansible-for-learnXinYminutes$ source environment.sh
2017-10-21 00:24:45 +03:00
$
2017-10-21 00:26:03 +03:00
$ # First lets execute the simple_playbook.yml
2017-10-27 15:42:44 +03:00
(venv) user@host:~/ansible-for-learnXinYminutes$ ansible-playbook playbooks/simple_playbook.yml
2017-10-20 23:31:58 +03:00
2017-10-21 00:24:45 +03:00
```
2017-10-20 23:31:58 +03:00
2017-10-21 00:32:41 +03:00
Run the above playbook with roles example
2017-10-21 00:24:45 +03:00
```bash
$ source environment.sh
2017-10-21 00:26:03 +03:00
$ # Now we would run the above playbook with roles
2017-10-27 15:42:44 +03:00
(venv) user@host:~/ansible-for-learnXinYminutes$ ansible-playbook playbooks/simple_role.yml
2017-09-27 18:52:48 +03:00
```
2017-09-27 19:11:20 +03:00
#### Role directory structure:
2017-09-07 00:20:52 +03:00
```
roles/
some_role/
2017-09-27 19:11:20 +03:00
defaults/ # contains default variables
files/ # for static files
templates/ # for jinja templates
tasks/ # tasks
handlers/ # handlers
vars/ # more variables (higher priority)
meta/ # meta - package (role) info
2017-09-07 00:20:52 +03:00
```
#### Role Handlers
2017-09-27 19:11:20 +03:00
Handlers are a tasks that can be triggered (notified) during execution of a playbook, but they itself execute at the very end of a playbook.
It is a best way to restart a service, check if application port is active (successfull deployment criteria), etc.
2017-08-15 22:46:45 +03:00
2017-10-27 15:42:44 +03:00
Please get familiar how you can use role in simple_apache_role example
```
playbooks/roles/simple_apache_role/
├── tasks
│   └── main.yml
└── templates
└── main.yml
```
2017-06-09 15:05:58 +03:00
### ansible - variables
2017-09-27 19:11:20 +03:00
Ansible is flexible - it has 21 levels of variable precedence
[read more]
For now you might like to know, that CLI variables has the top priority.
You should also know, that a nice way to pool some data is a **lookup**
2017-09-28 01:05:12 +03:00
### Lookups
2017-09-27 19:11:20 +03:00
* pipe
* file
* stream
* etcd
2017-10-27 15:42:44 +03:00
```bash
# read playbooks/lookup.yml
# run
(venv) user@host:~/ansible-for-learnXinYminutes$ ansible-playbook playbooks/lookup.yml
```
2017-09-27 19:11:20 +03:00
You can use them in CLI too
2017-09-23 12:43:25 +03:00
```yaml
2017-10-21 01:01:29 +03:00
ansible -m shell -a 'echo "{{ my_variable }}"' -e 'my_variable="{{ lookup("pipe", "date") }}"' localhost
ansible -m shell -a 'echo "{{ my_variable }}"' -e 'my_variable="{{ lookup("pipe", "hostname") }}"' all
2017-09-27 19:11:20 +03:00
2017-10-27 15:42:44 +03:00
# Or use in playbook
(venv) user@host:~/ansible-for-learnXinYminutes$ ansible-playbook playbooks/lookup.yml
```
2017-10-27 15:55:16 +03:00
### Register and Conditional
#### Register
2017-10-27 15:42:44 +03:00
Another way to dynamicaly generate the variable content is a `register` command
`Register` is also useful to store an output of a task, and use it's value as a logic
for execution further tasks.
```
(venv) user@host:~/ansible-for-learnXinYminutes$ ansible-playbook playbooks/register_and_when.yml
2017-09-23 12:43:25 +03:00
```
2017-06-09 15:05:58 +03:00
2017-10-27 15:55:16 +03:00
```yaml
#file content
---
- hosts: localhost
tasks:
- name: check the system capacity
shell: df -h /
register: root_size
- name: debug root_size
debug:
msg: "{{ root_size }}"
- name: debug root_size return code
debug:
msg: "{{ root_size.rc }}"
2017-10-27 15:57:54 +03:00
# when: example
2017-10-27 15:55:16 +03:00
- name: Print this message when return code of 'check the system capacity' was ok
debug:
msg: "{{ root_size.rc }}"
when: root_size.rc == 0
```
#### Conditionals
2017-10-27 15:56:38 +03:00
You can define complex logic with Ansible and Jinja functions. Most common is usage of `when:`, with some variable (often dynamicly generated in previous playbook steps with `register` or `lookup`)
2017-10-27 15:55:16 +03:00
### ansible - tags, limmit
You should know about a way to increase efficiency by this simple functionality
#### TAGS
You can tag a task, role (and its tasks), include, etc...
You can then limit an execution by using
--tags tagA, other_tag,...
There are special tags: always
--skip-tags can be used to exclude a block of code
#### LIMMIT
You can limmit an execution of your tasks to defined hosts
--limit my_hostname
--limit groupname
--limit some_prefix*
--limit hostname:group #JM
2017-09-28 01:05:12 +03:00
### Templates
2017-09-27 19:11:20 +03:00
Template is a powerfull way to deliver some (partially) dynamic content. Ansible uses **Jinja2** langueage to describe the template.
```jinja2
Some static content
{{ a_variable }}
{% for item in loop_items %}
this line item is {{ item }}
{% endfor %}
```
2017-09-27 19:34:38 +03:00
Jinja may have some limitations, but it is a powerfull tool that you might like.
2017-09-22 23:21:42 +03:00
2017-09-28 01:05:12 +03:00
### Jinja2 CLI
2017-09-27 19:34:38 +03:00
You can use the jinja in the CLI too
```bash
ansible -m shell -a 'echo {{ my_variable }}` -e 'my_variable=something, playbook_parameter=twentytwo" localhost
```
2017-06-09 15:05:58 +03:00
2017-09-28 00:57:45 +03:00
### Jinja2 filters
Junja is powerfull. It has built-in many usefull functions.
```jinja
# get first item of the list
{{ some_list | first() }}
# if variable is undefined - use default value
{{ some_variable | default('default_value') }}
```
2017-09-27 19:34:38 +03:00
2017-09-28 01:05:12 +03:00
### ansible-vault
2017-09-27 19:34:38 +03:00
To maintain **ifrastructure as a code** you need to store secrets.
Ansible provides a way to encrypt the poufne files so you can store it in the repository, yet the files are decrypted in-fly during ansible execution.
The best way to use the **ansible-vault** is to store the secret in some secure location, and configure ansible to use during runtime.
```bash
$ echo some_very_very_long_secret > ~/.ssh/secure_located_file
$ vi ansible.cfg
ansible_vault_password_file = ~/.ssh/secure_located_file
#or to use env
export ANSIBLE_VAULT_PASSWORD_FILE=~/.ssh/secure_located_file
$ ansible-playbook playbooks/vault_example.yml
# decrypt the file
$ ansible-vault encrypt path/somefile
# view the file
$ ansible-vault view path/somefile
# check the file content:
$ cat path/somefile
# decrypt the file
$ ansible-vault decrypt path/somefile
```
2017-09-28 01:05:12 +03:00
### dynamic inventory
2017-09-27 19:34:38 +03:00
You might like to know, that you can build your inventory dynamically.
(For Ansible) inventory is just a JSON with proper structure - if you can deliver that to ansible - anything is possible.
You do not need to invent the wheel - there are plenty ready to use inventory script for most popular Cloud provicers and a lot of in-house popular usecaseses.
```bash
$ etc/inv/ec2.py --refresh
$ ansible -m ping all -i etc/inv/ec2.py
```
2017-09-28 01:07:12 +03:00
Read also about `dynamic inventory` below
2017-09-28 01:05:12 +03:00
### ansible profiling - callback
2017-09-28 01:02:01 +03:00
It is ok that your playbook executes some time. Sometimes you may like to speed things up
2017-09-27 19:34:38 +03:00
2017-09-28 00:57:45 +03:00
Since ansible 2.x there is bouilt-in callback for task execution profiling
2017-06-09 15:05:58 +03:00
```
2017-09-28 00:57:45 +03:00
vi ansible.cfg
#set this to:
callback_whitelist = profile_tasks
2017-06-09 15:05:58 +03:00
```
2017-09-28 01:05:12 +03:00
### facts-cache and ansible-cmdb
2017-09-28 00:57:45 +03:00
You can pool some infrmations of you environment from another hosts.
If the informations does not change - you may consider using a facts_cache to speed things up.
2017-06-09 15:05:58 +03:00
```
2017-09-28 00:57:45 +03:00
vi ansible.cfg
2017-06-09 15:05:58 +03:00
2017-09-28 00:57:45 +03:00
# if set to a persistent type (not 'memory', for example 'redis') fact values
# from previous runs in Ansible will be stored. This may be useful when
# wanting to use, for example, IP information from one group of servers
# without having to talk to them in the same playbook run to get their
# current IP information.
fact_caching = jsonfile
fact_caching_connection = ~/facts_cache
fact_caching_timeout = 86400
2017-06-09 15:05:58 +03:00
```
2017-09-28 00:57:45 +03:00
I like to use `jsonfile` as my backend. It allows to use another project
`ansible-cmdb` [github] that generates a HTML page of your inventory resources. A nice 'free' addition!
2017-06-09 15:05:58 +03:00
2017-09-28 01:05:12 +03:00
### debugging ansible
2017-09-28 00:57:45 +03:00
When your job fails - it is good to be effective with debugging.
2017-06-09 15:05:58 +03:00
2017-09-28 00:57:45 +03:00
1. Increase verbosiy by using multiple -v **[ -vvvvv]**
2. If variable is undefined
3. If variable (dictionary or a list) is undefined
4. Jinja template debug
2017-06-09 15:05:58 +03:00
2017-09-28 01:05:12 +03:00
### Infrastructure as a code - what about Ansible
2017-09-28 00:57:45 +03:00
You already know, that ansible-vault allow you to store your poufne data along with your code (in repository). You can go further - and define your ansible installation and configuration as-a-code.
See `environment.sh` to learn how to install the ansible itself inside a `virtualenv` that is not attached to your operating system (can be changed by non-privilages user), and as additiinal benefit - upgrading version of ansible is as easy as installing new version in new virtualenv. You can have multiple versions of Ansible present in the same time. This is very helpfull!
2017-06-09 15:05:58 +03:00
```bash
2017-09-28 00:57:45 +03:00
# recreate ansible 2.x venv
$ rm -rf venv2
$ source environment2.sh
# execute playbook
(venv2)$ ansible-playbook playbooks/ansible1.9_playbook.yml # would fail - deprecated syntax
2017-06-09 15:05:58 +03:00
2017-09-28 00:57:45 +03:00
# now lets install ansible 1.9.x next to ansible 2.x
(venv2)$ deactivate
$ source environment.1.9.sh
# execute playbook
(venv1.9)$ ansible-playbook playbooks/ansible1.9_playbook.yml # works!
2017-06-09 15:05:58 +03:00
2017-09-28 00:57:45 +03:00
# please note that you have both venv1.9 and venv2 present - you need to (de)activate one - that is all
2017-06-09 15:05:58 +03:00
```
2017-09-28 00:57:45 +03:00
### Naming
2017-06-09 15:05:58 +03:00
2017-09-28 00:57:45 +03:00
### Bonus
2017-06-09 15:05:58 +03:00
2017-09-28 00:57:45 +03:00
### writing own module
2017-06-09 15:05:58 +03:00
2017-09-28 00:57:45 +03:00
### Python API
2017-06-09 15:05:58 +03:00
2017-09-28 00:57:45 +03:00
### Web-UI: Ansible Tower, Jenkins, Rundeck
2017-06-09 15:05:58 +03:00
2017-09-28 00:57:45 +03:00
#### Ansible Tower
Ansible provides a Web User Interface called `Ansible Tower`.
It is a convienient way to run Ansible Playbooks, have proper user management, log retention, and cron (periodic jobs).
2017-06-09 15:05:58 +03:00
2017-09-28 00:57:45 +03:00
Personaly I'm not a fan of it - it's to expensive for my cases, and the trial is 10 inventory-hosts only.
2017-06-09 15:05:58 +03:00
2017-09-28 00:57:45 +03:00
For my usecases I hide the 'pure ansible' commands behind other projects.
2017-06-09 15:05:58 +03:00
2017-09-28 00:57:45 +03:00
#### Rundeck
This is nice, secure interface, that allows you to execute a jobs of your choice (CLI, script, execution plan).
It can perform roling-deployment (without Ansible), can integrate with clouds, etc.
2017-06-09 15:05:58 +03:00
2017-09-28 00:57:45 +03:00
#### Jenkins
For my 'business cases' I use Jenkins - it has a 'cron', jobs can be binded into 'pipelines'.
2017-06-09 15:05:58 +03:00
2017-10-20 22:42:16 +03:00
#### become-user, become
2017-06-09 15:05:58 +03:00
2017-09-28 01:05:12 +03:00
## Tips and tricks
2017-06-09 15:05:58 +03:00
2017-09-28 01:05:12 +03:00
#### --check -C
2017-09-28 00:57:45 +03:00
Always make sure that your playbook can executes in 'dry run' mode (--check), and it's execution is not declaring 'Changed' objects.
2017-06-09 15:05:58 +03:00
2017-09-28 01:05:12 +03:00
#### --diff -D
2017-09-28 00:57:45 +03:00
Diff is usefull to see nice detail of the files changed
2017-06-09 15:05:58 +03:00
2017-09-28 00:57:45 +03:00
It compare 'in memory' the files like `diff -BbruN fileA fileB`
2017-06-09 15:05:58 +03:00
2017-09-28 01:05:12 +03:00
#### Execute hosts with 'regex'
2017-06-09 15:05:58 +03:00
```bash
2017-09-28 00:57:45 +03:00
ansible -m ping web*
2017-06-09 15:05:58 +03:00
```
2017-09-28 01:05:12 +03:00
####
2017-09-28 00:57:45 +03:00
Host groups can be joined, negated, etc
2017-06-09 15:05:58 +03:00
```bash
2017-09-28 00:57:45 +03:00
ansible -m ping web*:!backend:monitoring:&allow_change
2017-06-09 15:05:58 +03:00
```
2017-09-28 01:05:12 +03:00
#### Tagging
2017-09-28 00:57:45 +03:00
You should tag some (not all) objects - a task in a playbook, all tasks included form a role, etc.
It allwos you to execute the choosen parts of the playbook.
2017-06-09 15:05:58 +03:00
2017-09-28 01:05:12 +03:00
#### no_logs: True
2017-09-28 00:57:45 +03:00
You may see, that some roles print a lot of output in verbose mode. There is also a debug module.
This is the place where credentials may leak. Use `no_log` to hide the output.
2017-06-09 15:05:58 +03:00
2017-09-28 01:05:12 +03:00
#### Debug module
2017-09-28 00:57:45 +03:00
allows to print a value to the screen
2017-06-09 15:05:58 +03:00
2017-09-28 01:05:12 +03:00
#### Register the output of a task
2017-09-28 00:57:45 +03:00
You can register the output (stdout), rc (return code), stderr of a task with the `register` command.
2017-06-09 15:05:58 +03:00
2017-09-28 01:05:12 +03:00
#### Conditionals: when:
2017-06-09 15:05:58 +03:00
2017-09-28 01:05:12 +03:00
#### Loop: with, with_items, with_dict, with_together
2017-06-09 15:05:58 +03:00
2017-09-28 00:57:45 +03:00
## Introduction
Ansible is (one of the many) orchestration tools. It allows you to controll your environment (infrastructure and a code) and automate the manual tasks.
2017-09-28 01:02:01 +03:00
'You can think as simple as writing in bash with python API
2017-09-28 00:57:45 +03:00
Of course the rabit hole is way deeper.'
2017-06-09 15:05:58 +03:00
2017-09-28 00:57:45 +03:00
Ansible have great integration with multiple operating systems (even Windows) and some hardware (switches, Firewalls, etc). It has multiple tools that integrate with the could providers. Almost every worth-notice cloud provider is present in the ecosystem (AWS, Azure, Google, DigitalOcean, OVH, etc...)
2017-06-09 15:05:58 +03:00
2017-09-28 00:57:45 +03:00
## Main cons and pros
2017-06-09 15:05:58 +03:00
2017-09-28 00:57:45 +03:00
### Cons
2017-06-09 15:05:58 +03:00
2017-09-28 00:57:45 +03:00
It is an agent-less tool - every agent consumes up to 16MB ram - in some environments, it may be noticable amount.
It is agent-less - you have to verify your environment consistency 'on-demand' - there is no built-in mechanism taht would warn you about some change automatically (this can be achieved with reasonable effort - but it must be known)
Official GUI Tool (web inferface) - Ansible Tower - is more than GUI, but it is expensive. There is no 'small enterprice' payment plan. Easy workaround with Rundeck or Jenkins is possible with reasonable workload.
2017-06-09 15:05:58 +03:00
2017-09-28 00:57:45 +03:00
### Pros
2017-06-09 15:05:58 +03:00
2017-09-28 01:02:01 +03:00
It is an agent-less tools In most scenarios, it use ssh as a transport layer.
2017-09-28 00:57:45 +03:00
In some way you can use it as 'bash on steroids'.
2017-09-28 01:02:01 +03:00
It is very-very-very easy to start. If you are familiar with ssh concept - you already know ansible (ALMOST). My personal record is: 'I did show how to install and use ansible (for simple raspberry pi cluster management) and it tool me 30 seconds to deliver a working tool !!!)'
2017-09-28 00:57:45 +03:00
I do provide a training services - I'm able to teach a production-ready person - in 8 hours (1 training day)! It covers all needed to work aspects! No other tool can match this ease of use!
It executes when you do it - other tools (salt, puppet, chef - might execute in different scenario than you would expect)
Documentation is at the world-class standard!
The comunity (github, stackOverflow) would help you very fast.
Writing own modules and extension is fairly easy.
2017-06-09 15:05:58 +03:00
2017-09-28 00:57:45 +03:00
### Neutral
Migration Ansible<->Salt is failrly easy - so if you would need an event-driven agent environment - it would be a good choice to start quick with Ansible, and convert to salt when needed.
2017-06-09 15:05:58 +03:00
2017-09-28 00:57:45 +03:00
## Basics on ansible
2017-06-09 15:05:58 +03:00
2017-09-28 00:57:45 +03:00
Ansible uses ssh or paramiko as a transport layer. In a way you can imagine that you are using a ssh with API to perform your action.
In the 'low-level' way you can use it to execute remote command in more controlled way (still using ssh).
On the other hand - in advanced scope - you can use python anible code as a library to your own python scrips! This is awesome! (if you know what you are doing). It is a bit like fabric then.
2017-06-09 15:05:58 +03:00
2017-09-28 00:57:45 +03:00
But ansible is way more! It provides an execution plans, an API, library, callbacks, not forget to mention - COMUNITY! and great support by developers!
2017-06-09 15:05:58 +03:00
2017-09-28 00:57:45 +03:00
# JM inventory dynamic aws ec2
# vault
# roles
2017-06-09 15:05:58 +03:00
2017-10-20 22:42:16 +03:00
#### ansible - dynamic in AWS
#### create instance in AWS
#### create env in AWS