mirror of
https://github.com/YuzuZensai/netbird-kubernetes-operator.git
synced 2026-09-13 10:49:15 +00:00
20 lines
495 B
YAML
20 lines
495 B
YAML
{{- if .Values.gatewayAPI.enabled }}
|
|||
|
|
apiVersion: gateway.networking.k8s.io/v1
|
||
|
|
kind: GatewayClass
|
||
|
|
metadata:
|
||
|
|
name: netbird-private
|
||
|
|
labels:
|
||
|
|
{{- include "kubernetes-operator.labels" . | nindent 4 }}
|
||
|
|
spec:
|
||
|
|
controllerName: "gateway.netbird.io/controller"
|
||
|
|
---
|
||
|
|
apiVersion: gateway.networking.k8s.io/v1
|
||
|
|
kind: GatewayClass
|
||
|
|
metadata:
|
||
|
|
name: netbird-public
|
||
|
|
labels:
|
||
|
|
{{- include "kubernetes-operator.labels" . | nindent 4 }}
|
||
|
|
spec:
|
||
|
|
controllerName: "gateway.netbird.io/controller"
|
||
|
|
{{- end }}
|