66 lines
1.3 KiB
YAML
66 lines
1.3 KiB
YAML
|
---
|
||
|
# configMap
|
||
|
# set global max_connections = 5000
|
||
|
# set global wait_timeout = 600
|
||
|
|
||
|
---
|
||
|
apiVersion: v1
|
||
|
kind: ReplicationController
|
||
|
metadata:
|
||
|
name: mysql-axons
|
||
|
namespace: basic
|
||
|
labels:
|
||
|
name: mysql-axons
|
||
|
spec:
|
||
|
replicas: 1
|
||
|
selector:
|
||
|
name: mysql-axons
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
name: mysql-axons
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: mysql-axons
|
||
|
image: mysql:8.0.33
|
||
|
ports:
|
||
|
- containerPort: 3306
|
||
|
volumeMounts:
|
||
|
- name: data-axons
|
||
|
mountPath: /var/lib/mysql
|
||
|
env:
|
||
|
- name: MYSQL_ROOT_PASSWORD
|
||
|
value: "Beaconfire@2099"
|
||
|
- name: MYSQL_DATABASE
|
||
|
value: "event_store"
|
||
|
volumes:
|
||
|
- name: data-axons
|
||
|
hostPath:
|
||
|
path: /data/staff-axon/mysql
|
||
|
affinity:
|
||
|
nodeAffinity:
|
||
|
requiredDuringSchedulingIgnoredDuringExecution:
|
||
|
nodeSelectorTerms:
|
||
|
- matchExpressions:
|
||
|
- key: "kubernetes.io/hostname"
|
||
|
operator: In
|
||
|
values:
|
||
|
- bfs-k8snode-10-2-1-6.hetzner.base.beaconfireinc.com
|
||
|
|
||
|
---
|
||
|
apiVersion: v1
|
||
|
kind: Service
|
||
|
metadata:
|
||
|
name: mysql-axons
|
||
|
namespace: basic
|
||
|
labels:
|
||
|
name: mysql-axons
|
||
|
spec:
|
||
|
ports:
|
||
|
- protocol: TCP
|
||
|
port: 3306
|
||
|
targetPort: 3306
|
||
|
nodePort: 30016
|
||
|
selector:
|
||
|
name: mysql-axons
|
||
|
type: NodePort
|