We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8a640d commit c8fca7bCopy full SHA for c8fca7b
2 files changed
.prow/config.yaml
@@ -214,6 +214,29 @@ presubmits:
214
secretName: feast-service-account
215
216
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
236
237
238
+ key: AWS_SECRET_ACCESS_KEY
239
+
240
postsubmits:
241
feast-dev/feast:
242
- name: publish-python-sdk
infra/scripts/test-end-to-end-aws.sh
@@ -0,0 +1,3 @@
1
+#!/usr/bin/env bash
2
3
+aws sts get-caller-identity
0 commit comments