Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ansible 2.16: add docker dependency #342

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .ansible-lint
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
profile: production
warn_list:
- role-name # until role name is fixed on galaxy https://github.com/riemers/ansible-gitlab-runner/pull/312
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ See the [config for more options](https://github.com/riemers/ansible-gitlab-runn

Example Playbook
----------------

```yaml
- hosts: all
become: true
Expand All @@ -92,6 +93,7 @@ Example Playbook
```

Inside `vars/main.yml`

```yaml
gitlab_runner_coordinator_url: https://gitlab.com
gitlab_runner_registration_token: '12341234'
Expand All @@ -101,6 +103,7 @@ gitlab_runner_runners:
token: 'abcd'
# url is an optional override to the global gitlab_runner_coordinator_url
url: 'https://my-own-gitlab.mydomain.com'
# each executor can have optional dependencies e.g: "docker" -> "community.docker"
executor: docker
docker_image: 'alpine'
tags:
Expand Down
4 changes: 4 additions & 0 deletions meta/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,7 @@ galaxy_info:
- ci

dependencies: []
# optional dependency: docker-executor
# - community.docker
# optional dependency: windows host
# - ansible.windows
Loading