kubernetes-hands-on/17-volumes/04-simple-mysql-service.yml

12 lines
134 B
YAML
Raw Permalink Normal View History

2019-05-14 22:04:12 +06:00
---
2019-05-09 19:40:55 +06:00
apiVersion: v1
kind: Service
metadata:
name: mysql
spec:
ports:
2019-05-14 22:04:12 +06:00
- port: 3306
2019-05-09 19:40:55 +06:00
selector:
app: mysql
2019-05-14 22:04:12 +06:00
clusterIP: None