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 ipFamilies: - IPv4 - IPv6 ipFamilyPolicy: RequireDualStack selector: app: nginx-nodeport ports: - name: http port: 8080 targetPort: 8080 nodePort: 30091 protocol: TCP