15 lines
197 B
YAML
15 lines
197 B
YAML
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: frontend
|
|
spec:
|
|
selector:
|
|
app: hello
|
|
tier: frontend
|
|
ports:
|
|
- protocol: "TCP"
|
|
port: 80
|
|
targetPort: 80
|
|
type: LoadBalancer
|
|
... |