19 lines
390 B
YAML
19 lines
390 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: nginx-nodeport-service
|
|
labels:
|
|
app: nginx-nodeport
|
|
annotations:
|
|
description: "NodePort service for nginx-nodeport deployment with IPv6 support"
|
|
spec:
|
|
type: NodePort
|
|
externalTrafficPolicy: Local
|
|
selector:
|
|
app: nginx-nodeport
|
|
ports:
|
|
- name: http
|
|
port: 8080
|
|
targetPort: 8080
|
|
nodePort: 30091
|
|
protocol: TCP |