-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathclusters.example.yaml
146 lines (137 loc) · 3.6 KB
/
clusters.example.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
action: "create" # destroy, can passed also to CLI with --action
registry_config_file: !ENV "${HOME}/registry-config.json"
parallel: True
clusters_install_data_directory: "/tmp/clusters-data"
s3_bucket_name: "openshift-cli-installer"
s3_bucket_path: "openshift-ci"
ocm_token: !ENV "${OCM_TOKEN}"
ssh_key_file: !ENV "${HOME}/.ssh/id_rsa.pub"
docker_config_file: !ENV "${HOME}/.docker/config.json"
aws_access_key_id: !ENV "${AWS_ACCESS_KEY}"
aws_secret_access_key: !ENV "${AWS_SECRET_ACCESS_KEY}"
aws_account_id: !ENV "${AWS_ACCOUNT_ID}"
gcp_service_account_file: !ENV "${HOME}/gcp-service-account.json"
must_gather_output_dir: null
clusters:
# AWS OSD cluster
- name: aws-osd-c1 # name-prefix can be passed instead of name
platform: aws-osd
region: us-east-2
version: "4.13"
channel-group: stable
compute-machine-type: m5.4xlarge
timeout: 90m
replicas: 2
fips: True
ocm-env: stage
expiration-time: 4h
# AWS OSD cluster with auto-region option
- name: aws-osd-c2
platform: aws-osd
auto-region: True
version: "4.13"
channel-group: stable
compute-machine-type: m5.4xlarge
timeout: 90m
replicas: 2
fips: True
ocm-env: stage
expiration-time: 4h
# GCP OSD cluster
- name: gcp-osd-c1
platform: gcp-osd
region: us-east1
version: "4.13"
channel-group: stable
compute-machine-type: custom-4-16384
timeout: 90m
replicas: 2
fips: True
ocm-env: stage
expiration-time: 4h
acm-observability: True
acm-observability-storage-type: s3
acm-observability-s3-access-key-id: !ENV "${AWS_ACCESS_KEY_ID}"
acm-observability-s3-secret-access-key: !ENV "${AWS_SECRET_ACCESS_KEY}"
acm-observability-s3-region: us-east-1
# Rosa cluster with ACM and observability deployed and attach `rosa-c2` cluster to the ACM hub
- name: rosa-c1
platform: rosa
region: us-east-2
version: "4.13"
channel-group: stable
compute-machine-type: m5.4xlarge
timeout: 90m
replicas: 2
fips: True
ocm-env: stage
acm: True
acm-observability: True
acm-observability-storage-type: s3
acm-clusters:
- rosa-c2
# Rosa cluster (Will be attahced to `rosa-c1` ACM hub)
- name: rosa-c2
platform: rosa
region: us-east-2
version: "4.13"
channel-group: stable
compute-machine-type: m5.4xlarge
timeout: 90m
replicas: 2
fips: True
ocm-env: stage
# Hypershift cluster
- name: hyper-c1
platform: hypershift
region: us-west-2
version: "4.13"
channel-group: stable
compute-machine-type: m5.4xlarge
timeout: 90m
replicas: 2
ocm-env: stage
expiration-time: 4h
private-subnets:
- 10.0.1.0/24
- 10.0.2.0/24
public-subnets:
- 10.0.101.0/24
- 10.0.102.0/24
cidr: 10.0.0.0/16
# AWS IPI cluster
- name: aws-ipi-c1
base-domain: aws.domain.example.com
platform: aws
region: us-east-2
version: "4.13"
stream: stable
timeout: 4h
worker-replicas: 2
worker-flavor: m5.4xlarge
worker-root-disk-size: 128
log_level: info # optional, default: "error", supported options are debug, info, warn, error
# GCP IPI cluster
- name: gcp-ipi-c1
base-domain: gcp.domain.example.com
platform: gcp
region: us-east1
version: "4.13"
stream: stable
timeout: 4h
worker-replicas: 2
worker-flavor: custom-4-16384
worker-root-disk-size: 128
log_level: info # optional, default: "error", supported options are debug, info, warn, error
# AWS IPI cluster with auto-region option
- name: aws-ipi-c2
base-domain: aws.domain.example.com
platform: aws
auto-region: True
version: "4.13"
stream: stable
timeout: 4h
worker-replicas: 2
worker-flavor: m5.4xlarge
worker-root-disk-size: 128
log_level: info # optional, default: "error", supported options are debug, info, warn, error