Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ServiceCatalog tests against latest k8s version #17622

Merged
merged 1 commit into from
May 20, 2020
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -37,19 +37,67 @@ presubmits:
# docker-in-docker needs privileged mode
securityContext:
privileged: true
- name: pull-service-catalog-test-e2e
- name: pull-service-catalog-test-e2e-k8s-1-16-9
<<: *build_image_cfg
labels:
preset-dind-enabled: "true"
preset-kind-volume-mounts: "true"
# Setting that job optional to check how it behaves
optional: true
spec:
containers:
- image: gcr.io/k8s-testimages/kubekins-e2e:v20200513-7c0e31a-master
command:
# generic runner script, handles DIND, bazelrc for caching, etc.
- runner.sh
env:
- name: KUBERNETES_VERSION
value: "v1.16.9"
args:
- make
- test-e2e
# docker-in-docker needs privileged mode
securityContext:
privileged: true
- name: pull-service-catalog-test-e2e-k8s-1-17-5
<<: *build_image_cfg
labels:
preset-dind-enabled: "true"
preset-kind-volume-mounts: "true"
optional: true
spec:
containers:
- image: gcr.io/k8s-testimages/kubekins-e2e:v20200513-7c0e31a-master
command:
# generic runner script, handles DIND, bazelrc for caching, etc.
- runner.sh
env:
- name: KUBERNETES_VERSION
value: "v1.17.5"
args:
- make
- test-e2e
# docker-in-docker needs privileged mode
securityContext:
privileged: true
- name: pull-service-catalog-test-e2e-k8s-1-18-2
<<: *build_image_cfg
labels:
preset-dind-enabled: "true"
preset-kind-volume-mounts: "true"
optional: true
# Run only on PR created to master branch. K8s in version 1.18 is not supported for
# legacy (v0.2.x) Service Catalog.
branches:
- master
spec:
containers:
- image: gcr.io/k8s-testimages/kubekins-e2e:v20200513-7c0e31a-master
command:
# generic runner script, handles DIND, bazelrc for caching, etc.
- runner.sh
env:
- name: KUBERNETES_VERSION
value: "v1.18.2"
args:
- make
- test-e2e
Expand Down