-
Notifications
You must be signed in to change notification settings - Fork 447
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] Added podSecurityContext and containerSecurityContext for pre-upgrade-check migration hook container #1929
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -103,6 +103,10 @@ rabbitmq: | |
image: | ||
repository: bitnami/rabbitmq | ||
tag: 3.12.10-debian-11-r1 | ||
podSecurityContext: | ||
enabled: false | ||
containerSecurityContext: | ||
enabled: false | ||
auth: | ||
## Enable encryption to rabbitmq | ||
## ref: https://www.rabbitmq.com/ssl.html | ||
|
@@ -242,6 +246,11 @@ artifactory: | |
url: '{{ include "database.url" . }}' | ||
user: artifactory | ||
password: artifactory | ||
ingress: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It seems like these changes are specific to you; we are ignoring them There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I had to add this because otherwise 'helm lint' gives errors about unknown variables. |
||
enabled: false | ||
nginx: | ||
service: | ||
type: "" | ||
# Note: For artifactory Pro license, mission-control is not supported, Hence, set mc.enabled: false | ||
# Note: mission-control is disabled by default, this is only available for E+ customers, and can be enabled by setting mc.enabled: true | ||
mc: | ||
|
@@ -359,6 +368,10 @@ preUpgradeHook: | |
repository: bitnami/kubectl | ||
tag: 1.24.12 | ||
pullPolicy: IfNotPresent | ||
podSecurityContext: | ||
enabled: false | ||
containerSecurityContext: | ||
enabled: false | ||
resources: | ||
requests: | ||
cpu: 5m | ||
|
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.
It seems like these changes are specific to you; we are ignoring them
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.
I had to add this because otherwise 'helm lint' gives errors about unknown variables.