Commit Graph

270 Commits

Author SHA1 Message Date
Bitnami Containers
8eeed1028b [bitnami/mysql] Release 8.8.31 updating components versions
Signed-off-by: Bitnami Containers <containers@bitnami.com>
2022-04-02 08:03:03 +00:00
Mikkel Kroman
f98d8a53d3 [bitnami/mysql] Support templating in auth.existingSecret (#9612)
Signed-off-by: Mikkel Kroman <mikkel.kroman@omnigame.dk>
2022-03-30 12:36:51 +02:00
Bitnami Containers
2d27911ec0 [bitnami/mysql] Release 8.8.29 updating components versions
Signed-off-by: Bitnami Containers <containers@bitnami.com>
2022-03-28 07:55:19 +00:00
Bitnami Containers
78e2c61cf2 [bitnami/mysql] Release 8.8.28 updating components versions
Signed-off-by: Bitnami Containers <containers@bitnami.com>
2022-03-27 08:01:38 +00:00
Bitnami Containers
28b9350099 [bitnami/mysql] Release 8.8.27 updating components versions
Signed-off-by: Bitnami Containers <containers@bitnami.com>
2022-03-17 01:38:00 +00:00
raymonder jin
a1593f165a delete unnecessary blank (#9397) 2022-03-14 08:14:02 +01:00
Bitnami Containers
07a68414b0 [bitnami/mysql] Release 8.8.26 updating components versions
Signed-off-by: Bitnami Containers <containers@bitnami.com>
2022-02-27 08:36:32 +00:00
Juan Ariza Toledano
51e5aafc17 [bitnami/mysql] Do not hardcode PDB apiVersion (#9106) 2022-02-21 11:47:56 +01:00
Bitnami Containers
f36c2fd098 [bitnami/mysql] Release 8.8.24 updating components versions
Signed-off-by: Bitnami Containers <containers@bitnami.com>
2022-02-17 16:20:44 +00:00
Miguel Ángel Cabrera Miñagorri
6ffd18fbbd Non utf8 chars (#8923)
* [bitnami/*] Fix non utf-8 characters

Signed-off-by: Miguel A. Cabrera Minagorri <mcabrera@vmware.com>

* [bitnami/rabbimq] Fix RabbitMQ cluster operator README

Signed-off-by: Miguel A. Cabrera Minagorri <mcabrera@vmware.com>
2022-02-07 15:35:05 +01:00
Carlos Rodríguez Hernández
8d740c566c [bitnami/several] Change prerequisites (#8725)
Signed-off-by: Carlos Rodriguez Hernandez <carlosrh@vmware.com>
2022-01-20 09:42:29 +01:00
Miguel Ángel Cabrera Miñagorri
b9a9533375 [bitnami/*] Update READMEs (#8716)
Signed-off-by: Miguel A. Cabrera Minagorri <mcabrera@vmware.com>
2022-01-19 13:09:48 +01:00
Bitnami Containers
f8cf502f9e [bitnami/mysql] Release 8.8.22 updating components versions
Signed-off-by: Bitnami Containers <containers@bitnami.com>
2022-01-18 16:17:49 +00:00
Miguel Ángel Cabrera Miñagorri
78d193831c [bitnami/*] Readme automation (#8579)
* [bitnami/*] Readme automation

Signed-off-by: Miguel A. Cabrera Minagorri <mcabrera@vmware.com>

* Fix app name

Signed-off-by: Miguel A. Cabrera Minagorri <mcabrera@vmware.com>

* Add current name to all charts

Signed-off-by: Miguel A. Cabrera Minagorri <mcabrera@vmware.com>

* Adapt all READMEs to the automatic sync new standard

Signed-off-by: Miguel A. Cabrera Minagorri <mcabrera@vmware.com>

* Update comment to follow XML syntax

Signed-off-by: Miguel A. Cabrera Minagorri <mcabrera@vmware.com>

* Minor fixes

Signed-off-by: Miguel A. Cabrera Minagorri <mcabrera@vmware.com>
2022-01-17 15:53:46 +01:00
Bitnami Containers
878cad88b9 [bitnami/mysql] Release 8.8.21 updating components versions
Signed-off-by: Bitnami Containers <containers@bitnami.com>
2022-01-12 16:27:40 +00:00
Carlos Rodríguez Hernández
58077af58f [bitnami/several] Fix issue with quote when followed by }} (#8561)
Signed-off-by: Carlos Rodriguez Hernandez <carlosrh@vmware.com>
2022-01-04 10:17:33 +01:00
Carlos Rodriguez Hernandez
05f7633725 [bitnami/several] Add license to the README
Signed-off-by: Carlos Rodriguez Hernandez <carlosrh@vmware.com>
2022-01-03 16:41:29 +00:00
Carlos Rodriguez Hernandez
32fb238e60 [bitnami/several] Add license to the README
Signed-off-by: Carlos Rodriguez Hernandez <carlosrh@vmware.com>
2022-01-03 16:39:35 +00:00
Carlos Rodriguez Hernandez
b87c2f7899 [bitnami/several] Add license to the README
Signed-off-by: Carlos Rodriguez Hernandez <carlosrh@vmware.com>
2022-01-03 16:33:06 +00:00
Greg
b1aae55a4c [bitnami/mysql] Prevent introduction of leading newline character in predefined password and replicationPassword (#8546)
* Prevent introduction of leading newline character in predefined `auth.password` and `auth.replicationPassword`

Introducing change: 7238fbe138

*Issue*
Leading newline character added to predefined `auth.password` and `auth.replicationPassword`.

*Reproduction*
Reproduced by predefined values for `auth.password` and `auth.replicationPassword` and visible in container logs with `image.debug: true`:

`helm install my-release bitnami/mysql --set auth.password=9fXymk61OT,auth.replicationPassword=E6dMqifzrh,auth.username=my_user,image.debug=true`

Log file:
```
mysql 01:31:24.36 DEBUG ==> Configuring root user credentials
mysql 01:31:24.37 DEBUG ==> Executing SQL command:
-- create admin user
create user 'root'@'%' identified by "wf3vWj0zlO";
grant all on *.* to 'root'@'%' with grant option;
flush privileges;
mysql 01:31:24.53 DEBUG ==> removing the unknown user
mysql 01:31:24.54 DEBUG ==> Executing SQL command:
select Host from user where User='';
mysql: [Warning] Using a password on the command line interface can be insecure.
mysql 01:31:24.56 DEBUG ==> creating database user \'my_user\'
mysql 01:31:24.57 DEBUG ==> Executing SQL command:
create user if not exists 'my_user'@'%' identified by "
9fXymk61OT";
mysql: [Warning] Using a password on the command line interface can be insecure.
mysql 01:31:24.65 DEBUG ==> Removing all other hosts for the user
mysql 01:31:24.68 DEBUG ==> Executing SQL command:
select Host from user where User='my_user' and Host!='%';
mysql: [Warning] Using a password on the command line interface can be insecure.
mysql 01:31:24.71 DEBUG ==> Creating database my_user
mysql 01:31:24.72 DEBUG ==> Executing SQL command:
create database if not exists `my_database` ;
mysql: [Warning] Using a password on the command line interface can be insecure.
mysql 01:31:24.86 DEBUG ==> Providing privileges to username my_user on database my_database
mysql 01:31:24.90 DEBUG ==> Executing SQL command:
grant all on `my_database`.* to 'my_user'@'%';
mysql: [Warning] Using a password on the command line interface can be insecure.
mysql 01:31:25.08 INFO  ==> Configuring replication in master node
mysql 01:31:25.11 DEBUG ==> Configure replication user credentials
mysql 01:31:25.20 DEBUG ==> Executing SQL command:
create user 'replicator'@'%' identified with 'mysql_native_password' by "
E6dMqifzrh";
mysql: [Warning] Using a password on the command line interface can be insecure.
mysql 01:31:25.43 DEBUG ==> Executing SQL command:
grant REPLICATION SLAVE on *.* to 'replicator'@'%' with grant option;
flush privileges;
```

* [bitnami/mysql] bump chart version
2022-01-03 15:06:02 +01:00
Yi Siqi
7238fbe138 [bitnami/mysql] lookup existing secrets (#8504)
* lookup existing secret

* refine naming
2021-12-28 11:46:33 +01:00
Bitnami Containers
6cd6a78aa1 [bitnami/mysql] Release 8.8.17 updating components versions
Signed-off-by: Bitnami Containers <containers@bitnami.com>
2021-12-26 03:34:16 +00:00
Miloš Janda
2ab69f3ecf [bitnami/mysql] Fix existingConfigmap typo in values (#8360) 2021-12-10 12:52:57 +01:00
bbaudelet
0404b1aa52 [bitnami/cassandra,etcd,influxdb,metallb,mysql,postgresql,postgresql-ha,redis] Align networkpolicy (#8336) 2021-12-09 13:01:40 +01:00
Scott Chang
48e8e9c7c4 [bitnami/mysql] add commonAnnotations to initialization-configmap (#8309)
* add commonAnnotations to initialization-configmap

* bump mysql chart version

Co-authored-by: chasc05 <scott.chang@ca.com>
2021-12-09 10:49:11 +01:00
Carlos Rodríguez Hernández
eafb5bd5a2 [bitnami/several] Replace HTTP by HTTPS when possible (#8259)
Signed-off-by: Carlos Rodriguez Hernandez <carlosrh@vmware.com>
2021-11-29 09:58:33 +01:00
Carlos Rodriguez Hernandez
ac752431b9 [bitnami/several] Regenerate README tables
Signed-off-by: Carlos Rodriguez Hernandez <carlosrh@vmware.com>
2021-11-26 09:58:35 +00:00
Bitnami Containers
d436b226fc [bitnami/mysql] Release 8.8.13 updating components versions
Signed-off-by: Bitnami Containers <containers@bitnami.com>
2021-11-26 03:31:01 +00:00
Carlos Rodríguez Hernández
99e90d244b [bitnami/several] Fix deadlinks in README.md (#8215)
Signed-off-by: Carlos Rodriguez Hernandez <carlosrh@vmware.com>
2021-11-23 16:06:13 +01:00
Carlos Rodriguez Hernandez
412cf6a513 [bitnami/several] Regenerate README tables
Signed-off-by: Carlos Rodriguez Hernandez <carlosrh@vmware.com>
2021-10-27 06:23:25 +00:00
Bitnami Containers
5f3d30a03e [bitnami/mysql] Release 8.8.12 updating components versions
Signed-off-by: Bitnami Containers <containers@bitnami.com>
2021-10-27 03:23:29 +00:00
Carlos Rodríguez Hernández
a6751cdd33 [bitnami/several] Add chart info to NOTES.txt (#7889) 2021-10-22 16:04:39 +02:00
Carlos Rodriguez Hernandez
73cabea54a [bitnami/several] Regenerate README tables
Signed-off-by: Carlos Rodriguez Hernandez <carlosrh@vmware.com>
2021-10-21 05:13:10 +00:00
Bitnami Containers
38c61b98d5 [bitnami/mysql] Release 8.8.10 updating components versions
Signed-off-by: Bitnami Containers <containers@bitnami.com>
2021-10-20 08:26:42 +00:00
Carlos Rodríguez Hernández
9711a33c6e [bitnami/several] Change pullPolicy for bitnami-shell image (#7852)
* [bitnami/several] Change pullPolicy for bitnami-shell image
* Add rolling tag check in the NOTES.txt
* Fix non-standard names
* Use macro when defined
* Update Chart.yaml
* Fix typo
2021-10-19 14:38:37 +02:00
Carlos Rodriguez Hernandez
ff170d10f8 [bitnami/several] Regenerate README tables
Signed-off-by: Carlos Rodriguez Hernandez <carlosrh@vmware.com>
2021-09-26 10:09:21 +00:00
Bitnami Containers
93a52a0730 [bitnami/mysql] Release 8.8.8 updating components versions
Signed-off-by: Bitnami Containers <containers@bitnami.com>
2021-09-24 16:49:23 +00:00
Miguel Ángel Cabrera Miñagorri
e5ab2e6ecd [bitnami/*] Generate READMEs with new generator version (#7614)
Signed-off-by: Miguel A. Cabrera Minagorri <mcabrera@vmware.com>
2021-09-24 12:46:12 +02:00
Miguel Ángel Cabrera Miñagorri
6e24065bcc [bitnami/mysql] Fix Mysql root password in NOTES.txt (#7395) 2021-09-14 10:34:35 +02:00
Carlos Rodriguez Hernandez
da2513bf0a [bitnami/several] Regenerate README tables
Signed-off-by: Carlos Rodriguez Hernandez <carlosrh@vmware.com>
2021-08-26 10:49:00 +00:00
Bitnami Containers
315c1afe87 [bitnami/mysql] Release 8.8.6 updating components versions
Signed-off-by: Bitnami Containers <containers@bitnami.com>
2021-08-25 16:45:35 +00:00
Bitnami Containers
3673c393a0 [bitnami/mysql] Release 8.8.5 updating components versions
Signed-off-by: Bitnami Containers <containers@bitnami.com>
2021-08-24 23:43:59 +00:00
vikram-bitnami
a133bed2b4 [multiple] Updated image.tag section (#7257) 2021-08-18 20:35:06 +02:00
Juan Ariza Toledano
3540910f88 [bitnami/mysql] Improve default values for probes (#7170) 2021-08-09 15:10:41 +02:00
Bitnami Containers
f8662550e0 [bitnami/mysql] Release 8.8.2 updating components versions
Signed-off-by: Bitnami Containers <containers@bitnami.com>
2021-08-04 17:40:39 +00:00
alvneiayu
4d4fe83207 [bitnami/several] Fix default values and regenerate README (III) (#7000)
* [bitnami/several] Fix default values and regenerate README (III)

Fix default values in values.yaml and regenerate README using the automated tool

* Update READMEs

* [bitnami/several] Fix default values and regenerate README (III)

Fix default values in values.yaml and regenerate README using the automated tool

* Remove metrics.serviceMonitor.release

* Include changes requested

* Generate READMEs for mediawiki, minio and mysql

* Fix versions

* Generate READMEs for mongodb-sharded, moodle and mysql

* Fix versions

Co-authored-by: Pablo Galego <pgalego@vmware.com>
Co-authored-by: Carlos Rodríguez Hernández <carlosrh@vmware.com>
2021-07-28 10:22:36 +02:00
Carlos Rodríguez Hernández
f1344b0361 [bitnami/several] Add diagnostic mode (#7012)
* Rebase master

* Fix typo in statefulset

* Include lifecycle in the if statement

* Include metrics container

* Update README

* Rebase master

* Rebase master

* Rebase master

* Add diagnostic mode to etcd

* Add diagnostic mode to fluentd

* Add diagnostic mode to grafana-tempo

* Add diagnostic mode to haproxy

* Rebase master

* Fix values location and README

* Add diagnostic mode to the scaffolding

* Add diagnostic mode to kafka

* Add diagnostic mode to kong

* Fix linter in ejbca

* Add diagnostic mode to logstash

* Add diagnostic mode to mariadb

* Add diagnostic mode to mongodb-sharded

* Fix BITNAMI_DEBUG in galera

* Add diagnostic mode to mysql

* Add diagnostic mode to nats

* Add diagnostic mode to postgresql

* Add diagnostic mode to rabbitmq

* Add diagnostic mode to redis-cluster

* Add diagnostic mode to spark

* Add diagnostic mode to wordpress

* Add diagnostic mode to zookeeper

* Fix/Add BITNAMI_DEBUG in kong, nats, and spark

* Update READMEs

* Unify 'Please be patient...' sentence in NOTES

* Bump galera version
2021-07-27 13:10:01 +02:00
Bitnami Containers
e5d7627752 [bitnami/mysql] Release 8.7.3 updating components versions
Signed-off-by: Bitnami Containers <containers@bitnami.com>
2021-07-22 12:51:38 +00:00
Pablo Galego
97543ce596 [bitnami/*] Adapt values.yaml of MySQL, NATS and NGINX charts (#6910)
* mysql: Adapt values.yaml to readme-generator

* mysql: Organize values.yaml in sections

* mysql: Generate README

* nats: Adapt values.yaml to readme-generator

* nats: Organize values.yaml in sections

* nats: Generate README

* nginx: Adapt values.yaml to readme-generator

* nginx: Organize values.yaml in sections

* nginx: Generate README

* nginx: Fix lint issues

* Bump charts patch versions

* Add values.yaml paths to Github Actions workflow

* mysql: Move schedulerName to Common parameters section

* mysql: Add metrics.extraArgs.[primary|secondary] metadata

* mysql: Regenerate README
2021-07-15 12:32:47 +02:00
Andrew
98b8f398b9 bitnami/mysql: add values.schema.json check (#6844)
* increase version

* add json file

* modify json file to 2-space indentation
2021-07-06 17:25:30 +02:00