2019-03-01 10:53:27 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: deployment
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
workspace:
|
|
|
|
base: /drone/src
|
|
|
|
path: xoxys.nginx
|
|
|
|
|
|
|
|
steps:
|
2019-03-01 10:48:32 +00:00
|
|
|
- name: molecule
|
|
|
|
pull: always
|
|
|
|
image: xoxys/molecule:gce
|
|
|
|
commands:
|
2019-03-12 13:42:21 +00:00
|
|
|
- '[ "$MOLECULE_CUSTOM_MODULES_REPO" ] && echo "Test"'
|
2019-03-12 13:10:36 +00:00
|
|
|
- /bin/bash /docker-entrypoint.sh
|
2019-03-01 10:48:32 +00:00
|
|
|
- molecule create --scenario-name gce-centos-7
|
|
|
|
- molecule converge --scenario-name gce-centos-7
|
|
|
|
- molecule verify --scenario-name gce-centos-7
|
|
|
|
- molecule destroy --scenario-name gce-centos-7
|
|
|
|
environment:
|
|
|
|
GCE_CREDENTIALS_FILE: $HOME/ansible-testing.json
|
|
|
|
GCE_CREDENTIALS_JSON:
|
|
|
|
from_secret: gce_credentials_json
|
|
|
|
GCE_PROJECT_ID:
|
|
|
|
from_secret: gce_project_id
|
|
|
|
GCE_SERVICE_ACCOUNT_EMAIL:
|
|
|
|
from_secret: gce_service_account_email
|
|
|
|
GCE_SSH_KEY:
|
|
|
|
from_secret: gce_ssh_key
|
|
|
|
GCE_SSH_USER:
|
|
|
|
from_secret: gce_ssh_user
|
2019-03-12 10:47:30 +00:00
|
|
|
MOLECULE_CUSTOM_MODULES_REPO: https://gitea.rknet.org/ansible/custom_modules
|
2019-03-01 10:48:32 +00:00
|
|
|
PY_COLORS: 1
|