mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-12-04 19:03:39 +00:00
Merge remote-tracking branch 'origin/master' into nightly
This commit is contained in:
commit
bfd09fa61d
@ -20,6 +20,11 @@ instructions, because git commits are used to generate release notes:
|
||||
|
||||
<!-- scriv-insert-here -->
|
||||
|
||||
<a id='changelog-16.0.2'></a>
|
||||
## v16.0.2 (2023-06-22)
|
||||
|
||||
- [Bugfix] On Kubernetes, fix mysql deployment by removing the `--ignore-db-dir` option, which no longer exists on MySQL 8. (by @regisb)
|
||||
|
||||
<a id='changelog-16.0.1'></a>
|
||||
## v16.0.1 (2023-06-16)
|
||||
|
||||
|
@ -2,7 +2,7 @@ import os
|
||||
|
||||
# Increment this version number to trigger a new release. See
|
||||
# docs/tutor.html#versioning for information on the versioning scheme.
|
||||
__version__ = "16.0.1"
|
||||
__version__ = "16.0.2"
|
||||
|
||||
# The version suffix will be appended to the actual version, separated by a
|
||||
# dash. Use this suffix to differentiate between the actual released version and
|
||||
|
@ -392,9 +392,7 @@ spec:
|
||||
containers:
|
||||
- name: mysql
|
||||
image: {{ DOCKER_IMAGE_MYSQL }}
|
||||
# Note the ignore-db-dir: this is because ext4 volumes are created with a lost+found directory in them, which causes mysql
|
||||
# initialisation to fail
|
||||
args: ["mysqld", "--character-set-server=utf8", "--collation-server=utf8_general_ci", "--ignore-db-dir=lost+found"]
|
||||
args: ["mysqld", "--character-set-server=utf8", "--collation-server=utf8_general_ci"]
|
||||
env:
|
||||
- name: MYSQL_ROOT_PASSWORD
|
||||
value: "{{ MYSQL_ROOT_PASSWORD }}"
|
||||
|
Loading…
Reference in New Issue
Block a user