apiVersion: v1 kind: Service metadata: namespace: yelb name: yelb-ui labels: app: yelb-ui tier: frontend spec: type: LoadBalancer ports: - port: 80 protocol: TCP targetPort: 80 selector: app: yelb-ui tier: frontend --- apiVersion: apps/v1 kind: Deployment metadata: namespace: yelb name: yelb-ui spec: replicas: 1 selector: matchLabels: app: yelb-ui tier: frontend template: metadata: labels: app: yelb-ui tier: frontend spec: containers: - name: yelb-ui image: mreferre/yelb-ui:0.6 ports: - containerPort: 80 --- apiVersion: v1 kind: Service metadata: namespace: yelb name: yelb-appserver spec: type: ClusterIP ports: - port: 4567