From a728754a77dcdc1efa0edf44f742d7138360c679 Mon Sep 17 00:00:00 2001 From: Oleg Avdeev Date: Wed, 16 Dec 2020 15:52:09 -0800 Subject: [PATCH] add prow config for spark k8s operator integration testing Signed-off-by: Oleg Avdeev --- .prow/config.yaml | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/.prow/config.yaml b/.prow/config.yaml index 1bc88ac7378..251608c970b 100644 --- a/.prow/config.yaml +++ b/.prow/config.yaml @@ -230,7 +230,32 @@ presubmits: spec: containers: - image: gcr.io/kf-feast/feast-ci:latest - command: [ "infra/scripts/codebuild_runner.py", "--location-from-prow" ] + command: [ "infra/scripts/codebuild_runner.py", "--location-from-prow", "--project-name", "feast-ci-project" ] + resources: + requests: + cpu: "2" + memory: "2048Mi" + env: + - name: AWS_ACCESS_KEY_ID + valueFrom: + secretKeyRef: + name: feast-aws-creds + key: AWS_ACCESS_KEY_ID + - name: AWS_SECRET_ACCESS_KEY + valueFrom: + secretKeyRef: + name: feast-aws-creds + key: AWS_SECRET_ACCESS_KEY + - name: AWS_DEFAULT_REGION + value: us-west-2 + - name: test-end-to-end-sparkop + decorate: true + always_run: true + max_concurrency: 1 + spec: + containers: + - image: gcr.io/kf-feast/feast-ci:latest + command: [ "infra/scripts/codebuild_runner.py", "--location-from-prow", "--project-name", "feast-ci-sparkop-project" ] resources: requests: cpu: "2"