-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yml
46 lines (41 loc) · 1.49 KB
/
config.yml
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
36
37
38
39
40
41
42
43
44
45
46
---
# This file defines how masters are built, dependencies and such
configuration:
# Don't apply those stages in the conffs. Useful to gain time if no host-specific configuration is done
ignore_stage_in_conffs: []
# Never upload these masters
never_upload:
- master-11-example
# Top level keys are ISO files on which to build their children
# A child (a master) is an object that follows this format:
# <master-name>:
# stages: [] # A list of stages to apply to this master
# conffs: "node01-fr*" # An ansible --limit pattern on which to build the conffs
# <sub-child>: {} # A child object. It will inherit its parent
# <other-sub-child>: {} # Another child object
#
# Protected names for masters: "name", "stages", "conffs"
"debian-11-generic-amd64.raw":
url: https://cloud.debian.org/images/cloud/bullseye/latest/debian-11-generic-amd64.raw
sha512sums: https://cloud.debian.org/images/cloud/bullseye/latest/SHA512SUMS
name: debian-11/iso
master-11-example:
stages:
- playbook.yml
master-11-example-2:
stages:
- playbook2.yml
branch: example
conffs: "backend*"
"debian-12-generic-amd64.raw":
url: https://cloud.debian.org/images/cloud/bookworm/latest/debian-12-generic-amd64.raw
sha512sums: https://cloud.debian.org/images/cloud/bookworm/latest/SHA512SUMS
name: debian-12/iso
master-12-example:
stages:
- playbook.yml
master-12-sub-example:
stages:
- playbook2.yml
branch: example
conffs: "backend*"