https://github.com/kubeflow/katib
Raw File
Tip revision: 5d7cb0472ace5821f2af482603f3880aec100a76 authored by andreyvelich on 30 April 2019, 22:12:36 UTC
Delete old client
Tip revision: 5d7cb04
prow_config.yaml
# This file configures the workflows to trigger in our Prow jobs.
# see kubeflow/testing/py/run_e2e_workflow.py
workflows:
  - app_dir: kubeflow/katib/test/workflows
    component: workflows-v1alpha1
    name: e2e-v1alpha1
    job_types:
      - presubmit
    include_dirs:
    - pkg/*
    - cmd/*
    - test/*
    params:
      registry: "gcr.io/kubeflow-ci"
  # The postsubmit run publishes the docker images to gcr.io/kubeflow-images-public      
  - app_dir: kubeflow/katib/test/workflows
    component: workflows-v1alpha1
    name: e2e-v1alpha1-release
    job_types:      
      - postsubmit
    include_dirs:
    - pkg/*
    - cmd/*
    - test/*
    params:
      registry: "gcr.io/kubeflow-images-public"
  - app_dir: kubeflow/katib/test/workflows
    component: workflows-v1alpha2
    name: e2e-v1alpha2
    job_types:
      - presubmit
    include_dirs:
    - pkg/*
    - cmd/*
    - test/*
    params:
      registry: "gcr.io/kubeflow-ci"
  - app_dir: kubeflow/katib/test/workflows
    component: workflows-v1alpha2
    name: e2e-v1alpha2-release
    job_types:
      - postsubmit
    include_dirs:
    - pkg/*
    - cmd/*
    - test/*
    params:
      registry: "gcr.io/kubeflow-images-public"
back to top