1apiVersion: v1 2kind: Service 3metadata: 4 name: tasks 5 labels: 6 app: tasks 7 component: infra 8spec: 9 type: LoadBalancer 10 loadBalancerIP: 1.2.3.4 # static ip 11 ports: 12 - port: 443 13 targetPort: 7443 14 protocol: TCP 15 name: http 16 selector: 17 app: tasks