Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use tmpfs #1535

Merged
merged 1 commit into from
Dec 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ data:
innodb_log_file_size = 256M
innodb_flush_log_at_trx_commit = 2
innodb_write_io_threads = 8
max_allowed_packet = 512M
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ spec:
imagePullPolicy: IfNotPresent
resources:
requests:
cpu: 2
memory: 2Gi
cpu: 4
memory: 7Gi
env:
- name: MYSQL_TCP_PORT
value: "3306"
Expand Down Expand Up @@ -68,6 +68,8 @@ spec:
name: mariadb
protocol: TCP
volumeMounts:
- mountPath: /var/lib/mysql
name: storage
- mountPath: /docker-entrypoint-initdb.d
name: sqldump-volume
- name: mariadb-config
Expand All @@ -78,8 +80,8 @@ spec:
imagePullPolicy: IfNotPresent
resources:
requests:
cpu: 1
memory: 1Gi
cpu: 2
memory: 4Gi
env:
- name: DB_PASSWORD
valueFrom:
Expand All @@ -96,6 +98,10 @@ spec:
name: sqldump-volume
restartPolicy: Always
volumes:
- name: storage
emptyDir:
medium: Memory
sizeLimit: 5Gi
- name: sqldump-volume
- name: mariadb-config
configMap:
Expand Down