diff --git a/stable/wordpress/Chart.yaml b/stable/wordpress/Chart.yaml index 41e6ca9d98..97df18ad94 100644 --- a/stable/wordpress/Chart.yaml +++ b/stable/wordpress/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: wordpress -version: 5.7.1 +version: 5.8.0 appVersion: 5.1.1 description: Web publishing platform for building blogs and websites. icon: https://bitnami.com/assets/stacks/wordpress/img/wordpress-stack-220x234.png diff --git a/stable/wordpress/templates/deployment.yaml b/stable/wordpress/templates/deployment.yaml index f1a12d6e72..278b77e596 100644 --- a/stable/wordpress/templates/deployment.yaml +++ b/stable/wordpress/templates/deployment.yaml @@ -96,6 +96,8 @@ spec: value: {{ .Values.allowOverrideNone | quote }} - name: WORDPRESS_BLOG_NAME value: {{ .Values.wordpressBlogName | quote }} + - name: WORDPRESS_SKIP_INSTALL + value: {{ .Values.wordpressSkipInstall | quote }} - name: WORDPRESS_TABLE_PREFIX value: {{ .Values.wordpressTablePrefix | quote }} {{- if .Values.smtpHost }} diff --git a/stable/wordpress/values-production.yaml b/stable/wordpress/values-production.yaml index 6d056e8eab..7da589ef33 100644 --- a/stable/wordpress/values-production.yaml +++ b/stable/wordpress/values-production.yaml @@ -58,6 +58,11 @@ wordpressBlogName: User's Blog! ## wordpressTablePrefix: wp_ +## Skip wizard installation (only if you use an external database that already contains WordPress data) +## ref: https://github.com/bitnami/bitnami-docker-wordpress#connect-wordpress-docker-container-to-an-existing-database +## +wordpressSkipInstall: no + ## Set to `yes` to allow the container to be started with blank passwords ## ref: https://github.com/bitnami/bitnami-docker-wordpress#environment-variables allowEmptyPassword: "yes" diff --git a/stable/wordpress/values.yaml b/stable/wordpress/values.yaml index d67ada93e7..a90776b52b 100644 --- a/stable/wordpress/values.yaml +++ b/stable/wordpress/values.yaml @@ -62,6 +62,11 @@ wordpressBlogName: User's Blog! ## wordpressTablePrefix: wp_ +## Skip wizard installation (only if you use an external database that already contains WordPress data) +## ref: https://github.com/bitnami/bitnami-docker-wordpress#connect-wordpress-docker-container-to-an-existing-database +## +wordpressSkipInstall: no + ## Set to `false` to allow the container to be started with blank passwords ## ref: https://github.com/bitnami/bitnami-docker-wordpress#environment-variables allowEmptyPassword: true