https://github.com/owncloud-ci/drone-ansible
Drone plugin to provision via Ansible
https://github.com/owncloud-ci/drone-ansible
drone drone-plugin
Last synced: 6 months ago
JSON representation
Drone plugin to provision via Ansible
- Host: GitHub
- URL: https://github.com/owncloud-ci/drone-ansible
- Owner: owncloud-ci
- License: apache-2.0
- Created: 2021-01-26T11:47:32.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2025-12-30T17:02:21.000Z (6 months ago)
- Last Synced: 2026-01-02T14:44:59.637Z (6 months ago)
- Topics: drone, drone-plugin
- Language: Go
- Homepage: https://hub.docker.com/r/owncloudci/drone-ansible
- Size: 368 KB
- Stars: 4
- Watchers: 0
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# drone-ansible
[](https://drone.owncloud.com/owncloud-ci/drone-ansible)
[](https://hub.docker.com/r/owncloudci/drone-ansible)
[](https://github.com/owncloud-ci/drone-ansible/graphs/contributors)
[](https://github.com/owncloud-ci/drone-ansible)
[](https://github.com/owncloud-ci/drone-ansible/blob/main/LICENSE)
Drone plugin to provision infrastructure with [Ansible](https://www.ansible.com/).
## Versioning
The tags follow the major version of Docker, e.g. `8`, and the minor and patch parts reflect the `version` of the plugin. A full example would be `8.5.2`. Minor versions can introduce breaking changes, while patch versions can be considered non-breaking.
## Usage
```yaml
kind: pipeline
type: docker
name: default
steps:
- name: ansible
image: owncloudci/drone-ansible
settings:
playbook: deployment/playbook.yml
private_key:
from_secret: ansible_private_key
inventory: deployment/hosts.yml
```
## Build
Build the binary with the following command:
```console
make build
```
Build the Docker image with the following command:
```console
docker build --file Dockerfile.multiarch --tag owncloudci/drone-ansible .
```
## Test
```console
docker run --rm \
-e PLUGIN_PRIVATE_KEY="$(cat ~/.ssh/id_rsa)" \
-e PLUGIN_PLAYBOOK="deployment/playbook.yml" \
-e PLUGIN_INVENTORY="deployment/hosts.yml" \
-v $(pwd):$(pwd) \
-w $(pwd) \
owncloudci/drone-ansible --dry-run
```
## Releases
Create and push the new tag to trigger the CI release process:
```console
git tag v2.10.3
git push origin v2.10.3
```
## License
This project is licensed under the Apache 2.0 License - see the [LICENSE](https://github.com/owncloud-ci/drone-ansible/blob/main/LICENSE) file for details.
## Copyright
```text
Copyright (c) 2022 ownCloud GmbH
```