-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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 tests for 1.17 on kubernetes master #15290
Add tests for 1.17 on kubernetes master #15290
Conversation
Welcome @ggriffiths! |
Hi @ggriffiths. Thanks for your PR. I'm waiting for a kubernetes member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
@@ -242,6 +242,46 @@ presubmits: | |||
memory: "9000Mi" | |||
# during the tests more like 3-20m is used | |||
cpu: 2000m | |||
- name: pull-kubernetes-csi-csi-driver-host-path-1-17-on-kubernetes-master |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like you updated and ran the script, but then only committed one of the new jobs. The dind_image
variable in the script also needs to be updated, otherwise we downgrade the images in the existing jobs.
Please add this change, then re-run the script and commit all of the changes:
diff --git a/config/jobs/kubernetes-csi/gen-jobs.sh b/config/jobs/kubernetes-csi/gen-jobs.sh
index 2328891c9..72c3b9560 100755
--- a/config/jobs/kubernetes-csi/gen-jobs.sh
+++ b/config/jobs/kubernetes-csi/gen-jobs.sh
@@ -25,7 +25,7 @@ latest_stable_k8s_version="1.16.2"
latest_stable_k8s_minor_version="1.16"
# We need this image because it has Docker in Docker and go.
-dind_image="gcr.io/k8s-testimages/kubekins-e2e:v20191031-df9cbb4-master"
+dind_image="gcr.io/k8s-testimages/kubekins-e2e:v20191112-9f04410-master"
# All kubernetes-csi repos which are part of the hostpath driver example.
# For these repos we generate the full test matrix. For each entry here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah I see. I didn't run the script originally - just copied another "k8s X on master" test and updated it for 1.17.
Just updated and ran it, and committed the changes. Thanks!
2906cc3
to
f683923
Compare
Signed-off-by: Grant Griffiths <[email protected]>
f683923
to
5b38614
Compare
/lgtm |
/assign @msau42 |
args: | ||
- ./.prow.sh | ||
env: | ||
- name: CSI_PROW_KUBERNETES_VERSION |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There seems to be the deployment variable missing from this config. Or is not setting it supposed to imply "latest" deployment? cc @pohly
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not setting CSI_PROW_DEPLOYMENT
is okay.
The following code will then fall back to the deployment for the selected Kubernetes version or, if that isn't found, use the "kubernetes-latest" deployment:
/ok-to-test |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: ggriffiths, msau42 The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
@ggriffiths: Updated the
In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Signed-off-by: Grant Griffiths [email protected]