mirror of https://github.com/easzlab/kubeasz.git
34 lines
707 B
YAML
34 lines
707 B
YAML
# https://kubernetes.io/docs/tasks/run-application/run-replicated-stateful-application/
|
|
# Headless service for stable DNS entries of StatefulSet members.
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: mysql
|
|
labels:
|
|
app: mysql
|
|
app.kubernetes.io/name: mysql
|
|
spec:
|
|
ports:
|
|
- name: mysql
|
|
port: 3306
|
|
clusterIP: None
|
|
selector:
|
|
app: mysql
|
|
---
|
|
# Client service for connecting to any MySQL instance for reads.
|
|
# For writes, you must instead connect to the primary: mysql-0.mysql.
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: mysql-read
|
|
labels:
|
|
app: mysql
|
|
app.kubernetes.io/name: mysql
|
|
readonly: "true"
|
|
spec:
|
|
ports:
|
|
- name: mysql
|
|
port: 3306
|
|
selector:
|
|
app: mysql
|