mirror of
https://github.com/ghndrx/blog-manifest.git
synced 2026-02-10 06:54:59 +00:00
36 lines
709 B
YAML
36 lines
709 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: mysql
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: mysql
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: mysql
|
|
spec:
|
|
containers:
|
|
- name: mysql
|
|
image: mysql:latest
|
|
ports:
|
|
- containerPort: 3306
|
|
resources:
|
|
limits:
|
|
memory: "512Mi"
|
|
cpu: "500m"
|
|
requests:
|
|
memory: "256Mi"
|
|
cpu: "250m"
|
|
env:
|
|
- name: MYSQL_ROOT_PASSWORD
|
|
value: password
|
|
- name: MYSQL_DATABASE
|
|
value: ghost
|
|
- name: MYSQL_USER
|
|
value: ghost
|
|
- name: MYSQL_PASSWORD
|
|
value: ghostpassword
|