Files
Schulung_Docker_k8s/k8s/carpool/service.yaml

15 lines
212 B
YAML
Executable File

apiVersion: v1
kind: Service
metadata:
labels:
app: carpool
name: carpool
spec:
ports:
- name: http
port: 5000
protocol: TCP
targetPort: 5000
selector:
app: carpool
type: ClusterIP