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

[artifactory-ha] Add option to set Environment Variables option to filebeat sidecar #1377

Merged
merged 6 commits into from
Oct 30, 2024
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
1 change: 1 addition & 0 deletions stable/artifactory-ha/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ All changes to this chart will be documented in this file.
`access.extraEnvironmentVariables`
* Updating the example link for downloading the DB driver
* Added Binary Provider recommendations
* Add support for EnvironmentVaraiables on Filebeat Sidecar

## [107.89.0] - May 30, 2024
* Fix the indentation of the commented-out sections in the values.yaml file
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1357,6 +1357,10 @@ spec:
subPath: filebeat.yml
- name: volume
mountPath: "{{ .Values.artifactory.persistence.mountPath }}"
env:
{{- with .Values.filebeat.EnvironmentVariables }}
{{ tpl (toYaml .) $ | indent 10 }}
{{- end }}
livenessProbe:
{{ toYaml .Values.filebeat.livenessProbe | indent 10 }}
readinessProbe:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1468,6 +1468,10 @@ spec:
subPath: filebeat.yml
- name: volume
mountPath: "{{ .Values.artifactory.persistence.mountPath }}"
env:
{{- with .Values.filebeat.EnvironmentVariables }}
{{ tpl (toYaml .) $ | indent 10 }}
{{- end }}
livenessProbe:
{{ toYaml .Values.filebeat.livenessProbe | indent 10 }}
readinessProbe:
Expand Down
1 change: 1 addition & 0 deletions stable/artifactory-ha/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1783,6 +1783,7 @@ filebeat:
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 5
EnvironmentVariables: {}
resources: {}
# requests:
# memory: "100Mi"
Expand Down
Loading