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

Commit 653c58c

Browse files
committed
creation was ending after 2m due to low connection timeout, bump to 300s
1 parent b549d92 commit 653c58c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

master.tf

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ resource "linode_instance" "k8s_master" {
3131

3232
connection {
3333
user = "core"
34-
timeout = "30s"
34+
timeout = "300s"
3535
}
3636
}
3737

@@ -41,7 +41,7 @@ resource "linode_instance" "k8s_master" {
4141

4242
connection {
4343
user = "core"
44-
timeout = "30s"
44+
timeout = "300s"
4545
}
4646
}
4747

@@ -64,7 +64,7 @@ resource "linode_instance" "k8s_master" {
6464

6565
connection {
6666
user = "core"
67-
timeout = "30s"
67+
timeout = "300s"
6868
}
6969
}
7070

nodes.tf

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ resource "linode_instance" "k8s_node" {
3030

3131
connection {
3232
user = "core"
33-
timeout = "30s"
33+
timeout = "300s"
3434
}
3535
}
3636

@@ -48,7 +48,7 @@ resource "linode_instance" "k8s_node" {
4848

4949
connection {
5050
user = "core"
51-
timeout = "30s"
51+
timeout = "300s"
5252
}
5353
}
5454

@@ -61,7 +61,7 @@ resource "linode_instance" "k8s_node" {
6161

6262
connection {
6363
user = "core"
64-
timeout = "30s"
64+
timeout = "300s"
6565
host = "${linode_instance.k8s_master.0.ip_address}"
6666
}
6767
}

0 commit comments

Comments
 (0)