Skip to content

Commit e8921c3

Browse files
committed
ci-operator/templates/openshift: Get e2e-aws out of us-east-1b
We're currently getting a lot of 500s there like [1]: time="2019-03-22T18:02:51Z" level=debug msg="2019-03-22T18:02:51.255Z [DEBUG] plugin.terraform-provider-aws: 2019/03/22 18:02:51 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/RunInstances Details:" time="2019-03-22T18:02:51Z" level=debug msg="2019-03-22T18:02:51.255Z [DEBUG] plugin.terraform-provider-aws: ---[ RESPONSE ]--------------------------------------" time="2019-03-22T18:02:51Z" level=debug msg="2019-03-22T18:02:51.255Z [DEBUG] plugin.terraform-provider-aws: HTTP/1.1 500 Internal Server Error" Looking at the results of this Athena query: SELECT * FROM "default"."cloudtrail_logs_cloud_trail_test_clayton" WHERE from_iso8601_timestamp(eventtime) > date_add('hour', -4, now()) AND eventname = 'RunInstances' AND errorcode = 'Server.InternalError' ORDER BY eventtime; They're all in 1b: $ for ZONE in a b c d e f g; do echo "${ZONE} $(grep -c "us-east-1${ZONE}" c128e363-4791-4049-8936-aafc6e2e36dd.csv)"; done a 0 b 181 c 0 d 0 e 0 f 0 g 0 This commit moves us to 1d instead. [1]: https://storage.googleapis.com/origin-ci-test/pr-logs/pull/operator-framework_operator-lifecycle-manager/777/pull-ci-operator-framework-operator-lifecycle-manager-master-e2e-aws-olm/1365/artifacts/e2e-aws-olm/installer/.openshift_install.log
1 parent a9d340f commit e8921c3

File tree

4 files changed

+69
-2
lines changed

4 files changed

+69
-2
lines changed

ci-operator/templates/openshift/installer/cluster-launch-installer-e2e.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,24 @@ objects:
237237
clusterID: ${CLUSTER_ID}
238238
metadata:
239239
name: ${CLUSTER_NAME}
240+
controlPlane:
241+
name: master
242+
replicas: 3
243+
platform:
244+
aws:
245+
zones:
246+
- us-east-1a
247+
- us-east-1c
248+
- us-east-1d
249+
compute:
250+
- name: worker
251+
replicas: 3
252+
platform:
253+
aws:
254+
zones:
255+
- us-east-1a
256+
- us-east-1c
257+
- us-east-1d
240258
networking:
241259
clusterNetwork:
242260
- cidr: 10.128.0.0/14

ci-operator/templates/openshift/installer/cluster-launch-installer-src.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,24 @@ objects:
231231
clusterID: ${CLUSTER_ID}
232232
metadata:
233233
name: ${CLUSTER_NAME}
234+
controlPlane:
235+
name: master
236+
replicas: 3
237+
platform:
238+
aws:
239+
zones:
240+
- us-east-1a
241+
- us-east-1c
242+
- us-east-1d
243+
compute:
244+
- name: worker
245+
replicas: 3
246+
platform:
247+
aws:
248+
zones:
249+
- us-east-1a
250+
- us-east-1c
251+
- us-east-1d
234252
networking:
235253
clusterNetwork:
236254
- cidr: 10.128.0.0/14

ci-operator/templates/openshift/openshift-ansible/cluster-launch-e2e-40.yaml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -257,11 +257,24 @@ objects:
257257
apiVersion: v1beta4
258258
baseDomain: test.ose
259259
clusterID: ${CLUSTER_ID}
260+
controlPlane:
261+
name: master
262+
replicas: ${MASTERS}
263+
platform:
264+
aws:
265+
zones:
266+
- us-east-1a
267+
- us-east-1c
268+
- us-east-1d
260269
compute:
261270
- name: worker
262271
replicas: ${WORKERS}
263-
controlPlane:
264-
- replicas: ${MASTERS}
272+
platform:
273+
aws:
274+
zones:
275+
- us-east-1a
276+
- us-east-1c
277+
- us-east-1d
265278
metadata:
266279
name: ${CLUSTER_NAME}
267280
networking:

ci-operator/templates/openshift/openshift-ansible/cluster-scaleup-e2e-40.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -322,6 +322,24 @@ objects:
322322
clusterID: ${CLUSTER_ID}
323323
metadata:
324324
name: ${CLUSTER_NAME}
325+
controlPlane:
326+
name: master
327+
replicas: 3
328+
platform:
329+
aws:
330+
zones:
331+
- us-east-1a
332+
- us-east-1c
333+
- us-east-1d
334+
compute:
335+
- name: worker
336+
replicas: 3
337+
platform:
338+
aws:
339+
zones:
340+
- us-east-1a
341+
- us-east-1c
342+
- us-east-1d
325343
networking:
326344
clusterNetwork:
327345
- cidr: 10.128.0.0/14

0 commit comments

Comments
 (0)