Skip to content

Commit c8fca7b

Browse files
authored
Add end-to-end Prow Job launcher for AWS tests (#1118)
1 parent f8a640d commit c8fca7b

2 files changed

Lines changed: 26 additions & 0 deletions

File tree

.prow/config.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,29 @@ presubmits:
214214
secretName: feast-service-account
215215

216216

217+
- name: test-end-to-end-aws
218+
decorate: true
219+
always_run: true
220+
spec:
221+
containers:
222+
- image: amazon/aws-cli
223+
command: [ "infra/scripts/test-end-to-end-aws.sh" ]
224+
resources:
225+
requests:
226+
cpu: "2"
227+
memory: "2048Mi"
228+
env:
229+
- name: AWS_ACCESS_KEY_ID
230+
valueFrom:
231+
secretKeyRef:
232+
name: feast-aws-creds
233+
key: AWS_ACCESS_KEY_ID
234+
- name: AWS_SECRET_ACCESS_KEY
235+
valueFrom:
236+
secretKeyRef:
237+
name: feast-aws-creds
238+
key: AWS_SECRET_ACCESS_KEY
239+
217240
postsubmits:
218241
feast-dev/feast:
219242
- name: publish-python-sdk
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/usr/bin/env bash
2+
3+
aws sts get-caller-identity

0 commit comments

Comments
 (0)