Skip to content

Commit

Permalink
Allow node to node communication
Browse files Browse the repository at this point in the history
Otherwise:
* Executors can't report back to their driver
* The notebook-service can't mount the notebook-storage-server volume
  • Loading branch information
Julien Dumazert authored and thorsteinnth committed Jul 27, 2022
1 parent c6c13ab commit 1f07291
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
8 changes: 8 additions & 0 deletions examples/from-private-vpc/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,14 @@ module "eks" {
cidr_blocks = ["0.0.0.0/0"]
ipv6_cidr_blocks = ["::/0"]
}
ingress_self_all_to_all = {
description = "Node to node all traffic"
protocol = "-1"
from_port = 0
to_port = 0
type = "ingress"
self = true
}
}

}
Expand Down
8 changes: 8 additions & 0 deletions examples/from-scratch/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,14 @@ module "eks" {
cidr_blocks = ["0.0.0.0/0"]
ipv6_cidr_blocks = ["::/0"]
}
ingress_self_all_to_all = {
description = "Node to node all traffic"
protocol = "-1"
from_port = 0
to_port = 0
type = "ingress"
self = true
}
}

}
Expand Down
8 changes: 8 additions & 0 deletions examples/import-eks-cluster/eks-cluster/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,14 @@ module "eks" {
cidr_blocks = ["0.0.0.0/0"]
ipv6_cidr_blocks = ["::/0"]
}
ingress_self_all_to_all = {
description = "Node to node all traffic"
protocol = "-1"
from_port = 0
to_port = 0
type = "ingress"
self = true
}
}

}
Expand Down

0 comments on commit 1f07291

Please sign in to comment.