Skip to content
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
2 changes: 1 addition & 1 deletion .local-manifest/db/mariadb-stateful-set.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ spec:
image: mariadb:11.8
imagePullPolicy: Always
args:
- mysqld
- mariadbd
- --character-set-server=utf8mb4
- --collation-server=utf8mb4_unicode_ci
env:
Expand Down
4 changes: 2 additions & 2 deletions compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -272,9 +272,9 @@ services:
environment:
MYSQL_ROOT_PASSWORD: password
MYSQL_DATABASE: neoshowcase
command: mysqld --character-set-server=utf8 --collation-server=utf8_general_ci
command: mariadbd --character-set-server=utf8 --collation-server=utf8_general_ci
healthcheck:
test: mysql --user=root --password=password --execute "SHOW DATABASES;"
test: mariadb --user=root --password=password --execute "SHOW DATABASES;"
interval: 1s
timeout: 10s
retries: 60
Expand Down
Loading