Skip to content

Commit a54bea7

Browse files
committed
Rename MySQL to MariaDB in doc
1 parent 0c4fcb8 commit a54bea7

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The architecture of the REDCap stack deployed by this Chart is as follows :
2121
A minimal setup of this stack includes :
2222
- The HTTPd component
2323
- The PHP FPM Server hosting the REDCap Application
24-
- The MySQL Database used by REDCap
24+
- The MariaDB Database used by REDCap
2525

2626
On top of that, you can also choose to deploy :
2727
- A Backup Cronjob, that can generate an archive containing a database dump, a dump of the `edocs` folder, and a dump of the folder containing the REDCap Application.
@@ -45,7 +45,7 @@ Here are a few important notions to keep in mind to efficiently manage a REDCap
4545

4646
If you choose to automatically install REDCap using your community credentials with this chart, an Kubernetes Job called `init-job` will be automatically fired during the chart's installation process:
4747
- The `StartupPrope` will call the `install.php` or `upgrade.php` script (depending if you're installing REDCap from scratch or upgrading from an existing installation) with the query parameter `auto=1`
48-
- The `ReadinessProbe` will call a MySql script allowing to configure REDCap with the following parameter, extracted from the Chart values :
48+
- The `ReadinessProbe` will call a MariaDB script allowing to configure REDCap with the following parameter, extracted from the Chart values :
4949
- REDCap Base URL
5050
- Institution Name
5151
- Organization Name

charts/redcap/configuration/redcap/backup/backup-upload.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Name: backup-upload.sh
44
# Version: 1.0
55
# Author: Kévin ZGRZENDEK for APHP EDS
6-
# Description : Compresses and uploads REDCap backup dir (containing the redcap app dir, the edocs dir & MySQL db dump)
6+
# Description : Compresses and uploads REDCap backup dir (containing the redcap app dir, the edocs dir & MariaDB dump)
77

88
echo "[INFO] Starting REDCap backup script v1.0"
99

charts/redcap/configuration/redcap/database-conf/creds/credentials.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

33
//********************************************************************************************************************
4-
// MYSQL DATABASE CONNECTION:
5-
// Replace the values inside the single quotes below with the values for your MySQL configuration.
4+
// MariaDB DATABASE CONNECTION:
5+
// Replace the values inside the single quotes below with the values for your MariaDB configuration.
66
// If not using the default port 3306, then append a colon and port number to the hostname (e.g. $hostname = 'example.com:3307';).
77

88
$hostname = '{{ .Values.redcap.config.database.auth.hostname }}';
@@ -31,7 +31,7 @@
3131
//********************************************************************************************************************
3232
// DATA TRANSFER SERVICES (DTS):
3333
// If using REDCap DTS, uncomment the lines below and provide the database connection values for connecting to
34-
// the MySQL database containing the DTS tables (even if the same as the values above).
34+
// the MariaDB database containing the DTS tables (even if the same as the values above).
3535

3636
// $dtsHostname = 'your_dts_host_name';
3737
// $dtsDb = 'your_dts_db_name';

charts/redcap/templates/secrets/mysql/database-password.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ metadata:
55
name: {{ include "mariadb.secrets.password.name" . }}
66
type: Opaque
77
data:
8-
{{ include "mariadb.secrets.password.key" . }}: {{ required "You need to specify REDCap database password, as you didn't enabled the MySQL database embedded in this chart, nor provided a reference to an external Secret containing your database password!" .Values.redcap.config.database.auth.password.value }}
8+
{{ include "mariadb.secrets.password.key" . }}: {{ required "You need to specify REDCap database password, as you didn't enabled the MariaDB database embedded in this chart, nor provided a reference to an external Secret containing your database password!" .Values.redcap.config.database.auth.password.value }}
99
{{- end }}

0 commit comments

Comments
 (0)