Skip to content

Commit fe1b520

Browse files
committed
feat(gateway): Add GatewayClass and Gateway resources with Kustomization
1 parent 73dc480 commit fe1b520

File tree

4 files changed

+22
-0
lines changed

4 files changed

+22
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
apiVersion: gateway.networking.k8s.io/v1
2+
kind: GatewayClass
3+
metadata:
4+
name: eg
5+
spec:
6+
controllerName: gateway.envoyproxy.io/gatewayclass-controller
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
apiVersion: gateway.networking.k8s.io/v1
2+
kind: Gateway
3+
metadata:
4+
name: eg
5+
spec:
6+
gatewayClassName: eg
7+
listeners:
8+
- name: http
9+
protocol: HTTP
10+
port: 80
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
apiVersion: kustomize.config.k8s.io/v1beta1
2+
kind: Kustomization
3+
resources:
4+
- gateway-class.yaml
5+
- gateway.yaml

infrastructure/clusters/feather-core/configs/kustomization.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ kind: Kustomization
33
resources:
44
- postgresql
55
- mariadb-galera
6+
- gateway

0 commit comments

Comments
 (0)