s7an-it commented on issue #275:
URL:
https://github.com/apache/incubator-devlake-helm-chart/issues/275#issuecomment-2075462866
Had to write custom ingress - disabled the one from chart and based on what
you did:
grafana.ini:
server:
domain: devlake.example.customer.com
root_url: "https://%(domain)s/grafana"
useDefaultNginx: false
```
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: devlake-ingress
namespace: devlake
annotations:
kubernetes.io/ingress.class: "nginx"
nginx.ingress.kubernetes.io/backend-protocol: "HTTP"
nginx.ingress.kubernetes.io/ssl-redirect: "false"
nginx.ingress.kubernetes.io/use-forwarded-headers: "true"
spec:
rules:
- host: devlake.example.customer.com
http:
paths:
- path: /grafana
pathType: Prefix
backend:
service:
name: devlake-grafana
port:
number: 80
- path: /
pathType: Prefix
backend:
service:
name: devlake-ui
port:
number: 4000
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]