mirror of
https://github.com/ItzCrazyKns/Perplexica.git
synced 2025-08-13 11:18:42 +00:00
No auth on root route for health checks, fix suggestions request
This commit is contained in:
@ -75,6 +75,9 @@ resource "kubernetes_service" "searxng_service" {
|
||||
metadata {
|
||||
name = "searxng-service"
|
||||
namespace = "default"
|
||||
annotations = {
|
||||
"networking.gke.io/load-balancer-type" = "Internal" # Remove to create an external loadbalancer
|
||||
}
|
||||
}
|
||||
|
||||
spec {
|
||||
@ -87,7 +90,7 @@ resource "kubernetes_service" "searxng_service" {
|
||||
target_port = var.search_port
|
||||
}
|
||||
|
||||
type = "ClusterIP"
|
||||
type = "LoadBalancer"
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user