2019-01-12 12:52:07 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2019-06-10 13:05:20 +00:00
|
|
|
name: linting
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: ansible-latest
|
|
|
|
pull: always
|
|
|
|
image: python:3.7
|
|
|
|
commands:
|
|
|
|
- pip install ansible ansible-later~=0.2.0 -qq
|
|
|
|
- git clone https://gitea.rknet.org/ansible/ansible-later-policy.git ~/policy
|
|
|
|
- ansible-later -c ~/policy/config.yml
|
|
|
|
environment:
|
|
|
|
PY_COLORS: 1
|
|
|
|
depends_on:
|
|
|
|
- clone
|
|
|
|
|
|
|
|
- name: ansible-master
|
|
|
|
pull: always
|
|
|
|
image: python:3.7
|
|
|
|
commands:
|
|
|
|
- "pip install git+https://github.com/ansible/ansible.git@devel ansible-later~=0.2.0 -qq"
|
|
|
|
- git clone https://gitea.rknet.org/ansible/ansible-later-policy.git ~/policy
|
|
|
|
- ansible-later -c ~/policy/config.yml
|
|
|
|
environment:
|
|
|
|
PY_COLORS: 1
|
|
|
|
depends_on:
|
|
|
|
- clone
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
|
|
|
- refs/heads/master
|
|
|
|
- "refs/tags/**"
|
|
|
|
- "refs/pull/**"
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: deployment
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
workspace:
|
|
|
|
base: /drone/src
|
|
|
|
path: xoxys.postgres
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: molecule
|
|
|
|
pull: always
|
|
|
|
image: xoxys/molecule:ec2-linux-amd64
|
|
|
|
commands:
|
|
|
|
- /bin/bash /docker-entrypoint.sh
|
|
|
|
- molecule test --scenario-name ec2-centos-7
|
|
|
|
environment:
|
|
|
|
ANSIBLE_ROLES_PATH: /drone/src
|
|
|
|
AWS_ACCESS_KEY_ID:
|
|
|
|
from_secret: aws_access_key_id
|
|
|
|
AWS_REGION: eu-central-1
|
|
|
|
AWS_SECRET_ACCESS_KEY:
|
|
|
|
from_secret: aws_secret_access_key
|
|
|
|
MOLECULE_CUSTOM_FILTERS_REPO: https://gitea.rknet.org/ansible/custom_filters
|
|
|
|
MOLECULE_CUSTOM_MODULES_REPO: https://gitea.rknet.org/ansible/custom_modules
|
|
|
|
PY_COLORS: 1
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
|
|
|
- refs/heads/master
|
|
|
|
- "refs/tags/**"
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- linting
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: notifications
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
clone:
|
|
|
|
disable: true
|
2019-01-12 12:52:07 +00:00
|
|
|
|
|
|
|
steps:
|
2019-06-10 13:05:20 +00:00
|
|
|
- name: matrix
|
|
|
|
image: plugins/matrix
|
|
|
|
settings:
|
|
|
|
homeserver: https://matrix.rknet.org
|
|
|
|
password:
|
|
|
|
from_secret: matrix_password
|
|
|
|
roomid: MtidqQXWWAtQcByBhH:rknet.org
|
|
|
|
template: "Status: **{{ build.status }}**<br/> Build: [{{ repo.Owner }}/{{ repo.Name }}]({{ build.link }}) ({{ build.branch }}) by {{ build.author }}<br/> Message: {{ build.message }}"
|
|
|
|
username:
|
|
|
|
from_secret: matrix_username
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
|
|
|
- refs/heads/master
|
|
|
|
- "refs/tags/**"
|
|
|
|
status:
|
|
|
|
- success
|
|
|
|
- failure
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- deployment
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: signature
|
|
|
|
hmac: c2f652254c3ce8252302c2900fa1dd19cc9aad2202f99945e08efea7e45ade95
|
|
|
|
|
|
|
|
...
|