Skip to content

Commit

Permalink
Add CI flow for serving 0.6 branch (knative#769)
Browse files Browse the repository at this point in the history
  • Loading branch information
chaodaiG authored and knative-prow-robot committed May 14, 2019
1 parent f80d3d1 commit 74bfcac
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 0 deletions.
42 changes: 42 additions & 0 deletions ci/prow/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1738,6 +1738,48 @@ periodics:
- name: test-account
secret:
secretName: test-account
- cron: "45 8 * * *"
name: ci-knative-serving-0.6-continuous
agent: kubernetes
spec:
containers:
- image: gcr.io/knative-tests/test-infra/prow-tests:stable
imagePullPolicy: Always
args:
- "--scenario=kubernetes_execute_bazel"
- "--clean"
- "--job=$(JOB_NAME)"
- "--repo=github.com/knative/serving=release-0.6"
- "--root=/go/src"
- "--service-account=/etc/test-account/service-account.json"
- "--upload=gs://knative-prow/logs"
- "--timeout=180" # Avoid overrun
- "--" # end bootstrap args, scenario args below
- "--" # end kubernetes_execute_bazel flags (consider following flags as text)
- "./hack/release.sh"
- "--nopublish"
- "--notag-release"
securityContext:
privileged: true
volumeMounts:
- name: docker-graph
mountPath: /docker-graph
- name: test-account
mountPath: /etc/test-account
readOnly: true
env:
- name: DOCKER_IN_DOCKER_ENABLED
value: "true"
- name: GOOGLE_APPLICATION_CREDENTIALS
value: /etc/test-account/service-account.json
- name: E2E_CLUSTER_REGION
value: us-central1
volumes:
- name: docker-graph
emptyDir: {}
- name: test-account
secret:
secretName: test-account
- cron: "7 */2 * * *"
name: ci-knative-serving-istio-1.0.7-mesh
agent: kubernetes
Expand Down
3 changes: 3 additions & 0 deletions ci/prow/config_knative.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,9 @@ periodics:
- branch-ci: true
release: "0.5"
cron: "35 8 * * *" # Run at 01:35PST every day (08:35 UTC)
- branch-ci: true
release: "0.6"
cron: "45 8 * * *" # Run at 01:45 PST every day (08:45 UTC)
- custom-job: istio-1.0.7-mesh
cron: "7 */2 * * *" # Run every other hour and seven minute
command:
Expand Down
7 changes: 7 additions & 0 deletions ci/testgrid/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,8 @@ test_groups:
gcs_prefix: knative-prow/logs/ci-knative-eventing-0.5-continuous
- name: ci-knative-eventing-sources-0.5-continuous
gcs_prefix: knative-prow/logs/ci-knative-eventing-sources-0.5-continuous
- name: ci-knative-serving-0.6-continuous
gcs_prefix: knative-prow/logs/ci-knative-serving-0.6-continuous
dashboards:
- name: knative-serving
dashboard_tab:
Expand Down Expand Up @@ -350,6 +352,11 @@ dashboards:
- name: eventing-sources
test_group_name: ci-knative-eventing-sources-0.5-continuous
base_options: "sort-by-name="
- name: knative-0.6
dashboard_tab:
- name: serving
test_group_name: ci-knative-serving-0.6-continuous
base_options: "sort-by-name="
dashboard_groups:
- name: knative
dashboard_names:
Expand Down

0 comments on commit 74bfcac

Please sign in to comment.