19 lines
319 B
YAML
19 lines
319 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: nginx-ingress-controller
|
|
spec:
|
|
type: NodePort
|
|
ports:
|
|
- port: 80
|
|
targetPort: 80
|
|
nodePort: 32080
|
|
protocol: TCP
|
|
name: http
|
|
- port: 443
|
|
targetPort: 443
|
|
nodePort: 32443
|
|
protocol: TCP
|
|
name: https
|
|
selector:
|
|
k8s-app: nginx-ingress-lb
|