forked from gardener/test-infra
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconformanceTestgrid.yaml
More file actions
50 lines (45 loc) · 1.28 KB
/
conformanceTestgrid.yaml
File metadata and controls
50 lines (45 loc) · 1.28 KB
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
# SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and Gardener contributors
#
# SPDX-License-Identifier: Apache-2.0
kind: TestDefinition
metadata:
name: conformance-testgrid
spec:
owner: gardener-oq@listserv.sap.com
recipientsOnFailure:
- gardener-oq@listserv.sap.com
description: Run kubernetes conformance tests and push result files (e2e.log and junit_01.xml) to testgrid repository.
activeDeadlineSeconds: 10800
behavior: ["serial"]
config:
- type: env
name: PUBLISH_RESULTS_TO_TESTGRID
value: "true"
- type: env
name: GOOGLE_APPLICATION_CREDENTIALS
value: "/tmp/secrets/gardener-logs-conformance-tests.json"
- type: file
name: GCLOUD_CREDENTIAL
path: /tmp/secrets/gardener-logs-conformance-tests.json
valueFrom:
secretKeyRef:
name: testgrid-gcs-secret
key: gcloud.json
- type: env
name: GINKGO_PARALLEL
value: "false"
- type: env
name: HYDROPHONE_VERSION
value: "787b0cfa5cfe503d247f88595ff95b8f50eba1b7"
command: [bash, -c]
args:
- >-
export E2E_EXPORT_PATH=$TM_EXPORT_PATH &&
export E2E_KUBECONFIG_PATH=$TM_KUBECONFIG_PATH/shoot.config &&
go run ./conformance-tests
image: golang:1.26.0
resources:
requests:
memory: "500Mi"
limits:
memory: "8Gi"