https://github.com/kubeflow/katib
Raw File
Tip revision: 55a1faab05d897a508192382147c83e788f6f15d authored by Richard Liu on 08 May 2019, 20:38:36 UTC
Move ObjectiveSpec definition to Trial CRD
Tip revision: 55a1faa
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