been finding a way to expose signoz frontend, but ...
# support
a
been finding a way to expose signoz frontend, but it hasnt been working,
Copy code
frontend:
  name: "frontend"
  replicaCount: 1
  service:
    type: LoadBalancer
p
try exposing using ingress. You’ll find a lot of tuts online for that
a
thank you, did this, but i am faced with a blank page now
checking console, it shows 404 in the logs via console
Copy code
frontend:
  name: "frontend"
  replicaCount: 1
  service:
    type: ClusterIP
    port: 3301

  ingress:
    enabled: true
    className: "alb"
    annotations:
      <http://alb.ingress.kubernetes.io/scheme|alb.ingress.kubernetes.io/scheme>: internet-facing
    hosts:
      - host: <http://observer.domain.com|observer.domain.com>
        paths:
          - path: /
            pathType: ImplementationSpecific
            port: 3301