Alex Tennant and Kubernetes Prow Robot
d6eeb169e9
[stable/wordpress] Allow more flexible TLS configuration. ( #12875 )
...
* Allow more flexible TLS configuration.
Signed-off-by: adtennant <alex@adtennant.co.uk >
* Removed unnecessary parameter in README.
Signed-off-by: adtennant <alex@adtennant.co.uk >
2019-04-15 00:54:01 -07:00
Javier J. Salmerón-García and Kubernetes Prow Robot
a11c57ae1e
[stable/wordpress] Add quote to wordpressSkipInstall ( #13005 )
...
Signed-off-by: Javier J. Salmeron Garcia <jsalmeron@bitnami.com >
2019-04-12 02:06:45 -07:00
Javier J. Salmerón-García and Kubernetes Prow Robot
fe69a9623f
[stable/wordpress] Add option for skipping the installation wizard ( #12948 )
...
Signed-off-by: Javier J. Salmeron Garcia <jsalmeron@bitnami.com >
2019-04-10 05:06:13 -07:00
Bitnami Bot and Kubernetes Prow Robot
d5fe155861
stable/wordpress: update to 5.1.1 ( #12169 )
...
Signed-off-by: Bitnami Containers <containers@bitnami.com >
2019-03-13 18:45:12 -07:00
Carlos Rodríguez Hernández and Kubernetes Prow Robot
6288ed8f1d
[stable/wordpress] Add global 'imagePullSecrets' to overwrite any other existing one ( #12092 )
...
* [stable/wordpress] Add global 'imagePullSecrets' to overwrite any other existing one
Signed-off-by: Carlos Rodriguez Hernandez <crhernandez@bitnami.com >
* Fix typo and document variable
Signed-off-by: Carlos Rodriguez Hernandez <crhernandez@bitnami.com >
* Fix typo in helpers
Signed-off-by: Carlos Rodriguez Hernandez <crhernandez@bitnami.com >
2019-03-12 04:37:13 -07:00
Javier J. Salmerón-García and Kubernetes Prow Robot
15b8ea9aa5
[stable/wordpress] Allow setting custom sidecar containers ( #11893 )
...
* [stable/wordpress] Allow setting custom sidecar containers
Signed-off-by: Javier J. Salmeron Garcia <jsalmeron@bitnami.com >
* Add extraPorts
Signed-off-by: Javier J. Salmeron Garcia <jsalmeron@bitnami.com >
* Change readme section
Signed-off-by: Javier J. Salmeron Garcia <jsalmeron@bitnami.com >
2019-03-04 04:02:33 -08:00
Bitnami Bot and Kubernetes Prow Robot
c60823c623
stable/wordpress: update to 5.1.0 ( #11654 )
...
Signed-off-by: Bitnami Containers <containers@bitnami.com >
2019-02-22 09:04:27 -08:00
Javier J. Salmerón-García and Kubernetes Prow Robot
8655268c22
[stable/wordpress] Fix quote in htaccessoverridenone ( #11263 )
...
Signed-off-by: Javier J. Salmeron Garcia <jsalmeron@bitnami.com >
2019-02-08 02:02:03 -08:00
Javier J. Salmerón-García and Kubernetes Prow Robot
619a86b346
[stable/wordpress] Enable configuration of AllowOverride ( #11155 )
...
* [stable/wordpress] Enable configuration of AllowOverride
Signed-off-by: Javier J. Salmeron Garcia <jsalmeron@bitnami.com >
* Add custom htaccess cm
Signed-off-by: Javier J. Salmeron Garcia <jsalmeron@bitnami.com >
* Add helper
Signed-off-by: Javier J. Salmeron Garcia <jsalmeron@bitnami.com >
* Update allowOverride values
Signed-off-by: Javier J. Salmeron Garcia <jsalmeron@bitnami.com >
2019-02-06 07:45:58 -08:00
Bitnami Bot and Kubernetes Prow Robot
da910f123c
wordpress: update to 5.0.3 ( #10542 )
...
Signed-off-by: Bitnami Containers <containers@bitnami.com >
2019-01-10 23:20:43 -08:00
clalbus and Kubernetes Prow Robot
c5d0a35dda
[stable/wordpress] Add service annotations ( #10498 )
...
* [stable/wordpress] Add service annotations
Signed-off-by: Andrejs Volkovs <clalbus@gmail.com >
* [stable/wordpress] Bump version to 5.1.0
Signed-off-by: Andrejs Volkovs <clalbus@gmail.com >
* [stable/wordpress] Initialize service annotations in prod values
Signed-off-by: Andrejs Volkovs <clalbus@gmail.com >
2019-01-10 01:39:21 -08:00
Tomas Pizarro and Kubernetes Prow Robot
172708d11b
[stable/wordpress] Fix syntax error when ingress is enabled ( #10432 )
...
* [stable/wordpress] Fix syntax error when ingress is enabled
Signed-off-by: tompizmor <tompizmor@gmail.com >
* Update README
Signed-off-by: tompizmor <tompizmor@gmail.com >
* Delete testing values from values.yaml
Signed-off-by: tompizmor <tompizmor@gmail.com >
* Fix wrong values
Signed-off-by: tompizmor <tompizmor@gmail.com >
* Fix wrong values
Signed-off-by: tompizmor <tompizmor@gmail.com >
* Undo app label change to avoid breaking upgrades
Signed-off-by: tompizmor <tompizmor@gmail.com >
2019-01-08 07:25:11 -08:00
Jared Reisinger and Kubernetes Prow Robot
d2cd36b0c4
Expose livenessProbe and readinessProbe headers to consumer (in stable/wordpress) ( #9390 )
...
* Expose livenessProbe and readinessProbe headers to consumer
**Problem:** Despite docs that say otherwise, Kubernetes treats a 302 HTTP response as "failed" in liveness and readiness probes. When using ingress-terminated HTTPS, it is common for HTTP requests to WordPress to result in 302-redirects to the HTTPS equivalent. As a result, the container is considered unhealthy/unready.
**Solution:** Expose the `httpHeaders` property of the `httpGet` in the probe definition so that consumers can, for example, pass the `X-Forwarded-Proto: https` header to prevent the 302 and instead get a 200 response status. The headers are exposed as optional `livenessProbeHeaders` and `readinessProbeHeaders` arrays, and only included in the deployment definition when defined.
* Update `deployment.yaml` to include optional headers.
* Update `values.yaml` and `values-production.yaml` with commented-out examples.
* Update `README.md` with configuration options, and a more detailed explanation in the Ingress section.
* Update `Chart.yaml` version number from `3.3.0` to `3.3.1`.
Signed-off-by: Jared Reisinger <jaredreisinger@hotmail.com >
* bump version
Signed-off-by: Jared Reisinger <jaredreisinger@hotmail.com >
* bump version
Signed-off-by: Jared Reisinger <jaredreisinger@hotmail.com >
2019-01-06 23:53:51 -08:00
Bitnami Bot and Kubernetes Prow Robot
9c1052d96d
[stable/wordpress] Release 5.0.2 ( #10154 )
...
* wordpress: update to `5.0.2`
Signed-off-by: Bitnami Containers <containers@bitnami.com >
* wordpress: updated chart requirements
Signed-off-by: Bitnami Containers <containers@bitnami.com >
* wordpress: bump chart appVersion to `5.0.2`
Signed-off-by: Bitnami Containers <containers@bitnami.com >
* wordpress: bump chart version to `5.0.2`
Signed-off-by: Bitnami Containers <containers@bitnami.com >
2018-12-20 00:42:23 -08:00
Bitnami Bot and Kubernetes Prow Robot
c0b78c917b
[stable/wordpress] Release 5.0.1 ( #9974 )
...
* wordpress: update to `5.0.1`
Signed-off-by: Bitnami Containers <containers@bitnami.com >
* wordpress: bump chart appVersion to `5.0.1`
Signed-off-by: Bitnami Containers <containers@bitnami.com >
* wordpress: bump chart version to `5.0.1`
Signed-off-by: Bitnami Containers <containers@bitnami.com >
2018-12-13 06:33:31 -08:00
Bitnami Bot and Kubernetes Prow Robot
e05774c70e
[stable/wordpress] Release 4.0.1 ( #9809 )
...
* wordpress: update to `5.0.0`
Signed-off-by: Bitnami Containers <containers@bitnami.com >
* wordpress: updated chart requirements
Signed-off-by: Bitnami Containers <containers@bitnami.com >
* wordpress: bump chart appVersion to `5.0.0`
Signed-off-by: Bitnami Containers <containers@bitnami.com >
* wordpress: bump chart version to `4.0.1`
Signed-off-by: Bitnami Containers <containers@bitnami.com >
2018-12-07 16:16:25 -08:00
Javier J. Salmerón-García and k8s-ci-robot
c9e0bf092b
[stable/wordpress] Add service.port in values.yaml ( #9392 )
...
* [stable/wordpress] Add service.port in values.yaml
Signed-off-by: Javier J. Salmeron Garcia <jsalmeron@bitnami.com >
* Update NOTES.txt
Signed-off-by: Javier J. Salmeron Garcia <jsalmeron@bitnami.com >
* Remove - in template
Signed-off-by: Javier J. Salmeron Garcia <jsalmeron@bitnami.com >
2018-11-20 08:17:58 -08:00
Javier J. Salmerón-García and k8s-ci-robot
4156dab1df
[stable/wordpress] Add apache exporter ( #8836 )
...
* [stable/wordpress] Add apache exporter
Signed-off-by: Javier J. Salmeron Garcia <jsalmeron@bitnami.com >
* [stable/wordpress] Add podAnnotations
Signed-off-by: Javier J. Salmeron Garcia <jsalmeron@bitnami.com >
* [stable/wordpress] Add podAnnotations
Signed-off-by: Javier J. Salmeron Garcia <jsalmeron@bitnami.com >
2018-10-31 03:21:19 -07:00
Carlos Rodríguez Hernández and k8s-ci-robot
39768f9806
[stable/wordpress] Remove distro tag ( #8533 )
...
Signed-off-by: Carlos Rodriguez Hernandez <crhernandez@bitnami.com >
2018-10-17 08:14:36 -07:00
Carlos Rodríguez Hernández and k8s-ci-robot
526c8c9ad0
[stable/wordpress] Add global registry option ( #8445 )
...
* [stable/wordpress] Add global registry option
Signed-off-by: Carlos Rodriguez Hernandez <crhernandez@bitnami.com >
* Update deps
Signed-off-by: Carlos Rodriguez Hernandez <crhernandez@bitnami.com >
2018-10-16 01:30:08 -07:00
Juan Ariza Toledano and k8s-ci-robot
a2e9db6666
Wordpress tls ( #8369 )
...
* Fix typo
Signed-off-by: juan131 <juan@bitnami.com >
* [stable/wordpress] Fix typo
Signed-off-by: juan131 <juan@bitnami.com >
2018-10-11 04:12:58 -07:00
Juan Ariza Toledano and k8s-ci-robot
cfd0a223ed
[stable/wordpress] Simplify ingress configuration for cert-manager ( #8335 )
...
* [stable/wordpress] Simplify ingress configuration when for cert-manager
Signed-off-by: juan131 <juan@bitnami.com >
* Apply changes on 'values-production.yaml' too
Signed-off-by: juan131 <juan@bitnami.com >
2018-10-10 07:16:48 -07:00
Adnan Abdulhussein and k8s-ci-robot
177d6dc049
[stable/wordpress] fix required string value being parsed as bool ( #7160 )
...
* [stable/wordpress] fix required string value being parsed as bool
Reverts #7101 which breaks ensuring the allowEmptyPassword is always a
string of value "yes" or "no".
* keep allowEmptyPassword Helm value as a boolean
2018-08-14 11:29:28 -07:00
Jonas Flodén and k8s-ci-robot
6b1e32c32d
wordpress: Set ALLOW_EMPTY_PASSWORD correctly ( #7101 )
...
* wordpress: Set ALLOW_EMPTY_PASSWORD correctly
Fixes #2960
* Remove unnecessary quotes in values.yaml
2018-08-10 01:48:17 -07:00
Sameer Naik and k8s-ci-robot
c0d54d62d8
set default value of serviceExternalTrafficPolicy to Cluster ( #6981 )
...
When set to `Local`, we discovered that on OKE, Oracle's LoadBalancer tries route
to nodes where the Pod isn't running and as a result it doesn't work. Change the
default value to `Cluster` seems to be the sane default value we should use.
2018-08-05 07:16:43 -07:00
Bitnami Bot and k8s-ci-robot
130d741c04
[stable/wordpress] Release 2.1.5 ( #6965 )
...
* wordpress: update to `4.9.8-debian-9`
* wordpress: updated chart requirements
* wordpress: bump chart appVersion to `4.9.8`
* wordpress: bump chart version to `2.1.5`
2018-08-03 00:20:54 -07:00
Bitnami Bot and k8s-ci-robot
144148d30b
[stable/wordpress] Release 2.1.1 ( #6492 )
...
* wordpress: update to `4.9.7-debian-9`
* wordpress: updated chart requirements
* wordpress: bump chart appVersion to `4.9.7-debian-9`
* wordpress: bump chart version to `2.1.1`
2018-07-06 00:25:17 -07:00
Jeff French and k8s-ci-robot
0aff33c74d
[stable/wordpress] Add pod tolerations and affinity. ( #6406 )
...
* [stable/wordpress] Add pod tolerations and affinity.
* [stable/wordpress] Document tolerations and affinity in README
* [stable/wordpress] Bump chart version
* bump to 2.1.0
* [stable/wordpress] Remove extra blank lines
2018-07-03 09:58:18 -07:00
Will Newby and k8s-ci-robot
f5f77fd571
Makes WordPress replicas configurable from values ( #6362 )
...
* Makes WordPress replicas configurable from values
* MVersion Bump
* Updates to README as requested
2018-06-29 00:34:20 -07:00
Javier J. Salmerón-García and k8s-ci-robot
ab3b8e7e37
[stable/wordpress] Set dependencies to latest version ( #6074 )
...
* [stable/wordpress] Set dependencies to latest version
* Fix test
2018-06-13 08:28:28 -07:00
Carlos Rodríguez Hernández and k8s-ci-robot
ad683ddab7
Revert "[stable/wordpress] Release 1.0.8" ( #5802 )
...
* Revert "[stable/wordpress] Release 1.0.8 (#5795 )"
This reverts commit 8a55202895 .
* Update Chart.yaml
2018-05-29 01:04:32 -07:00
Bitnami Bot and k8s-ci-robot
8a55202895
[stable/wordpress] Release 1.0.8 ( #5795 )
...
* wordpress: update to `4.9.6-ol-7`
* wordpress: bump chart appVersion to `4.9.6-ol-7`
* wordpress: bump chart version to `1.0.8`
2018-05-29 00:36:32 -07:00
Bitnami Bot and k8s-ci-robot
05709987c2
[stable/wordpress] Release 1.0.7 ( #5679 )
...
* wordpress: update to `4.9.6`
* wordpress: bump chart appVersion to `4.9.6`
* wordpress: bump chart version to `1.0.7`
2018-05-21 23:41:55 -07:00
vtuson and k8s-ci-robot
1ab586c137
support for an existing PVC ( #5265 )
2018-04-26 07:30:03 -07:00
Bitnami Bot and k8s-ci-robot
41707b24ec
[stable/wordpress] Release 1.0.4 ( #5204 )
...
* wordpress: update to `4.9.5`
* wordpress: bump chart appVersion to `4.9.5`
* wordpress: bump chart version to `1.0.4`
2018-04-24 00:53:59 -07:00
Joshua Dotson and k8s-ci-robot
ab44875229
[stable/wordpress] Allow service type to be ClusterIP ( #5097 )
...
- To support oauth-proxy use case.
2018-04-22 23:52:59 -07:00
Tomas Pizarro and k8s-ci-robot
d746db3f89
[stable/wordpress] Refactor image property and start using rolling tag ( #4673 )
...
* [stable/wordpress] Refactor image property and start using rolling tag
* Update tests
* Update Chart.yaml
2018-04-04 05:23:08 -07:00
Juan José Martos and k8s-ci-robot
0c03843d5a
[stable/wordpress] Add wordpressTablePrefix option ( #4594 )
...
* Add wordpressTablePrefix option
* Bump version
* Remove default values
2018-04-02 08:36:02 -07:00
Juan Ariza Toledano and k8s-ci-robot
c320e85370
External traffic policy ( #4273 )
...
* Preserving Client Source IP
* Fix Typo
* Bumping Chart version
* Quoting nodePort value
* Quoting nodePort value
* Adding new value on right position within values.yaml
2018-03-19 05:00:59 -07:00
Kai Chen and k8s-ci-robot
92f9a985ed
wordpress: Small fixes in values.yaml ( #4174 )
2018-03-16 04:40:21 -07:00
Jon Mosco and k8s-ci-robot
946012c898
Enable custom NodePorts for service ( #3973 )
...
NodePort changes to pass lint and not set default values
Changes to PR made. nodePort -> nodePorts and removed line from
README.md
2018-03-13 23:48:33 -07:00
Bitnami Bot and k8s-ci-robot
df69462729
[stable/wordpress] Release 0.8.11 ( #4109 )
...
* wordpress: update to `bitnami/wordpress:4.9.4-r5`
* wordpress: bump chart version to `0.8.11`
2018-03-12 08:12:12 -07:00
Bitnami Bot and k8s-ci-robot
ecc7cfe801
[stable/wordpress] Release 0.8.10 ( #4052 )
...
* wordpress: update to `bitnami/wordpress:4.9.4-r4`
* wordpress: bump chart version to `0.8.10`
2018-03-08 07:24:55 -08:00
Bitnami Bot and k8s-ci-robot
1230e8a4ed
[stable/wordpress] Release 0.8.9 ( #4033 )
...
* wordpress: update to `bitnami/wordpress:4.9.4-r3`
* wordpress: bump chart version to `0.8.9`
2018-03-07 06:46:52 -08:00
Sameer Naik and k8s-ci-robot
4a517122dd
[stable/wordpress] removes unused externalDatabase.rootPassword param ( #3940 )
...
* [stable/wordpress] removes unused `externalDatabase.rootPassword` param
* [stable/wordpress] set default value of `externalDatabase.password` to empty string
avoid template rendering errors when no password is required
* [stable/wordpress] bump chart version to 0.8.8
2018-03-02 00:19:49 -08:00
Bitnami Bot and k8s-ci-robot
fb1e42a078
[stable/wordpress] Release 0.8.7 ( #3846 )
...
* wordpress: update to `bitnami/wordpress:4.9.4-r2`
* wordpress: bump chart version to `0.8.7`
2018-02-23 07:41:43 -08:00
Bitnami Bot and k8s-ci-robot
10bdea623c
[stable/wordpress] Release 0.8.6 ( #3831 )
...
* wordpress: update to `bitnami/wordpress:4.9.4-r1`
* wordpress: bump chart version to `0.8.6`
2018-02-22 20:24:42 -08:00
Bitnami Bot and k8s-ci-robot
da4e937c66
[stable/wordpress] Release 0.8.5 ( #3592 )
...
* wordpress: update to `bitnami/wordpress:4.9.4-r0`
* wordpress: bump chart appVersion to `4.9.4`
* wordpress: bump chart version to `0.8.5`
2018-02-08 02:11:43 -08:00
Bitnami Bot and k8s-ci-robot
80014d3b57
[stable/wordpress] Release 0.8.4 ( #3563 )
...
* wordpress: update to `bitnami/wordpress:4.9.3-r0`
* wordpress: bump chart appVersion to `4.9.3`
* wordpress: bump chart version to `0.8.4`
2018-02-06 08:49:11 -08:00
Bitnami Bot and k8s-ci-robot
3ea88f90b0
[stable/wordpress] Release 0.8.2 ( #3440 )
...
* wordpress: update to `bitnami/wordpress:4.9.2-r1`
* wordpress: bump chart version to `0.8.2`
2018-01-25 08:56:17 -08:00