christianlempa-boilerplates/kubernetes/nginx-http/nginx-http-svc.yml
2022-05-19 15:06:21 +02:00

15 lines
227 B
YAML

apiVersion: v1
kind: Service
metadata:
name: nginx-http-svc
labels:
app: nginx-http
spec:
type: LoadBalancer
ports:
- port: 30080
targetPort: 80
protocol: TCP
name: http
selector:
app: nginx-http