This message was deleted.
# opni
a
This message was deleted.
b
Hi - the list of users here is based on the role bindings you have created. in this mode, it will allow you to impersonate any user ("subject") that you have defined in any role binding. the collection of all users will be populated in this list.
e
Great, works now! thanks @brief-jordan-43130!
🙌 1
c
Would you share your ingress manifest?
e
@creamy-wolf-46823
Copy code
apiVersion: <http://networking.k8s.io/v1|networking.k8s.io/v1>
kind: Ingress
metadata:
  annotations:
  labels:
    app: grafana
  name: grafana
  namespace: <YOUR_OPNI_NAME_SPACE>
spec:
  rules:
  - host: <YOUR_GRAFANA_HOSTNAME_HERE>
    http:
      paths:
      - backend:
          service:
            name: grafana-service
            port:
              number: 3000
        path: /
        pathType: ImplementationSpecific
you need to put in your opni
namespace
, grafana hostname
host
, and double check the service name (
name: grafana-service
)
c
Thanks...stripping out the tls-related properties from my ingress resource fixed the redirect problems I was having with the noauth provider.
👍 1