-
Notifications
You must be signed in to change notification settings - Fork 77
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 pod context security #141
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.
Please also bump the chart version in Chart.yaml
@@ -311,6 +311,9 @@ spec: | |||
{{- if .Values.sidecars }} | |||
{{ toYaml .Values.sidecars | nindent 8 }} | |||
{{- end }} | |||
{{- if .Values.podSecurityContext}} | |||
securityContext: | |||
{{- .Values.securityContext | toYaml | nindent 8 }} |
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.
Shouldn't it be .Values.podSecurityContext
?
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 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.
No is at the pod level and not the container level but it's called the same and it's not the same type of objects refert to the lube api full doc https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.31/#podspec-v1-core
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.
My bad
Thanks for contributing ! |
add pod context security and set README to the real info
#111