Skip to content
This repository has been archived by the owner on Jul 19, 2024. It is now read-only.

Commit

Permalink
creation was ending after 2m due to low connection timeout, bump to 300s
Browse files Browse the repository at this point in the history
  • Loading branch information
displague committed Oct 20, 2018
1 parent b549d92 commit 653c58c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions master.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ resource "linode_instance" "k8s_master" {

connection {
user = "core"
timeout = "30s"
timeout = "300s"
}
}

Expand All @@ -41,7 +41,7 @@ resource "linode_instance" "k8s_master" {

connection {
user = "core"
timeout = "30s"
timeout = "300s"
}
}

Expand All @@ -64,7 +64,7 @@ resource "linode_instance" "k8s_master" {

connection {
user = "core"
timeout = "30s"
timeout = "300s"
}
}

Expand Down
6 changes: 3 additions & 3 deletions nodes.tf
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ resource "linode_instance" "k8s_node" {

connection {
user = "core"
timeout = "30s"
timeout = "300s"
}
}

Expand All @@ -48,7 +48,7 @@ resource "linode_instance" "k8s_node" {

connection {
user = "core"
timeout = "30s"
timeout = "300s"
}
}

Expand All @@ -61,7 +61,7 @@ resource "linode_instance" "k8s_node" {

connection {
user = "core"
timeout = "30s"
timeout = "300s"
host = "${linode_instance.k8s_master.0.ip_address}"
}
}
Expand Down

0 comments on commit 653c58c

Please sign in to comment.