18 lines
262 B
YAML
18 lines
262 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: helloworld
|
|
labels:
|
|
app: helloworld
|
|
service: helloworld
|
|
spec:
|
|
ports:
|
|
- port: 8080
|
|
name: http
|
|
targetPort: 80
|
|
protocol: TCP
|
|
appProtocol: http
|
|
selector:
|
|
app: helloworld
|
|
---
|