* 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
* feat: add startup probe config
* feat: add values for startup probe
* feat: update docs for startup changes
* bumped the version
* change: disable startup Probe value
* fix: add the metadata for customStartuProbe
* Update values.yaml
Co-authored-by: Javier J. Salmerón-García <jsalmeron@vmware.com>
* add grafana.ingress.pathType value
* set default for to to match grafana-operator default
* template `.Values.grafana.ingress.hostname` usage in values.yaml #8540
* [bitnami/grafana-operator] Update components versions
Signed-off-by: Bitnami Containers <containers@bitnami.com>
Co-authored-by: Bitnami Containers <containers@bitnami.com>
* Update default TF model used for prediction
Signed-off-by: Jose Antonio Carmona <jcarmona@vmware.com>
* Bump chart version and update README
Signed-off-by: Jose Antonio Carmona <jcarmona@vmware.com>
* [bitnami/tensorflow-resnet] Update components versions
Signed-off-by: Bitnami Containers <containers@bitnami.com>
Co-authored-by: Bitnami Containers <containers@bitnami.com>