-
Notifications
You must be signed in to change notification settings - Fork 20
/
settings.yml
54 lines (44 loc) · 1.55 KB
/
settings.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
47
48
49
50
51
52
53
54
---
dci_agent: openshift # needed for dci-agent-ctl
dci_topic: OCP-4.16
# -- Atttributes of the job --
#dci_name: "ocp-install"
#dci_configuration: "my-conf"
# Remove "debug" when your jobs are working to get them in the
# statistics:
dci_tags: ["debug"]
# -- Components --
# If you don't specify dci_components or dci_components_by_query
# you will get the latest components associated with that topic.
#
# You can specify components via the ID found from dcictl component-list
#dci_components: ['c364f2a7-2d25-4b91-9773-3448fb48d0a0']
# Or you can query by version or type and tags
#dci_components_by_query: ['version:4.Y.Z']
#dci_components_by_query: ['type:ocp,tags:ocp-vanilla-4.Y-simple-ok']
#dci_components_by_query: ['type:ocp,tags:build:ga']
#If you specify both the components list will be combined.
# dci-openshift-agent settings
# defaults from /usr/share/dci-openshift-agent/group_vars/all
# By default we don't run the conformance tests
#dci_openshift_agent_conformance: openshift-conformance-minimal
# By default disconnected mode is disabled
#dci_disconnected: False
# By default we do not run cnf tests
# dci_openshift_agent_cnf_tests_mode: non-disconnected
# If you want, you can define a custom resource definition list
# dci_ocp_custom_resources:
# - name: my-custom-cr1
# namespace: ns1
# kind: CustomResource
# api_version: v1
# spec:
# SomeSpecKey: true
# AnotherSpecKey: "string"
# - name: my-custom-cr2
# namespace: ns2
# kind: CustomResource
# api_version: v1
# spec:
# ExampleAuthenticationKey: "password"
...