diff --git a/bitnami/wordpress/Chart.yaml b/bitnami/wordpress/Chart.yaml index e8f33e557a..545a9cb345 100644 --- a/bitnami/wordpress/Chart.yaml +++ b/bitnami/wordpress/Chart.yaml @@ -35,4 +35,4 @@ name: wordpress sources: - https://github.com/bitnami/bitnami-docker-wordpress - https://wordpress.org/ -version: 13.1.16 +version: 13.2.0 diff --git a/bitnami/wordpress/README.md b/bitnami/wordpress/README.md index 7a1dd74ff5..52aaa112a5 100644 --- a/bitnami/wordpress/README.md +++ b/bitnami/wordpress/README.md @@ -85,7 +85,7 @@ The command removes all the Kubernetes components associated with the chart and | ------------------- | ---------------------------------------------------- | -------------------- | | `image.registry` | WordPress image registry | `docker.io` | | `image.repository` | WordPress image repository | `bitnami/wordpress` | -| `image.tag` | WordPress image tag (immutable tags are recommended) | `5.8.3-debian-10-r2` | +| `image.tag` | WordPress image tag (immutable tags are recommended) | `5.9.3-debian-10-r8` | | `image.pullPolicy` | WordPress image pull policy | `IfNotPresent` | | `image.pullSecrets` | WordPress image pull secrets | `[]` | | `image.debug` | Specify if debug values should be set | `false` | @@ -109,7 +109,6 @@ The command removes all the Kubernetes components associated with the chart and | `wordpressConfiguration` | The content for your custom wp-config.php file (advanced feature) | `""` | | `existingWordPressConfigurationSecret` | The name of an existing secret with your custom wp-config.php file (advanced feature) | `""` | | `wordpressConfigureCache` | Enable W3 Total Cache plugin and configure cache settings | `false` | -| `wordpressAutoUpdateLevel` | Level of auto-updates to allow. Allowed values: `major`, `minor` or `none`. | `none` | | `wordpressPlugins` | Array of plugins to install and activate. Can be specified as `all` or `none`. | `none` | | `apacheConfiguration` | The content for your custom httpd.conf file (advanced feature) | `""` | | `existingApacheConfigurationConfigMap` | The name of an existing secret with your custom httpd.conf file (advanced feature) | `""` | @@ -248,7 +247,7 @@ The command removes all the Kubernetes components associated with the chart and | `volumePermissions.enabled` | Enable init container that changes the owner/group of the PV mount point to `runAsUser:fsGroup` | `false` | | `volumePermissions.image.registry` | Bitnami Shell image registry | `docker.io` | | `volumePermissions.image.repository` | Bitnami Shell image repository | `bitnami/bitnami-shell` | -| `volumePermissions.image.tag` | Bitnami Shell image tag (immutable tags are recommended) | `10-debian-10-r306` | +| `volumePermissions.image.tag` | Bitnami Shell image tag (immutable tags are recommended) | `10-debian-10-r392` | | `volumePermissions.image.pullPolicy` | Bitnami Shell image pull policy | `IfNotPresent` | | `volumePermissions.image.pullSecrets` | Bitnami Shell image pull secrets | `[]` | | `volumePermissions.resources.limits` | The resources limits for the init container | `{}` | @@ -281,7 +280,7 @@ The command removes all the Kubernetes components associated with the chart and | `metrics.enabled` | Start a sidecar prometheus exporter to expose metrics | `false` | | `metrics.image.registry` | Apache exporter image registry | `docker.io` | | `metrics.image.repository` | Apache exporter image repository | `bitnami/apache-exporter` | -| `metrics.image.tag` | Apache exporter image tag (immutable tags are recommended) | `0.11.0-debian-10-r24` | +| `metrics.image.tag` | Apache exporter image tag (immutable tags are recommended) | `0.11.0-debian-10-r112` | | `metrics.image.pullPolicy` | Apache exporter image pull policy | `IfNotPresent` | | `metrics.image.pullSecrets` | Apache exporter image pull secrets | `[]` | | `metrics.containerPorts.metrics` | Prometheus exporter container port | `9117` | @@ -499,6 +498,10 @@ Find more information about how to deal with common errors related to Bitnami's ## Notable changes +### 13.2.0 + +Removed support for limiting auto-updates to WordPress core via the `wordpressAutoUpdateLevel` option. To update WordPress core, we recommend you use the `helm upgrade` command to update your deployment instead of using the built-in update functionality. + ### 11.0.0 The [Bitnami WordPress](https://github.com/bitnami/bitnami-docker-wordpress) image was refactored and now the source code is published in GitHub in the [`rootfs`](https://github.com/bitnami/bitnami-docker-wordpress/tree/master/5/debian-10/rootfs) folder of the container image. diff --git a/bitnami/wordpress/templates/deployment.yaml b/bitnami/wordpress/templates/deployment.yaml index 264c912abf..05e0bbaf9e 100644 --- a/bitnami/wordpress/templates/deployment.yaml +++ b/bitnami/wordpress/templates/deployment.yaml @@ -167,8 +167,6 @@ spec: value: {{ .Values.wordpressScheme | quote }} - name: WORDPRESS_EXTRA_WP_CONFIG_CONTENT value: {{ .Values.wordpressExtraConfigContent | quote }} - - name: WORDPRESS_AUTO_UPDATE_LEVEL - value: {{ .Values.wordpressAutoUpdateLevel | quote }} - name: WORDPRESS_PLUGINS value: {{ join "," .Values.wordpressPlugins | quote }} - name: APACHE_HTTP_PORT_NUMBER diff --git a/bitnami/wordpress/values.yaml b/bitnami/wordpress/values.yaml index 1d4266c3db..42aa7864db 100644 --- a/bitnami/wordpress/values.yaml +++ b/bitnami/wordpress/values.yaml @@ -69,7 +69,7 @@ diagnosticMode: image: registry: docker.io repository: bitnami/wordpress - tag: 5.9.3-debian-10-r8 + tag: 5.9.3-debian-10-r9 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -146,9 +146,6 @@ existingWordPressConfigurationSecret: "" ## NOTE: useful if you deploy Memcached for caching database queries or you use an external cache server ## wordpressConfigureCache: false -## @param wordpressAutoUpdateLevel Level of auto-updates to allow. Allowed values: `major`, `minor` or `none`. -## -wordpressAutoUpdateLevel: none ## @param wordpressPlugins Array of plugins to install and activate. Can be specified as `all` or `none`. ## NOTE: If set to all, only plugins that are already installed will be activated, and if set to none, no plugins will be activated ## @@ -712,7 +709,7 @@ volumePermissions: image: registry: docker.io repository: bitnami/bitnami-shell - tag: 10-debian-10-r392 + tag: 10-debian-10-r393 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. @@ -802,7 +799,7 @@ metrics: image: registry: docker.io repository: bitnami/apache-exporter - tag: 0.11.0-debian-10-r112 + tag: 0.11.0-debian-10-r113 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace.