Skip to content

Commit

Permalink
E2E: CSI driver provisioning (#9443)
Browse files Browse the repository at this point in the history
* e2e/csi: wait longer for plugins to become healthy

Plugins are Docker containers, and as such sometimes we get delays in startup
due to pulling from the registry and this is a source of test flakiness. Give
the plugins a little longer to start up.

* e2e/csi: version bump for AWS EBS plugins
  • Loading branch information
tgross authored Nov 25, 2020
1 parent 289d91d commit c83352f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion e2e/csi/csi.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func init() {

const ns = ""

var pluginWait = &e2e.WaitConfig{Interval: 5 * time.Second, Retries: 24} // 2min
var pluginWait = &e2e.WaitConfig{Interval: 5 * time.Second, Retries: 36} // 3min
var reapWait = &e2e.WaitConfig{Interval: 5 * time.Second, Retries: 36} // 3min

func (tc *CSIVolumesTest) BeforeAll(f *framework.F) {
Expand Down
2 changes: 1 addition & 1 deletion e2e/csi/input/plugin-aws-ebs-controller.nomad
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ job "plugin-aws-ebs-controller" {
driver = "docker"

config {
image = "amazon/aws-ebs-csi-driver:v0.6.0"
image = "amazon/aws-ebs-csi-driver:v0.7.1"

args = [
"controller",
Expand Down
2 changes: 1 addition & 1 deletion e2e/csi/input/plugin-aws-ebs-nodes.nomad
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ job "plugin-aws-ebs-nodes" {
driver = "docker"

config {
image = "amazon/aws-ebs-csi-driver:v0.6.0"
image = "amazon/aws-ebs-csi-driver:v0.7.1"

args = [
"node",
Expand Down

0 comments on commit c83352f

Please sign in to comment.