mastodon / chart

Helm chart for Mastodon deployment in Kubernetes
GNU Affero General Public License v3.0
152 stars 90 forks source link

fix inheritance of sidekiq securityContext #76

Closed roobre closed 2 months ago

roobre commented 1 year ago

values.yaml says:

  sidekiq:
    # -- Pod security context for all Sidekiq Pods, overwrites .Values.podSecurityContext
    podSecurityContext: {}
    # -- (Sidekiq Container) Security Context for all Pods, overwrites .Values.securityContext
    securityContext: {}

However, this was not true before this PR: Only sidekiq.securityContext was considered, defaulting to an empty security context if it was not set.

timetinytim commented 2 months ago

Ah good catch, thank you!