Skip to content

Commit

Permalink
Fixed some typos and specs in webapp tofu deployment.
Browse files Browse the repository at this point in the history
  • Loading branch information
pantierra committed Jan 6, 2025
1 parent b930c3c commit 8477042
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
8 changes: 4 additions & 4 deletions gfts-track-reconstruction/jupyterhub/tofu/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -408,20 +408,20 @@ resource "kubernetes_service" "ingress" {
}
}
spec {
type = "loadbalancer"
external_traffic_policy = "local"
type = "LoadBalancer"
external_traffic_policy = "Local"
load_balancer_ip = openstack_networking_floatingip_v2.floating_ip.address
port {
name = "http"
port = 80
target_port = 80
protocol = "tcp"
protocol = "TCP"
}
port {
name = "https"
port = 443
target_port = 443
protocol = "tcp"
protocol = "TCP"
}
selector = {
"app.kubernetes.io/name" = "webapp-ingress-nginx"
Expand Down
3 changes: 2 additions & 1 deletion webapp/deploy/helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ service:

ingress:
enabled: true
installController: true
namespace: webapp
installController: false
className: "webapp-nginx"
annotations:
cert-manager.io/issuer: letsencrypt-webapp
Expand Down

0 comments on commit 8477042

Please sign in to comment.