|
1 | 1 | ## Bitnami Drupal image version |
2 | 2 | ## ref: https://hub.docker.com/r/bitnami/drupal/tags/ |
3 | 3 | ## |
4 | | -image: bitnami/drupal:8.4.2-r0 |
| 4 | +image: bitnami/drupal:8.4.2-r1 |
5 | 5 |
|
6 | 6 | ## Optionally specify an array of imagePullSecrets. |
7 | 7 | ## Secrets must be manually created in the namespace. |
@@ -31,15 +31,53 @@ drupalUsername: user |
31 | 31 | ## |
32 | 32 | drupalEmail: user@example.com |
33 | 33 |
|
| 34 | +## Set to `yes` to allow the container to be started with blank passwords |
| 35 | +## ref: https://github.com/bitnami/bitnami-docker-wordpress#environment-variables |
| 36 | +allowEmptyPassword: yes |
| 37 | + |
| 38 | +## |
| 39 | +## External database configuration |
| 40 | +## |
| 41 | +externalDatabase: |
| 42 | + ## Database host |
| 43 | + # host: |
| 44 | + |
| 45 | + ## Database user |
| 46 | + # user: bn_drupal |
| 47 | + |
| 48 | + ## Database password |
| 49 | + # password: |
| 50 | + |
| 51 | + ## Database name |
| 52 | + # database: bitnami_drupal |
| 53 | + |
34 | 54 | ## |
35 | 55 | ## MariaDB chart configuration |
36 | 56 | ## |
37 | 57 | mariadb: |
| 58 | + ## Whether to use the database specified as a requirement or not. For example, to configure the chart with an existing database server. |
| 59 | + enabled: true |
| 60 | + |
38 | 61 | ## MariaDB admin password |
39 | 62 | ## ref: https://github.com/bitnami/bitnami-docker-mariadb/blob/master/README.md#setting-the-root-password-on-first-run |
40 | 63 | ## |
41 | 64 | # mariadbRootPassword: |
42 | 65 |
|
| 66 | + ## Create a database |
| 67 | + ## ref: https://github.com/bitnami/bitnami-docker-mariadb/blob/master/README.md#creating-a-database-on-first-run |
| 68 | + ## |
| 69 | + mariadbDatabase: bitnami_drupal |
| 70 | + |
| 71 | + ## Create a database user |
| 72 | + ## ref: https://github.com/bitnami/bitnami-docker-mariadb/blob/master/README.md#creating-a-database-user-on-first-run |
| 73 | + ## |
| 74 | + mariadbUser: bn_drupal |
| 75 | + |
| 76 | + ## Password for mariadbUser |
| 77 | + ## ref: https://github.com/bitnami/bitnami-docker-mariadb/blob/master/README.md#creating-a-database-user-on-first-run |
| 78 | + ## |
| 79 | + # mariadbPassword: |
| 80 | + |
43 | 81 | ## Enable persistence using Persistent Volume Claims |
44 | 82 | ## ref: http://kubernetes.io/docs/user-guide/persistent-volumes/ |
45 | 83 | ## |
|
0 commit comments