mirror of
https://github.com/YuzuZensai/netbird-kubernetes-operator.git
synced 2026-09-13 18:59:09 +00:00
This just changes how a routing peer is referenced. In my head this model makes more sense, especially as we need at least one listener right now. Signed-off-by: Philip Laine <philip.laine@gmail.com>
26 lines
476 B
YAML
26 lines
476 B
YAML
apiVersion: gateway.networking.k8s.io/v1
|
|
kind: GatewayClass
|
|
metadata:
|
|
name: public
|
|
spec:
|
|
controllerName: "gateway.netbird.io/controller"
|
|
---
|
|
apiVersion: gateway.networking.k8s.io/v1
|
|
kind: Gateway
|
|
metadata:
|
|
name: public
|
|
namespace: netbird
|
|
spec:
|
|
gatewayClassName: public
|
|
listeners:
|
|
- protocol: gateway.netbird.io/NBRoutingPeer
|
|
name: netbird
|
|
port: 80
|
|
---
|
|
apiVersion: netbird.io/v1
|
|
kind: NBRoutingPeer
|
|
metadata:
|
|
name: netbird
|
|
namespace: netbird
|
|
spec: {}
|