You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
610 B
36 lines
610 B
11 months ago
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: database
|
||
|
spec:
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: database
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: database
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: database
|
||
|
image: daocloud.io/library/mysql:5.7
|
||
|
env:
|
||
|
- name: MYSQL_ROOT_PASSWORD
|
||
|
value: "123456"
|
||
|
resources:
|
||
|
limits:
|
||
|
memory: "500Mi"
|
||
|
cpu: "500m"
|
||
|
ports:
|
||
|
- containerPort: 3306
|
||
|
|
||
|
---
|
||
|
service:
|
||
|
name: ruoyi-db
|
||
|
selector:
|
||
|
app: database
|
||
|
ports:
|
||
|
- protocol: TCP
|
||
|
port: 3306
|
||
|
targetPort: 3306
|