Commit Graph
41 Commits
Author SHA1 Message Date
Akhmad Fakhoni Listiyan Dede 458d0bb24b [stable/wordpress] Add update strategy (#14415)
* add update strategy for wordpress chart

Signed-off-by: Akhmad Fakhoni Listiyan Dede <akhmadfakhoni@gmail.com>

* fix table formatting

Signed-off-by: Akhmad Fakhoni Listiyan Dede <akhmadfakhoni@gmail.com>

* add update strategy example

Signed-off-by: Akhmad Fakhoni Listiyan Dede <akhmadfakhoni@gmail.com>

* change wordpressUpdateStrategy to updateStrategy

Signed-off-by: Akhmad Fakhoni Listiyan Dede <akhmadfakhoni@gmail.com>
2019-06-06 01:28:12 -07:00
satchpx 31e8276d26 [stable/wordpress] updates to support an alternate k8s scheduler (#14368)
* updates to support alternate k8s scheduler

Signed-off-by: Sathya Balakrishnan <sathya@portworx.com>

* update chart version

Signed-off-by: Sathya Balakrishnan <sathya@portworx.com>
2019-05-31 01:30:42 -07:00
Carlos Rodríguez Hernández 8c18f3d23b Remove apache and/or php volume (#14308)
Signed-off-by: Carlos Rodriguez Hernandez <crhernandez@bitnami.com>
2019-05-30 09:08:34 -07:00
Juan Ariza Toledano 207ea59fbe [stable/wordpress] Evaluate 'boolean parameters' as booleans (#13755)
Signed-off-by: juan131 <juan@bitnami.com>
2019-05-15 00:40:24 -07:00
Javier J. Salmerón-García 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
Javier J. Salmerón-García 5f7e982989 [stable/wordpress] Change Deployment api group to apps/v1 (#12642)
Signed-off-by: Javier J. Salmeron Garcia <jsalmeron@bitnami.com>
2019-03-28 10:16:43 -07:00
Carlos Rodríguez Hernández bf072a0c2f [stable/wordpress] Use global registry in secondary and/or metrics images (#12235)
Signed-off-by: Carlos Rodriguez Hernandez <crhernandez@bitnami.com>
2019-03-15 01:53:22 -07:00
Carlos Rodríguez Hernández 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
Juan Ariza Toledano 7eaf190aeb [stable/wordpress] Fix 'customHTAccessCM' (#11995)
* [stable/wordpress] Fix 'customHTAccessCM'

Signed-off-by: juan131 <juan@bitnami.com>

* Remove log flags

Signed-off-by: juan131 <juan@bitnami.com>
2019-03-07 08:47:05 -08:00
Javier J. Salmerón-García 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
JoostC d51d65999e [stable/wordpress] Fixed metrics resources templating. (#11733) (#11734)
* Fixed wrong indenting when using limits and requests on metrics.resources

* Bumped chart version

Signed-off-by: JoostC <jcoelingh@gmail.com>
2019-02-26 06:21:57 -08:00
Javier J. Salmerón-García 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
Tomas Pizarro 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 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
Juan Ariza Toledano b7fe42be9d [stable/wordpress] Avoid setting SMTP env. variables when SMTP parameters are not set (#10382)
Signed-off-by: juan131 <juan@bitnami.com>
2019-01-03 08:28:11 -08:00
Javier J. Salmerón-García 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 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
Javier J. Salmerón-García c2090c49d0 [stable/wordpress] Fix chart not being upgradable (#7831)
* [stable/wordpress] Fix chart not being upgradable

Signed-off-by: Javier J. Salmeron Garcia <jsalmeron@bitnami.com>

* improve markdown highlighting

Signed-off-by: Sameer Naik <sameer@bitnami.com>
2018-09-19 21:55:44 -07:00
Adnan Abdulhussein 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 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
Javier J. Salmerón-García 584bfd836c [stable/wordpress] Add chart and release labels in pods (#6898) 2018-07-30 10:26:56 -07:00
Jeff French 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 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 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
vtuson 1ab586c137 support for an existing PVC (#5265) 2018-04-26 07:30:03 -07:00
Tomas Pizarro 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 0c03843d5a [stable/wordpress] Add wordpressTablePrefix option (#4594)
* Add wordpressTablePrefix option

* Bump version

* Remove default values
2018-04-02 08:36:02 -07:00
Sameer Naik 1ce8c0430d stable/wordpress: remove unused MARIADB_ROOT_PASSWORD env parameter (#4503) 2018-03-29 14:48:04 -07:00
Kent Rancourt 2b41596f32 [stable/wordpress] Make liveness and readiness probes configurable (#3282) 2018-01-11 23:13:21 -08:00
Timothy Clarke d0c625bef6 stable/wordpress: Updated externaldb variable names per request 2017-12-11 12:30:06 +00:00
Timothy Clarke 29d0f8af1a Externalised db details per request of @prydonius 2017-12-07 11:36:32 +00:00
Timothy Clarke 8ff269616e Made MariaDB Optional, Also added optional uri path 2017-12-06 10:31:20 +00:00
hchenxa 9d29ffdc4d [stable/wordpress]#1899 add nodeSelector for wordpress (#2191) 2017-09-27 21:52:01 +02:00
Bruno 0d485610e6 [stable/wordpress] Add option to use HTTPS for readiness and liveliness (#1475)
* Add boolean for https healthchecks

* Remove unused DB Password secret

* Bump chart version

* [stable/wordpress] Bump chart not appVersion
2017-08-09 22:31:07 -07:00
Bitnami Bot 6c281d4b1c [stable/wordpress] Release 0.6.3 (#1187)
* wordpress: update to `bitnami/wordpress:4.7.5-r3`

* wordpress: bump chart version to `0.6.3`

* wordpress: fix probes to properly query pod health

* Rename MARIADB_PORT to MARIADB_PORT_NUMBER
2017-06-06 17:24:29 -07:00
Bruno f8102d476d [stable/wordpress] Use subPath mounts to comply with docker image (#1053)
* Use subPath mounts to comply with docker image volumes

* bump chart version
2017-05-10 11:11:49 -07:00
Bruno e0db20e829 [stable/wordpress] Use only one PVC to prevent zone conflicts (#689)
* Use only one PVC

* Syntax fix & version bump

* [stable/redis] add persistence.existingClaim (#717)

* add persistence.existingClaim to redis

* missed the version

* cleanup templating

* [stable/prometheus] Fixed server ingress annotations (#853)

* Fixed server ingress annotations

* Version bump

* Update GitLab-CE image to release 9.0.0 (#827)

* Update GitLab-CE image to release 9.0.0

* Update dependencies version

* Change username from admin to root

* [stable/drupal] Release 0.4.6 (#831)

* drupal: update to `bitnami/drupal:8.2.7-r1`

* drupal: bump chart version to `0.4.6`

* Add OWNERS file, Fix #753 (#792)

* [stable/testlink] Release 0.4.6 (#851)

* testlink: update to `bitnami/testlink:1.9.16-r3`

* testlink: bump chart version to `0.4.6`

* [stable/mariadb] Release 0.5.14 (#830)

* mariadb: update to `bitnami/mariadb:10.1.22-r1`

* mariadb: bump chart version to `0.5.14`

* Updated Artifactory version to 5.1.0 (#725)

* Upgraded artifactory version to 4.16.0

* changes as per suggestion

* [stable/wordpress] Release 0.5.2 (#850)

* wordpress: update to `bitnami/wordpress:4.7.3-r2`

* wordpress: bump chart version to `0.5.2`

* [stable/owncloud] Release 0.4.6 (#848)

* owncloud: update to `bitnami/owncloud:9.1.4-r2`

* owncloud: bump chart version to `0.4.6`

* [stable/odoo] Release 0.4.4 (#842)

* odoo: update to `bitnami/odoo:10.0.20170317-r1`

* odoo: bump chart version to `0.4.4`

* [stable/moodle] Release 0.1.3 (#846)

* moodle: update to `bitnami/moodle:3.2.1-r4`

* moodle: updated chart requirements

* moodle: bump chart version to `0.1.3`

* moodle: update to `bitnami/moodle:3.2.2-r0`
2017-04-05 10:56:42 -07:00
Jorge Bianquetti ad5a4a0f73 [stable/wordpress] Allow helm chart to receive an existing database or create it by itself Open, HighAll Users (#773)
* Allow to the Wordpress helm chart to receive an existing database or create it by itself

* Allow to the Wordpress helm chart to receive an existing database or create it by itself

* added links to documentation for new env vars

* added changes with compatibility threats for  0.4.x chart series.  Bumping to 0.5.0

* added defaults for many values and fixes typos

* added defaults for many values and fixes typos

* fix typo

* cosmetic revision

* updated dependency on mariadb chart 0.5.10

* environment vars clean up

* Readme reformatting

* added changes with compatibility threats for  0.4.x chart series.  Bumping to 0.5.0

* added defaults for many values and fixes typos

* fix typo

* Allow to the Wordpress helm chart to receive an existing database or create it by itself

* added defaults for many values and fixes typos

* fix typo

* fixing default value in README for AllowEmptyPassword
2017-03-15 09:40:13 +00:00
Adnan Abdulhussein bcc323d57d WordPress updates (0.4.0) (#367)
* wordpress: add alpha and beta storageclass annotation support

* wordpress: use random password if not specified

* wordpress: update MariaDB dep

* wordpress: explicitly set imagePullPolicy

* wordpress: increase resource name truncation and trim '-' suffix

* wordpress: improve storageclass readme description

* wordpress: use built-in toYaml helper
2017-01-09 20:38:23 -08:00
Adnan Abdulhussein 0c7a69cfc1 Reduce pod template labels to minimum (#118)
The pod template labels are used as selectors for the deployment, so
they should be the minimal required to uniquely select the
ReplicaSets/Pods. See https://github.com/kubernetes/helm/issues/1390 for
more info about this change.
2016-10-18 15:22:24 -07:00
Miguel Ángel Martínez Triviño 9ba70e5946 [New Chart] WordPress (#80)
Notes.txt tweaks
Resource limiting
Upgrade MariaDB
2016-09-27 10:13:23 -07:00