-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheditions.yaml
69 lines (60 loc) · 1.64 KB
/
editions.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# file contains setting for werf render for different editions
editions:
- name: CE
# path to version map file. Can be empty if version map does not exist
versionMapFile: "candi/version_map.yml"
# path to dir with modules
# path should contain next files:
# values-default.yaml
# values-managed.yaml
# values-minimal.yaml
modulesDir: "modules"
# available terraform providers for edition. Can be empty for edition
terraformProviders:
# key in terraform_versions.yaml file
- aws
- azure
- gcp
- yandex
# skip adding fix imports for release. need only for CE edition in general case
skipFixingImports: true
# skip collect images. Unfortunately we cannot handle error from .Files.Glob
# for some editions we cannot have any images
# skipCollectImages: true
# settings for tools/build.go
buildIncludes:
# skipping write build includes candi-%s.yaml file for edition
skipCandi: true
# skipping write build includes files:
# modules-%s.yaml
# modules-with-exclude-%s.yaml
# modules-with-dependencies-%s.yaml
# for edition
skipModules: true
- name: BE
versionMapFile: "ee/be/candi/version_map.yml"
modulesDir: "ee/be/modules"
# exclude modules from templates and images
excludeModules:
- ceph-csi
- openvpn
- name: SE
modulesDir: "ee/se/modules"
excludeModules:
- dashboard
- name: SE-plus
modulesDir: "ee/se-plus/modules"
terraformProviders:
- vsphere
- ovirt
excludeModules:
- dashboard
- name: EE
modulesDir: "ee/modules"
terraformProviders:
- openstack
- vcd
- decort
- huaweicloud
- name: FE
modulesDir: "ee/fe/modules"