-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactions.yaml
35 lines (33 loc) · 989 Bytes
/
actions.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Copyright 2022 HUNT Cloud
# See LICENSE file for licensing details.
#
# Learn more about actions at: https://juju.is/docs/sdk/actions
ansible-playbook:
description: Run ansible playbook
parallel: false
params:
tags:
description: "Comma separate string of tags. Only run plays and tasks tagged with these values."
type: string
extra:
description: "Json encoded string with extra variables for playbook"
type: string
diff:
description: "Log ansible diff (enable with: diff=1)"
type: integer
minimum: 0
maximum: 1
check:
description: "Use ansible check mode - dry run (enable with: check=1)"
type: integer
minimum: 0
maximum: 1
verbosity:
description: |
Set ansible logging verbosity from 1 to 6 (default: 0)
Setting verbosity=4 is equivalent of adding -vvvv after ansible-playbook command.
type: integer
minimum: 0
maximum: 6
required:
- tags