1apiVersion: v1 2kind: Service 3metadata: 4 name: frontend 5 labels: 6 app: guestbook 7 tier: frontend 8spec: 9 # if your cluster supports it, uncomment the following to automatically create 10 # an external load-balanced IP for the frontend service. 11 # type: LoadBalancer 12 ports: 13 - port: 80 14 selector: 15 app: guestbook 16 tier: frontend