From 037e3b7b2234927da3239978d7c06cea504c5964 Mon Sep 17 00:00:00 2001 From: Jan Schuppik Date: Tue, 28 May 2024 20:27:16 +0200 Subject: [PATCH 1/2] docs: Fix location of schema.sql --- doc/02-Installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/02-Installation.md b/doc/02-Installation.md index 39a98739..dc977a1a 100644 --- a/doc/02-Installation.md +++ b/doc/02-Installation.md @@ -49,7 +49,7 @@ GRANT ALL ON kubernetes.* TO 'kubernetes'@'localhost'; Icinga for Kubernetes automatically imports the schema on first start and also applies schema migrations if required. You can also import the schema file manually, which is located at -`/usr/share/kubernetes/schema/mysql/schema.sql`. +`/usr/share/icinga-kubernetes/schema/mysql/schema.sql`. From d86f1be3852a7304a1b89a1b35a9c5177c4125bf Mon Sep 17 00:00:00 2001 From: Jan Schuppik Date: Wed, 29 May 2024 14:04:10 +0200 Subject: [PATCH 2/2] docs: Fix required versions of DBs --- doc/02-Installation.md | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/doc/02-Installation.md b/doc/02-Installation.md index dc977a1a..9b795d09 100644 --- a/doc/02-Installation.md +++ b/doc/02-Installation.md @@ -24,20 +24,11 @@ or install [from source](02-Installation.md.d/From-Source.md). ## Setting up the Database -A MySQL (≥5.5) or MariaDB (≥10.1) database is required to run Icinga for Kubernetes. -Please follow the steps listed for your target database, -which guide you through setting up the database and user, and importing the schema. +A MySQL (≥8.0) or MariaDB (≥10.5) database is required to run Icinga for Kubernetes. +Please follow the steps, which guide you through setting up the database and user, and importing the schema. ### Setting up a MySQL or MariaDB Database -If you use a version of MySQL < 5.7 or MariaDB < 10.2, the following server options must be set: - -``` -innodb_file_format=barracuda -innodb_file_per_table=1 -innodb_large_prefix=1 -``` - Set up a MySQL database for Icinga for Kubernetes: ```