Smart Learning/Kubernetes Learning Journey/Storage and Persistent Volumes

Mysql Deployment With PV / Mysql Service

TrackKubernetes Learning Journey
Current SectionStorage and Persistent Volumes
Progress42 of 271
apiVersion: v1
kind: Service
metadata:
    name: mysql-service
spec:
    clusterIP: None
    ports:
        - port: 3306
          targetPort: 3306
          name: mysql
    selector:
        app: mysql