Skip to content

Commit

Permalink
add sleep
Browse files Browse the repository at this point in the history
  • Loading branch information
yordanovsstoyan committed Nov 12, 2024
1 parent 7868ee1 commit 43f8a3f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eks.tf
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,15 @@ module "eks" {
source_cluster_security_group = true
description = "Allow access from control plane to webhook port of AWS load balancer controller"
},
metrics-server_ingress = {
metrics_server_ingress = {
description = "communication between control plane and the metrics-server endpoint"
protocol = "tcp"
from_port = "4443"
to_port = "4443"
type = "ingress"
source_cluster_security_group = true
},
metrics-server_pod_ingress = {
metrics_server_pod_ingress = {
description = "communication between the metrics-server pod and the kubelet running on each worker node"
protocol = "tcp"
from_port = "10250"
Expand Down
1 change: 1 addition & 0 deletions mysql-connect-app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@
if connection:
connection.close()
print("Connection closed.")
time.sleep(100000)

0 comments on commit 43f8a3f

Please sign in to comment.