Skip to content
Snippets Groups Projects
Commit ba837878 authored by nimrod's avatar nimrod
Browse files

Merge branch 'master' of /home/nimrod/Documents/Shore/Ansible/example

# Conflicts:
#	molecule.yml
#	tests/playbook.yml
parents cc5919f3 0390260e
Branches
No related tags found
No related merge requests found
...@@ -2,22 +2,35 @@ ...@@ -2,22 +2,35 @@
language: python language: python
python: "2.7" python: "2.7"
dist: trusty dist: trusty
sudo: false sudo: True
group: beta group: beta
services: [docker] services: [docker]
env:
- platform: openbsd
driver: vagrant
- platform: xenial
driver: vagrant
- platform: jessie
driver: vagrant
- platform: trusty
driver: vagrant
cache: cache:
- pip - pip
- directories: - directories:
- $HOME/.pre-commit - $HOME/.pre-commit
install: install:
- sudo apt-get update
- sudo apt-get install -y linux-headers-$(uname -r) virtualbox
- wget https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1_x86_64.deb
- sudo dpkg -i vagrant_1.9.1_x86_64.deb
- pip install -r tests/requirements.txt | cat - pip install -r tests/requirements.txt | cat
- ansible-galaxy install git+file://$(pwd),$(git rev-parse --abbrev-ref HEAD) -p .molecule/roles - ansible-galaxy install git+file://$(pwd),$(git rev-parse --abbrev-ref HEAD) -p .molecule/roles
- molecule dependency - molecule dependency
script: script:
- pre-commit run --all-files - pre-commit run --all-files
- molecule test --driver docker - molecule test --driver $driver --platform $platform
notifications: notifications:
webhooks: https://galaxy.ansible.com/api/v1/notifications/ webhooks: https://galaxy.ansible.com/api/v1/notifications/
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
library = library library = library
host_key_checking = False host_key_checking = False
retry_files_enabled = False retry_files_enabled = False
roles_path = .molecule/roles:.molecule/../roles:../:../../ roles_path = ../:.molecule/roles:.molecule/../roles:../../
command_warnings = True command_warnings = True
deprecation_warnings = True deprecation_warnings = True
callback_whitelist = profile_tasks callback_whitelist = profile_tasks
......
...@@ -13,24 +13,30 @@ vagrant: ...@@ -13,24 +13,30 @@ vagrant:
providers: providers:
- name: virtualbox - name: virtualbox
type: virtualbox type: virtualbox
options:
cpus: 1
platforms: platforms:
- name: openbsd - name: openbsd
box: kaorimatz/openbsd-6.0-amd64 box: fnichol/openbsd-6.0-i386
- name: jessie
box: debian/jessie64
- name: xenial - name: xenial
box: ubuntu/xenial64 box: ubuntu/xenial32
- name: jessie
box: nogajun/jessie32
- name: trusty - name: trusty
box: ubuntu/trusty64 box: ubuntu/trusty32
instances: instances:
- name: gitreceive - name: gitreceive
options: options:
append_platform_to_hostname: yes append_platform_to_hostname: yes
raw_config_args: raw_config_args:
- 'vm.synced_folder ".", "/vagrant", disabled: true' - 'vm.synced_folder ".", "/vagrant", disabled: true'
- 'vbguest.auto_update = false' - 'vbguest.auto_update = false if Vagrant.has_plugin?("vbguest")'
- 'landrush.enabled = false' - 'landrush.enabled = false if Vagrant.has_plugin?("landrush")'
- 'landrush_ip.override = false' - 'landrush_ip.override = false if Vagrant.has_plugin?("landrush")'
- |
vm.provider "virtualbox" do |v|
v.customize "pre-boot", ["modifyvm", :id, "--hwvirtex", "off"]
end
docker: docker:
containers: containers:
......
--- ---
- hosts: gitreceive-openbsd - hosts: gitreceive-openbsd
gather_facts: false gather_facts: false
roles: [adarnimrod.openbsd-bootstrap] roles: [openbsd-bootstrap]
- hosts: gitreceive-xenial - hosts: gitreceive-xenial
gather_facts: false gather_facts: false
roles: [adarnimrod.debian-bootstrap] roles: [debian-bootstrap]
- hosts: all - hosts: all
tasks: tasks:
...@@ -29,7 +29,6 @@ ...@@ -29,7 +29,6 @@
state: started state: started
- hosts: all - hosts: all
strategy: free
roles: roles:
- role: gitreceive - role: gitreceive
gitreceive_public_keys: ['{{ lookup("file", "id_rsa.pub") }}'] gitreceive_public_keys: ['{{ lookup("file", "id_rsa.pub") }}']
......
ansible==2.2.0.0 ansible==2.2.0.0
testinfra==1.4.5 testinfra==1.5.1
molecule==1.16.1 molecule==1.17.3
ansible-lint==3.4.7 ansible-lint==3.4.9
pre-commit==0.9.4 pre-commit==0.9.4
piprot==0.9.7 piprot==0.9.7
python-vagrant==0.5.14 python-vagrant==0.5.14
docker-py==1.10.6 docker-py==1.10.6
netaddr==0.7.18
passlib==1.7.0
bcrypt==3.1.2
--- ---
- src: adarnimrod.openbsd-bootstrap - src: adarnimrod.openbsd-bootstrap
name: openbsd-bootstrap
- src: adarnimrod.debian-bootstrap - src: adarnimrod.debian-bootstrap
name: debian-bootstrap
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment