mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
275 lines
9.9 KiB
ReStructuredText
275 lines
9.9 KiB
ReStructuredText
11 years ago
|
Google Cloud Platform Guide
|
||
|
===========================
|
||
11 years ago
|
|
||
11 years ago
|
.. gce_intro:
|
||
11 years ago
|
|
||
|
Introduction
|
||
|
------------
|
||
|
|
||
11 years ago
|
.. note:: This section of the documentation is under construction. We are in the process of adding more examples about all of the GCE modules and how they work together. Upgrades via github pull requests are welcomed!
|
||
11 years ago
|
|
||
11 years ago
|
Ansible contains modules for managing Google Compute Engine resources, including creating instances, controlling network access, working with persistent disks, and managing
|
||
|
load balancers. Additionally, there is an inventory plugin that can automatically suck down all of your GCE instances into Ansible dynamic inventory, and create groups by tag and other properties.
|
||
|
|
||
9 years ago
|
The GCE modules all require the apache-libcloud module which you can install from pip:
|
||
11 years ago
|
|
||
|
.. code-block:: bash
|
||
|
|
||
|
$ pip install apache-libcloud
|
||
|
|
||
11 years ago
|
.. note:: If you're using Ansible on Mac OS X, libcloud also needs to access a CA cert chain. You'll need to download one (you can get one for `here <http://curl.haxx.se/docs/caextract.html>`_.)
|
||
11 years ago
|
|
||
|
Credentials
|
||
|
-----------
|
||
|
|
||
9 years ago
|
To work with the GCE modules, you'll first need to get some credentials in the
|
||
|
JSON format:
|
||
11 years ago
|
|
||
9 years ago
|
1. `Create a Service Account <https://developers.google.com/identity/protocols/OAuth2ServiceAccount#creatinganaccount>`_
|
||
|
2. `Download JSON credentials <https://support.google.com/cloud/answer/6158849?hl=en&ref_topic=6262490#serviceaccounts>`_
|
||
11 years ago
|
|
||
9 years ago
|
There are three different ways to provide credentials to Ansible so that it can talk with Google Cloud for provisioning and configuration actions:
|
||
11 years ago
|
|
||
9 years ago
|
.. note:: If you would like to use JSON credentials you must have libcloud >= 0.17.0
|
||
11 years ago
|
|
||
|
* by providing to the modules directly
|
||
|
* by populating a ``secrets.py`` file
|
||
9 years ago
|
* by setting environment variables
|
||
11 years ago
|
|
||
11 years ago
|
Calling Modules By Passing Credentials
|
||
|
``````````````````````````````````````
|
||
11 years ago
|
|
||
11 years ago
|
For the GCE modules you can specify the credentials as arguments:
|
||
11 years ago
|
|
||
|
* ``service_account_email``: email associated with the project
|
||
9 years ago
|
* ``credentials_file``: path to the JSON credentials file
|
||
11 years ago
|
* ``project_id``: id of the project
|
||
|
|
||
|
For example, to create a new instance using the cloud module, you can use the following configuration:
|
||
|
|
||
|
.. code-block:: yaml
|
||
11 years ago
|
|
||
11 years ago
|
- name: Create instance(s)
|
||
|
hosts: localhost
|
||
9 years ago
|
connection: local
|
||
11 years ago
|
gather_facts: no
|
||
11 years ago
|
|
||
11 years ago
|
vars:
|
||
|
service_account_email: unique-id@developer.gserviceaccount.com
|
||
9 years ago
|
credentials_file: /path/to/project.json
|
||
11 years ago
|
project_id: project-id
|
||
|
machine_type: n1-standard-1
|
||
|
image: debian-7
|
||
11 years ago
|
|
||
11 years ago
|
tasks:
|
||
11 years ago
|
|
||
11 years ago
|
- name: Launch instances
|
||
9 years ago
|
gce:
|
||
|
instance_names: dev
|
||
11 years ago
|
machine_type: "{{ machine_type }}"
|
||
|
image: "{{ image }}"
|
||
|
service_account_email: "{{ service_account_email }}"
|
||
9 years ago
|
credentials_file: "{{ credentials_file }}"
|
||
11 years ago
|
project_id: "{{ project_id }}"
|
||
11 years ago
|
|
||
9 years ago
|
When running Ansible inside a GCE VM you can use the service account credentials from the local metadata server by
|
||
|
setting both ``service_account_email`` and ``credentials_file`` to a blank string.
|
||
|
|
||
|
Configuring Modules with secrets.py
|
||
|
```````````````````````````````````
|
||
11 years ago
|
|
||
|
Create a file ``secrets.py`` looking like following, and put it in some folder which is in your ``$PYTHONPATH``:
|
||
|
|
||
|
.. code-block:: python
|
||
|
|
||
9 years ago
|
GCE_PARAMS = ('i...@project.googleusercontent.com', '/path/to/project.json')
|
||
10 years ago
|
GCE_KEYWORD_PARAMS = {'project': 'project_id'}
|
||
11 years ago
|
|
||
9 years ago
|
Ensure to enter the email address from the created services account and not the one from your main account.
|
||
10 years ago
|
|
||
11 years ago
|
Now the modules can be used as above, but the account information can be omitted.
|
||
11 years ago
|
|
||
9 years ago
|
If you are running Ansible from inside a GCE VM with an authorized service account you can set the email address and
|
||
|
credentials path as follows so that get automatically picked up:
|
||
|
|
||
|
.. code-block:: python
|
||
|
|
||
|
GCE_PARAMS = ('', '')
|
||
|
GCE_KEYWORD_PARAMS = {'project': 'project_id'}
|
||
|
|
||
|
Configuring Modules with Environment Variables
|
||
|
``````````````````````````````````````````````
|
||
|
|
||
|
Set the following environment variables before running Ansible in order to configure your credentials:
|
||
|
|
||
|
.. code-block:: bash
|
||
|
|
||
|
GCE_EMAIL
|
||
|
GCE_PROJECT
|
||
|
GCE_CREDENTIALS_FILE_PATH
|
||
|
|
||
11 years ago
|
GCE Dynamic Inventory
|
||
|
---------------------
|
||
11 years ago
|
|
||
|
The best way to interact with your hosts is to use the gce inventory plugin, which dynamically queries GCE and tells Ansible what nodes can be managed.
|
||
|
|
||
9 years ago
|
Note that when using the inventory script ``gce.py``, you also need to populate the ``gce.ini`` file that you can find in the contrib/inventory directory of the ansible checkout.
|
||
11 years ago
|
|
||
9 years ago
|
To use the GCE dynamic inventory script, copy ``gce.py`` from ``contrib/inventory`` into your inventory directory and make it executable. You can specify credentials for ``gce.py`` using the ``GCE_INI_PATH`` environment variable -- the default is to look for gce.ini in the same directory as the inventory script.
|
||
11 years ago
|
|
||
|
Let's see if inventory is working:
|
||
|
|
||
11 years ago
|
.. code-block:: bash
|
||
11 years ago
|
|
||
11 years ago
|
$ ./gce.py --list
|
||
11 years ago
|
|
||
11 years ago
|
You should see output describing the hosts you have, if any, running in Google Compute Engine.
|
||
|
|
||
|
Now let's see if we can use the inventory script to talk to Google.
|
||
11 years ago
|
|
||
|
.. code-block:: bash
|
||
|
|
||
|
$ GCE_INI_PATH=~/.gce.ini ansible all -i gce.py -m setup
|
||
|
hostname | success >> {
|
||
|
"ansible_facts": {
|
||
|
"ansible_all_ipv4_addresses": [
|
||
|
"x.x.x.x"
|
||
|
],
|
||
|
|
||
9 years ago
|
As with all dynamic inventory scripts in Ansible, you can configure the inventory path in ansible.cfg. The recommended way to use the inventory is to create an ``inventory`` directory, and place both the ``gce.py`` script and a file containing ``localhost`` in it. This can allow for cloud inventory to be used alongside local inventory (such as a physical datacenter) or machines running in different providers.
|
||
11 years ago
|
|
||
|
Executing ``ansible`` or ``ansible-playbook`` and specifying the ``inventory`` directory instead of an individual file will cause ansible to evaluate each file in that directory for inventory.
|
||
|
|
||
11 years ago
|
Let's once again use our inventory script to see if it can talk to Google Cloud:
|
||
11 years ago
|
|
||
|
.. code-block:: bash
|
||
|
|
||
|
$ ansible all -i inventory/ -m setup
|
||
|
hostname | success >> {
|
||
|
"ansible_facts": {
|
||
|
"ansible_all_ipv4_addresses": [
|
||
|
"x.x.x.x"
|
||
|
],
|
||
|
|
||
11 years ago
|
The output should be similar to the previous command. If you're wanting less output and just want to check for SSH connectivity, use "-m" ping instead.
|
||
11 years ago
|
|
||
|
Use Cases
|
||
|
---------
|
||
|
|
||
11 years ago
|
For the following use case, let's use this small shell script as a wrapper.
|
||
11 years ago
|
|
||
|
.. code-block:: bash
|
||
|
|
||
10 years ago
|
#!/usr/bin/env bash
|
||
11 years ago
|
PLAYBOOK="$1"
|
||
|
|
||
10 years ago
|
if [[ -z $PLAYBOOK ]]; then
|
||
|
echo "You need to pass a playbook as argument to this script."
|
||
11 years ago
|
exit 1
|
||
|
fi
|
||
|
|
||
|
export SSL_CERT_FILE=$(pwd)/cacert.cer
|
||
|
export ANSIBLE_HOST_KEY_CHECKING=False
|
||
|
|
||
10 years ago
|
if [[ ! -f "$SSL_CERT_FILE" ]]; then
|
||
11 years ago
|
curl -O http://curl.haxx.se/ca/cacert.pem
|
||
|
fi
|
||
|
|
||
|
ansible-playbook -v -i inventory/ "$PLAYBOOK"
|
||
|
|
||
|
|
||
|
Create an instance
|
||
|
``````````````````
|
||
|
|
||
|
The GCE module provides the ability to provision instances within Google Compute Engine. The provisioning task is typically performed from your Ansible control server against Google Cloud's API.
|
||
|
|
||
|
A playbook would looks like this:
|
||
|
|
||
|
.. code-block:: yaml
|
||
|
|
||
|
- name: Create instance(s)
|
||
|
hosts: localhost
|
||
|
gather_facts: no
|
||
11 years ago
|
connection: local
|
||
|
|
||
11 years ago
|
vars:
|
||
|
machine_type: n1-standard-1 # default
|
||
|
image: debian-7
|
||
|
service_account_email: unique-id@developer.gserviceaccount.com
|
||
9 years ago
|
credentials_file: /path/to/project.json
|
||
11 years ago
|
project_id: project-id
|
||
11 years ago
|
|
||
11 years ago
|
tasks:
|
||
|
- name: Launch instances
|
||
11 years ago
|
gce:
|
||
10 years ago
|
instance_names: dev
|
||
|
machine_type: "{{ machine_type }}"
|
||
|
image: "{{ image }}"
|
||
|
service_account_email: "{{ service_account_email }}"
|
||
9 years ago
|
credentials_file: "{{ credentials_file }}"
|
||
11 years ago
|
project_id: "{{ project_id }}"
|
||
|
tags: webserver
|
||
|
register: gce
|
||
|
|
||
|
- name: Wait for SSH to come up
|
||
|
wait_for: host={{ item.public_ip }} port=22 delay=10 timeout=60
|
||
8 years ago
|
with_items: "{{ gce.instance_data }}"
|
||
11 years ago
|
|
||
10 years ago
|
- name: Add host to groupname
|
||
|
add_host: hostname={{ item.public_ip }} groupname=new_instances
|
||
8 years ago
|
with_items: "{{ gce.instance_data }}"
|
||
11 years ago
|
|
||
|
- name: Manage new instances
|
||
|
hosts: new_instances
|
||
|
connection: ssh
|
||
10 years ago
|
sudo: True
|
||
11 years ago
|
roles:
|
||
|
- base_configuration
|
||
|
- production_server
|
||
10 years ago
|
|
||
11 years ago
|
Note that use of the "add_host" module above creates a temporary, in-memory group. This means that a play in the same playbook can then manage machines
|
||
|
in the 'new_instances' group, if so desired. Any sort of arbitrary configuration is possible at this point.
|
||
|
|
||
|
Configuring instances in a group
|
||
|
````````````````````````````````
|
||
|
|
||
|
All of the created instances in GCE are grouped by tag. Since this is a cloud, it's probably best to ignore hostnames and just focus on group management.
|
||
|
|
||
|
Normally we'd also use roles here, but the following example is a simple one. Here we will also use the "gce_net" module to open up access to port 80 on
|
||
|
these nodes.
|
||
|
|
||
|
The variables in the 'vars' section could also be kept in a 'vars_files' file or something encrypted with Ansible-vault, if you so choose. This is just
|
||
|
a basic example of what is possible::
|
||
|
|
||
|
- name: Setup web servers
|
||
|
hosts: tag_webserver
|
||
|
gather_facts: no
|
||
|
|
||
|
vars:
|
||
|
machine_type: n1-standard-1 # default
|
||
|
image: debian-7
|
||
|
service_account_email: unique-id@developer.gserviceaccount.com
|
||
9 years ago
|
credentials_file: /path/to/project.json
|
||
11 years ago
|
project_id: project-id
|
||
|
|
||
|
roles:
|
||
|
|
||
|
- name: Install lighttpd
|
||
|
apt: pkg=lighttpd state=installed
|
||
|
sudo: True
|
||
|
|
||
|
- name: Allow HTTP
|
||
|
local_action: gce_net
|
||
|
args:
|
||
|
fwname: "all-http"
|
||
|
name: "default"
|
||
9 years ago
|
allowed: "tcp:80"
|
||
|
state: "present"
|
||
|
service_account_email: "{{ service_account_email }}"
|
||
|
credentials_file: "{{ credentials_file }}"
|
||
11 years ago
|
project_id: "{{ project_id }}"
|
||
11 years ago
|
|
||
11 years ago
|
By pointing your browser to the IP of the server, you should see a page welcoming you.
|
||
11 years ago
|
|
||
9 years ago
|
Upgrades to this documentation are welcome, hit the github link at the top right of this page if you would like to make additions!
|