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

[jfrog-platform] tolerations on pre-upgrade-hook job #1939

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
3 changes: 3 additions & 0 deletions stable/jfrog-platform/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# JFrog Platform Chart Changelog (GA releases only)
All changes to this chart will be documented in this file.

## [10.20.1] - Nov 11, 2024
* Added `rabbitmq.tolerations`

## [10.20.0] - Oct 29, 2024
* **IMPORTANT**
* Added new dependency chart `worker` which is disabled by default and set `worker.enabled: true` to enable it. More info [here](https://jfrog.com/help/r/jfrog-installation-setup-documentation/installing-jfrog-worker)
Expand Down
2 changes: 1 addition & 1 deletion stable/jfrog-platform/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@ name: jfrog-platform
sources:
- https://github.com/jfrog/charts
type: application
version: 10.20.0
version: 10.20.1
4 changes: 4 additions & 0 deletions stable/jfrog-platform/templates/migration-hook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -123,5 +123,9 @@ spec:
fi
restartPolicy: Never
terminationGracePeriodSeconds: 0
{{- with .Values.rabbitmq.tolerations }}
tolerations:
{{ toYaml . | indent 8 }}
{{- end }}
{{- end }}
{{- end }}
1 change: 1 addition & 0 deletions stable/jfrog-platform/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ rabbitmq:
onlineSchedulers: null
persistence:
size: 50Gi
tolerations: []
extraEnvVars:
- name: RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS
value: "+S 2:2 +sbwt none +sbwtdcpu none +sbwtdio none"
Expand Down
Loading