2019-01-12 12:49:56 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: default
|
|
|
|
|
2019-02-27 21:46:32 +00:00
|
|
|
workspace:
|
2019-02-27 21:53:45 +00:00
|
|
|
base: /drone/src
|
|
|
|
path: xoxys.nginx
|
2019-02-27 15:29:57 +00:00
|
|
|
|
2019-02-27 21:47:08 +00:00
|
|
|
steps:
|
2019-02-26 14:13:50 +00:00
|
|
|
# - name: ansible-latest
|
|
|
|
# image: python:2.7
|
|
|
|
# pull: always
|
|
|
|
# commands:
|
|
|
|
# - pip install ansible ansible-later -q
|
|
|
|
# - git clone https://gitea.rknet.org/ansible/ansible-later-policy.git ~/policy
|
|
|
|
# - git ls-files *[^LICENSE,.md] | xargs ansible-later -c ~/policy/config.ini
|
|
|
|
# depends_on: [ clone ]
|
|
|
|
|
|
|
|
# - name: ansible-master
|
|
|
|
# image: python:2.7
|
|
|
|
# pull: always
|
|
|
|
# commands:
|
|
|
|
# - pip install ansible ansible-later -q
|
|
|
|
# - git clone https://gitea.rknet.org/ansible/ansible-later-policy.git ~/policy
|
|
|
|
# - git ls-files *[^LICENSE,.md] | xargs ansible-later -c ~/policy/config.ini
|
|
|
|
# depends_on: [ clone ]
|
2019-01-09 19:57:15 +00:00
|
|
|
|
2019-02-26 14:13:50 +00:00
|
|
|
- name: molecule
|
2019-02-27 10:22:43 +00:00
|
|
|
image: quay.io/ansible/molecule
|
2019-01-12 12:49:56 +00:00
|
|
|
pull: always
|
2019-02-27 10:21:12 +00:00
|
|
|
environment:
|
2019-02-27 11:04:35 +00:00
|
|
|
GCE_SSH_KEY:
|
|
|
|
from_secret: gce_ssh_key
|
|
|
|
GCE_SERVICE_ACCOUNT_EMAIL:
|
|
|
|
from_secret: gce_service_account_email
|
|
|
|
GCE_PROJECT_ID:
|
|
|
|
from_secret: gce_project_id
|
|
|
|
GCE_CREDENTIALS_JSON:
|
|
|
|
from_secret: gce_credentials_json
|
2019-02-27 13:06:42 +00:00
|
|
|
GCE_SSH_USER:
|
|
|
|
from_secret: gce_ssh_user
|
2019-02-27 11:04:35 +00:00
|
|
|
GCE_CREDENTIALS_FILE: $HOME/ansible-testing.json
|
2019-02-27 15:18:08 +00:00
|
|
|
ANSIBLE_TIMEOUT: 60
|
2019-02-27 21:53:45 +00:00
|
|
|
ANSIBLE_ROLES_PATH: /drone/src
|
2019-01-09 19:57:15 +00:00
|
|
|
commands:
|
2019-02-27 15:18:08 +00:00
|
|
|
- pwd
|
|
|
|
- ls -la
|
2019-02-27 21:53:45 +00:00
|
|
|
- mkdir $HOME/.ssh
|
|
|
|
- echo "$GCE_SSH_KEY" > $HOME/.ssh/google_compute_engine
|
|
|
|
- chmod 600 $HOME/.ssh/google_compute_engine
|
|
|
|
- echo "$GCE_CREDENTIALS_JSON" > $HOME/ansible-testing.json
|
|
|
|
- pip install apache-libcloud pycrypto --user
|
|
|
|
- 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
|