Your cart is currently empty!
Kubernetes: GatewayAPI Nginx
Install Kubernetes GatewayAPI
Shell
x
1
1
kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.0.0/standard-install.yaml
Install Nginx CRD
Shell
1
1
1
kubectl apply -f https://github.com/nginxinc/nginx-gateway-fabric/releases/download/v1.2.0/crds.yaml
Install Nginx
Shell
1
1
1
kubectl apply -f https://github.com/nginxinc/nginx-gateway-fabric/releases/download/v1.2.0/nginx-gateway.yaml
Create NodePort Service
Shell
1
1
1
kubectl apply -f https://raw.githubusercontent.com/nginxinc/nginx-gateway-fabric/v1.2.0/deploy/manifests/service/nodeport.yaml
Create Gateway resource
YAML
1
10
10
1
apiVersion gateway.networking.k8s.io/v1
2
kind Gateway
3
metadata
4
name cafe
5
spec
6
gatewayClassName nginx
7
listeners
8
name http
9
port80
10
protocol HTTP
References:
Leave a Reply