vm-ansible/.drone.yml

23 lines
554 B
YAML
Raw Permalink Normal View History

2022-05-28 20:37:56 +02:00
---
2022-05-28 19:58:38 +02:00
kind: pipeline
type: docker
name: ansible
steps:
- name: ansible nightly run
2023-07-25 14:46:24 +02:00
image: alpinelinux/ansible
2022-05-28 20:30:11 +02:00
environment:
ANSIBLE_HOST_KEY_CHECKING: "False"
ANSIBLE_PRIVATE_KEY_FILE: "/drone/src/id_rsa"
2023-03-05 18:32:21 +01:00
ANSIBLE_CONFIG: "/drone/src/ansible.cfg"
2023-03-05 22:08:45 +01:00
CLOUDFLARE_TOKEN:
from_secret: CLOUDFLARE_TOKEN
SSH_KEY:
from_secret: SSH_KEY
2023-07-25 14:46:24 +02:00
commands:
2023-08-30 23:49:57 +02:00
- echo "$SSH_KEY" > $PWD/id_rsa
- chmod 0600 $PWD/id_rsa
2023-07-25 14:46:24 +02:00
- ansible-galaxy collection install -r requirements.yaml
- ansible-playbook -i inventory.yaml nightly.yaml
2023-08-31 00:15:01 +02:00
...