16 lines
285 B
YAML
16 lines
285 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: mysql-headless
|
|
namespace: mysql
|
|
spec:
|
|
type: ClusterIP
|
|
clusterIP: None
|
|
publishNotReadyAddresses: true
|
|
ports:
|
|
- name: mysql
|
|
port: {{ .port }}
|
|
protocol: TCP
|
|
targetPort: mysql
|
|
selector:
|
|
component: primary |