Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion prow_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,6 @@ workflows:
- scripts/v1beta1/*
- vendor/*
- prow_config.yaml
- Makefile
params:
registry: 527798164940.dkr.ecr.us-west-2.amazonaws.com
registry: 809251082950.dkr.ecr.us-west-2.amazonaws.com
11 changes: 4 additions & 7 deletions test/workflows/components/workflows-v1beta1.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
local kubeflowTestingPy = srcRootDir + "/kubeflow/testing/py";

// testWorkerImage is the main worker image to execute workflow.
local testWorkerImage = "527798164940.dkr.ecr.us-west-2.amazonaws.com/aws-kubeflow-ci/test-worker:latest";
local testWorkerImage = "public.ecr.aws/j1r0q0g6/kubeflow-testing:latest";
// kanikoExecutorImage is the image for Kaniko to build Katib images.
local kanikoExecutorImage = "gcr.io/kaniko-project/executor:v1.0.0";
// pythonImage is the image to run Katib Python unit test.
Expand Down Expand Up @@ -80,13 +80,12 @@
buildTemplate(step_name, image, command):: {
name: step_name,
// Each container can be alive for 40 minutes.
activeDeadlineSeconds: 2400,
retryStrategy: {
limit: 3,
limit: "3",
retryPolicy: "Always",
backoff: {
duration: 1,
factor: 2,
duration: "1",
factor: "2",
maxDuration: "1m",
},
},
Expand Down Expand Up @@ -178,8 +177,6 @@
},
spec: {
entrypoint: "e2e",
// Cleanup workflow after 5 days.
ttlSecondsAfterFinished: 432000,
volumes: [
{
name: "github-token",
Expand Down