You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I want to deploy OpenLit on GKE and expose it externally via Ingress, I encounter an issue. The default health check path for the GCP Load Balancer is /, and OpenLit redirects from / with a 307 status to another page, causing the health check to fail.
However, I can resolve this issue by setting up a GCP BackendConfig. Therefore, I would like to have the ability to add custom annotations in the values.yaml service configuration.
For example:
# Kubernetes Service configuration for OpenLITservice:
# Custom annotationsannotations:
cloud.google.com/backend-config: '{"ports": {"80":"openlit-backendconfig"}}'# Type of service (e.g., LoadBalancer, NodePort)type: ClusterIP# Port on which the service is exposedport: 3000# Session affinity configurationsessionAffinity: None
Do you have any better suggestions? Or if assistance is needed, I can try to take it up.
The text was updated successfully, but these errors were encountered:
If I want to deploy OpenLit on GKE and expose it externally via Ingress, I encounter an issue. The default health check path for the GCP Load Balancer is
/
, and OpenLit redirects from/
with a 307 status to another page, causing the health check to fail.However, I can resolve this issue by setting up a GCP BackendConfig. Therefore, I would like to have the ability to add custom annotations in the
values.yaml
service configuration.For example:
Do you have any better suggestions? Or if assistance is needed, I can try to take it up.
The text was updated successfully, but these errors were encountered: