-
Notifications
You must be signed in to change notification settings - Fork 40.1k
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
E2e tests for GKE cluster with local SSD. #24884
Conversation
}) | ||
}) | ||
|
||
func createNodePoolWIthLocalSsds(nodePoolName string) { |
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.
typo: WIth
PTAL |
You'll have to redo the job config changes against the test-infra repo. Sorry for the inconvenience. |
CLAs look good, thanks! |
@@ -0,0 +1,107 @@ | |||
/* | |||
Copyright 2015 The Kubernetes Authors All rights reserved. |
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.
2016
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.
Done.
Looks fine to me. I would ask someone more knowledgeable about go for a review too. Can this test be run in parallel with other tests? If not, you should tack |
@vulpecula |
func createNodePoolWithLocalSsds(nodePoolName string) { | ||
framework.Logf("Create node pool: %s with local SSDs in cluster: %s ", | ||
nodePoolName, framework.TestContext.CloudConfig.Cluster) | ||
out, err := exec.Command("gcloud", "alpha", "container", "node-pools", "create", |
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.
Can you file an issue against me to change this to the GA track? gcloud changes should be going out soon.
@k8s-bot test this [submit-queue is verifying that this PR is safe to merge] |
GCE e2e build/test passed for commit e676fc5. |
Automatic merge from submit-queue |
The test cover node pool with local SSD creation and scheduling a pod that writes and reads from it. Pod access local disk via hostPath.