-
Notifications
You must be signed in to change notification settings - Fork 301
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
Add extraContainers parameter to helm chart #975
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are some minor adjustments requested. Once you correct those we'll get this merged in. Thanks!
CHANGELOG.md
Outdated
@@ -9,6 +9,7 @@ | |||
## Other changes | |||
- Upgrade pylint 2.15.2 to 2.15.3 and pytest-cov 3.0.0 to 4.0.0 and sphinx 5.1.1 to 5.2.3; Add Google Chat proxy support - [#972](https://github.com/jertel/elastalert2/pull/972) - @nsano-rururu | |||
- Fix Jira assign issue - [#974](https://github.com/jertel/elastalert2/pull/974) - @jorge-gyant | |||
- Add extraContainers value to helm chart |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please fix formatting of changelog:
- [Kubernetes] Add extraContainers value to helm chart - [#975](https://github.com/jertel/elastalert2/pull/975) - @Kasape
chart/elastalert2/README.md
Outdated
@@ -78,6 +78,7 @@ The command removes all the Kubernetes components associated with the chart and | |||
| `secretRulesName` | name of the secret which holds the ElastAlert rules. **Note:** this will overwrite the generated rules | `NULL` | | |||
| `secretRulesList` | a list of rules to enable from the secret | [] | | |||
| `optEnv` | Additional pod environment variable definitions | [] | | |||
| `extraContainers` | List of additional containers run in the same pod as elasticalert | [] | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix typo. Should be elastalert
, not elasticalert
Fixed, thanks for your comments |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for the contribution!
Hi @jertel, could you please create a new release to include this change? I would really appreciate having this functionality in a helm chart. Thank you |
Hi Kasape, I should be able to release the next version within the next week or so. |
2.8.0 has been released and includes this change. |
Thank you, I will use it |
Description
Parameter
extraContainers
was added to values.yaml in helm chart and it is passed to the definition of deployment. It allows a user to define additional containers running in the same pod next to the elastalert container. An example of an additional running container is a sidecar that shares mounted volume with the elastalert and changes the content of the folder with rules. The same methodology and notation are used in grafana helm-chart.Checklist
make test-docker
with my changes.Questions or Comments