Skip to content

Commit

Permalink
fix(values): Change 'emailSSL' to False
Browse files Browse the repository at this point in the history
  • Loading branch information
martin.kucin committed Nov 5, 2024
1 parent a169a4c commit 38c3ec2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.5.18

\[BUGFIX\] Change value `emailSSL` to `false` [#143](https://github.com/WeblateOrg/helm/issues/143)

## 0.5.16

\[BUGFIX\] Fix service name for Redis and Postgres [#327](https://github.com/WeblateOrg/helm/issues/327)
2 changes: 1 addition & 1 deletion charts/weblate/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ $ helm install my-release weblate/weblate
| emailHost | string | `"chart-example.local"` | Host for sending emails |
| emailPassword | string | `""` | Password for sending emails |
| emailPort | int | `587` | Port for sending emails |
| emailSSL | bool | `true` | Use SSL when sending emails |
| emailSSL | bool | `false` | Use SSL when sending emails |
| emailTLS | bool | `true` | Use TLS when sending emails |
| emailUser | string | `""` | User name for sending emails |
| existingSecret | string | `""` | Name of existing secret, Make sure it contains the keys postgresql-user, postgresql-password, redis-password, email-user, email-password, admin-user, admin-password Also note to set the existingSecret values for the Redis and Postgresql subcharts |
Expand Down
2 changes: 1 addition & 1 deletion charts/weblate/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ emailPort: 587
# emailTLS -- Use TLS when sending emails
emailTLS: true
# emailSSL -- Use SSL when sending emails
emailSSL: true
emailSSL: false
# emailUser -- User name for sending emails
emailUser: ''
# emailPassword -- Password for sending emails
Expand Down

0 comments on commit 38c3ec2

Please sign in to comment.