create gatewayclass

This commit is contained in:
Ichen Chhoeng 2025-10-30 12:05:40 +07:00
parent 41308d4a30
commit f97bbfa234

View File

@ -1,6 +1,24 @@
# ==============================
# Gateway
# ==============================
apiVersion: gateway.networking.k8s.io/v1
kind: GatewayClass
metadata:
name: eg
spec:
controllerName: gateway.envoyproxy.io/gatewayclass-controller
---
apiVersion: gateway.networking.k8s.io/v1
kind: Gateway
metadata:
name: eg
spec:
gatewayClassName: eg
listeners:
- name: http
protocol: HTTP
port: 80
---
apiVersion: gateway.networking.k8s.io/v1
kind: Gateway