File tree Expand file tree Collapse file tree 11 files changed +37
-11
lines changed Expand file tree Collapse file tree 11 files changed +37
-11
lines changed Original file line number Diff line number Diff line change 1+ apiVersion : gateway.networking.k8s.io/v1
2+ kind : HTTPRoute
3+ metadata :
4+ name : whoami
5+ namespace : whoami
6+ spec :
7+ parentRefs :
8+ - { name: external, namespace: gateway }
9+ - { name: internal, namespace: gateway }
10+ hostnames : [ "whoami.stonegarden.dev" ]
11+ rules :
12+ - backendRefs : [ { name: whoami, port: 80 } ]
13+ matches :
14+ - path : { type: PathPrefix, value: / }
Original file line number Diff line number Diff line change @@ -4,4 +4,5 @@ kind: Kustomization
44resources :
55 - ns.yaml
66 - svc.yaml
7+ - http-route.yaml
78 - deployment.yaml
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ loadBalancer:
7878gatewayAPI :
7979 enabled : true
8080 enableAlpn : true
81- # enableAppProtocol: true
81+ enableAppProtocol : true
8282
8383envoy :
8484 prometheus :
Original file line number Diff line number Diff line change 1212 labels :
1313 app : agent
1414 spec :
15+ # dnsConfig:
16+ # nameservers:
17+ # - 10.96.0.12 # AdGuard Home
18+ # - 10.96.0.11 # Unbound
19+ # dnsPolicy: None
1520 securityContext :
1621 seccompProfile :
1722 type : RuntimeDefault
Original file line number Diff line number Diff line change 1313 matches :
1414 - headers : [ { name: Content-Type, value: application/grpc } ]
1515 - method : { service: management.ManagementService }
16- - backendRefs : [ { name: signal, port: 80 } ]
16+ - backendRefs : [ { name: signal, port: 10000 } ]
1717 matches :
1818 - headers : [ { name: Content-Type, value: application/grpc } ]
1919 - method : { service: signalexchange.SignalExchange }
Original file line number Diff line number Diff line change 2121 dnsConfig :
2222 nameservers :
2323 - 172.20.10.153 # AdGuard Home
24- - 10.96.0.12 # AdGuard Home
25- - 10.96.0.11 # Unbound
26- dnsPolicy : None
24+ # - 10.96.0.12 # AdGuard Home
25+ # - 10.96.0.11 # Unbound
26+ # dnsPolicy: None
2727 securityContext :
2828 seccompProfile :
2929 type : RuntimeDefault
Original file line number Diff line number Diff line change @@ -19,8 +19,10 @@ configMapGenerator:
1919 - RELAY_URI="rels://netbird.stonegarden.dev:443"
2020 - SIGNAL_URI="netbird.stonegarden.dev:443"
2121 - SIGNAL_PROTOCOL="https"
22- - STUN_URI="stun:coturn.stonegarden.dev:5349"
23- - TURN_URI="turn:coturn.stonegarden.dev:5349"
22+ # - STUN_URI="stun:coturn.stonegarden.dev:5349"
23+ # - TURN_URI="turn:coturn.stonegarden.dev:5349"
24+ - STUN_URI="stun:coturn:5349"
25+ - TURN_URI="turn:coturn:5349"
2426 - name : management-runtime-config
2527 namespace : netbird
2628 literals :
Original file line number Diff line number Diff line change 1010 ports :
1111 - name : http
1212 port : 80
13- appProtocol : kubernetes.io/h2c
1413 targetPort : http
14+ appProtocol : kubernetes.io/h2c
Original file line number Diff line number Diff line change @@ -3,8 +3,6 @@ kind: Service
33metadata :
44 name : relay
55 namespace : netbird
6- labels :
7- app.kubernetes.io/name : relay
86spec :
97 type : ClusterIP
108 selector :
Original file line number Diff line number Diff line change 3939 ports :
4040 - name : http
4141 containerPort : 80
42+ - name : legacy-grpc
43+ containerPort : 10000
4244 livenessProbe :
4345 tcpSocket :
4446 port : http
You can’t perform that action at this time.
0 commit comments