Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/iom/80794 update mailhog #430

Merged
merged 2 commits into from
Oct 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions charts/iom/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
dependencies:
- name: mailhog
repository: https://codecentric.github.io/helm-charts
version: 5.0.6
version: 5.2.3
- name: iom-tests
repository: ""
version: 1.0.0
- name: postgres
repository: ""
version: 1.0.0
digest: sha256:5f38b61305c1a7d62154592a1ca984a8376cef6d702b1ad8d900f0e1d511d5fc
generated: "2022-11-01T12:56:52.495918+01:00"
digest: sha256:47a510927405050ea558fec3267046a7189601ec120575dffcfac76af59aa63a
generated: "2023-08-18T12:41:42.429055+02:00"
2 changes: 1 addition & 1 deletion charts/iom/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ dependencies:
- name: mailhog
# https://github.com/codecentric/helm-charts
repository: https://codecentric.github.io/helm-charts
version: 5.0.6
version: 5.2.3
condition: mailhog.enabled
- name: iom-tests
version: 1.0.0
Expand Down
15 changes: 15 additions & 0 deletions charts/iom/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,15 @@ information, please consult the reference documentation of `Helm parameters of I
Version 3.0.0
=============

------------
New Features
------------

Update of mailhog sub-chart
===========================

Mailhog sub-chart was updated to version 5.2.3.

---------------
Migration Notes
---------------
Expand Down Expand Up @@ -90,6 +99,12 @@ NGINX, the measures are different.
2. Simple demo and test installations have now to use a separately installed Ingress controller. Preferred is an NGINX
Ingress controller, since the required configuration for session stickiness is already provided by IOM Helm Charts.

Default value of *mailhog.probes.enabled* has changed
=====================================================

The default value of *mailhog.probes.enabled* was changed from *true* to *false*, meaning that there are no probes executed
unless requested. This new setting reduces amount of log-messages of mailhog even if default values are used.

*dbaccount.resetData* was replaced by *oms.db.resetData*
========================================================

Expand Down
2 changes: 1 addition & 1 deletion charts/iom/docs/ParametersMailhog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The table below only lists parameters that have to be changed for different oper
| |intended to be used for any kind of serious IOM installation. It should only be used for demo-,| |
| |CI- or similar types of setups. | |
+----------------------------------------+-----------------------------------------------------------------------------------------------+----------------------------------------------+
|mailhog.probes.enabled |This parameter allows to switch on/off liveness and readiness probes of Mailhog. These probes |true |
|mailhog.probes.enabled |This parameter allows to switch on/off liveness and readiness probes of Mailhog. These probes |false |
| |are producing a lot of messages, which can be avoided if the probes are disabled. | |
| | | |
+----------------------------------------+-----------------------------------------------------------------------------------------------+----------------------------------------------+
Expand Down
2 changes: 1 addition & 1 deletion charts/iom/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ postgres:
mailhog:
enabled: false
probes:
enabled: true
enabled: false
ingress:
enabled: true
ingressClassName: nginx
Expand Down