Giter Site home page Giter Site logo

fiftin / concourse-ansible-resource Goto Github PK

View Code? Open in Web Editor NEW

This project forked from springerpe/concourse-ansible-resource

0.0 2.0 0.0 38 KB

Concourse resource type to run ansible playbooks stored in git repo

License: MIT License

Dockerfile 6.09% Python 90.30% Shell 3.61%
concourse concourse-ci concourse-resource concourse-ci-resource ansible ansible-playbook

concourse-ansible-resource's Introduction

Ansible Concourse Resource

This is Ansible resource for Concourse to be able to execute Ansible playbooks from concourse.

It defines an output plugin to send the ansible execution logs to stderr as it is required by concourse (see ansible/callbacks/concourse.py).

The ansible default configuration (in /etc/ansible) is defined in ansible folder.

It can use Ansible playbook stored in git repository (src_uri).

Why using playbook from git better than from resource?

With Git Resource

Source Configuration

Parameters available to use in the resource definition. None of then are required, but probably you will need to setup private_key, remote_user and inventory:

  • src_uri: URI of git repo where Ansible playbook stored.
  • src_branch: Branch witch you want to use.
  • src_private_key: A string containing the ssh private key used to access to git repo.
  • private_key: A string containing the ssh private key used for ssh connections.
  • remote_user: Remote user used to establish a ssh connection.
  • remote_pass : If private_key is not provided, password for remote_user.
  • vault_password: Ansible vault password to access to encrypted files with variables.
  • extra_vars: Key-value dictionary with variables used in the playbooks.
  • extra_vars_file: Pathname of JSON file with extra variables. Not compatible with extra_vars.
  • inventory: Dictionary for inventory definition:
    • file: Defaults to inventory.ini file name for inventory.
    • path: Folder where the hosts inventory file will be created (if needed) and additional inventory files can be defined: group_vars and host_vars are. Defaults to inventory.
    • hosts: Ansible inventory definition specifying the hosts, hosts groups and variables.
    • executable: Path to a dynamic inventory executable.
  • become: If true, execute playbooks as become_user. Usually not needed at this level.
  • become_method: Ansible become method (defaults to sudo).
  • become_user: User to run for privileged tasks (defaults to root).
  • become_pass: Password in order to become becomer_user with become_method.
  • ssh_common_args: ssh client additional arguments to establish ssh connections.
  • forks: Number of parallel execution threads for hosts groups.
  • tags: Limit playbook execution to only tasks tagged with this tags.
  • skip_tags: Tasks of playbook with these tags will be skipped.

Behavior

check, in

Currently this resource only supports the put phase of a job plan, so these are effectively no-ops. This will likely change in the future.

out: Run an Ansible playbook

Run a an ansible playbook, sending the output to stderr by using a concourse stdout plugin (defined in the default configuration ansible/ansible.cfg).

The parameters are almost the same as the ones in source, except private_key and playbook (only in out).

Parameters

  • src: Base folder where all the ansible resources are (to use local playbook instead of git repo, see examples below)
  • playbook: Playbook file name to execute.
  • remote_user: Remote user used to establish a ssh connection.
  • remote_pass : If private_key is not provided, password for remote_user.
  • vault_password: Ansible vault password to access to encrypted files with variables.
  • extra_vars: Key-value dictionary with variables used in the playbooks.
  • inventory: Dictionary for inventory definition:
    • file: Defaults to inventory.ini file name for inventory.
    • path: Folder where the hosts inventory file will be created (if needed) and additional inventory files can be defined: group_vars and host_vars are. Defaults to inventory.
    • hosts: Ansible inventory definition specifying the hosts, hosts groups and variables.
    • executable: Path to a dynamic inventory executable.
  • become: If true, execute playbooks as become_user. Usually not needed at this level.
  • become_method: Ansible become method (defaults to sudo).
  • become_user: User to run for privileged tasks (defaults to root).
  • become_pass: Password in order to become becomer_user with become_method.
  • ssh_common_args: ssh client additional arguments to establish ssh connections.
  • forks: Number of parallel execution threads for hosts groups.
  • tags: Limit playbook execution to only tasks tagged with this tags.
  • skip_tags: Tasks of playbook with these tags will be skipped.

Example Pipeline

---
resource_types:
- name: ansible
  type: docker-image
  source:
    repository: platformengineering/concourse-ansible-resource

resources:
- name: ansible-executor
  type: ansible
  source:
    src_uri: [email protected]:springerpe/repository.git
    src_branch: master
    src_private_key: {{github-private-key}}
    private_key: {{ansible-private-key}}
    remote_user: ansible
    inventory:
      hosts:
        webservers: 
        - "host2.example.com"
        - "host3.example.com"
        atlanta:
            hosts:
            - "host1.example.com"
            - "host4.example.com"
            - "host5.example.com"
            vars:
              b: false
            children:
            - marietta
        marietta:
        - "host6.example.com"

jobs:
- name: run-ansible
  plan:
  - put: ansible-executor
    params:
      playbook: "site.yml"

Another pipeline example:

---
resource_types:
- name: ansible
  type: docker-image
  source:
    repository: platformengineering/concourse-ansible-resource

resources:
- name: ansible-playbook
  type: git
  source:
    uri: [email protected]:springernature/ee-ansible-ironic-standalone.git
    branch: master
    private_key: |
        -----BEGIN RSA PRIVATE KEY-----
        ..................................................................
        -----END RSA PRIVATE KEY-----

- name: ansible-executor
  type: ansible
  source:
    private_key: {{ansible-private-key}}
    remote_user: {{ansible-remote-user}}
    vault_password: {{ansible-vault-password}}


jobs:
- name: run-ansible
  plan:
  - get: ansible-playbook
    params:
      submodules: all
  - put: ansible-executor
    params:
      src: "ansible-playbook"
      inventory:
        path: "inventory"
        file: "pe-prod-dogo-ironic-01.ini"
      playbook: "setup.yml"

Ansible playbook repo structure

This is an example of a playbook git repository:

.
├── playbook.yml
├── inventory
│   ├── static_inventory.ini
│   └── group_vars
│       └── group.yml
├── [roles]
│   ├── role1
│   └── role2
├── [tasks]
│   ├── task1.yml
│   └── task1.yml
├── [files]
│   └── file.bin
└── [vars]
    ├── secrets.yml
    └── other_vars.yml

Author

Jose Riguera [email protected] (c) 2017 Springer Nature Platform Engineering

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.