From e5a3707566123a1c08f70282c430cdf88962e294 Mon Sep 17 00:00:00 2001 From: Willem Pienaar Date: Fri, 30 Oct 2020 18:51:20 +0800 Subject: [PATCH] Add e2e aws prow job --- .prow/config.yaml | 23 +++++++++++++++++++++++ infra/scripts/test-end-to-end-aws.sh | 3 +++ 2 files changed, 26 insertions(+) create mode 100755 infra/scripts/test-end-to-end-aws.sh diff --git a/.prow/config.yaml b/.prow/config.yaml index d1916b3fbd3..ac589b28228 100644 --- a/.prow/config.yaml +++ b/.prow/config.yaml @@ -214,6 +214,29 @@ presubmits: secretName: feast-service-account + - name: test-end-to-end-aws + decorate: true + always_run: true + spec: + containers: + - image: amazon/aws-cli + command: [ "infra/scripts/test-end-to-end-aws.sh" ] + 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 + postsubmits: feast-dev/feast: - name: publish-python-sdk diff --git a/infra/scripts/test-end-to-end-aws.sh b/infra/scripts/test-end-to-end-aws.sh new file mode 100755 index 00000000000..c8a98541d7d --- /dev/null +++ b/infra/scripts/test-end-to-end-aws.sh @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +aws sts get-caller-identity \ No newline at end of file