123456789101112131415161718192021 |
- apiVersion: v1
- kind: Service
- metadata:
- name: ingress
- namespace: ingress
- spec:
- selector:
- name: nginx-ingress-microk8s
- type: LoadBalancer
- # loadBalancerIP is optiojal. MetalLB will automatically allocate an IP
- # from its pool if not specified. You can also specify one manually.
- loadBalancerIP: 10.42.42.30
- ports:
- - name: http
- protocol: TCP
- port: 80
- targetPort: 80
- - name: https
- protocol: TCP
- port: 443
- targetPort: 443
|