blob: 7467750e8710e141cc55dcce65b028b3c734771b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: loki-gateway
namespace: loki
annotations:
nginx.ingress.kubernetes.io/auth-type: basic
nginx.ingress.kubernetes.io/auth-secret: loki-basic-auth
nginx.ingress.kubernetes.io/auth-realm: "Loki"
spec:
tls:
- hosts:
- "*.pydis.wtf"
secretName: pydis.wtf-tls
rules:
- host: loki-gateway.pydis.wtf
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: loki-gateway
port:
number: 80
|