-
Notifications
You must be signed in to change notification settings - Fork 86
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
feat(litmus): add pod annotations support #274
base: master
Are you sure you want to change the base?
feat(litmus): add pod annotations support #274
Conversation
374f53b
to
bc11c2f
Compare
This is a great add, need this as well. |
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.
LGTM
Signed-off-by: itninja-hue <[email protected]>
Signed-off-by: itninja-hue <[email protected]>
Signed-off-by: itninja-hue <[email protected]>
2f300db
to
66c3de8
Compare
@imrajdas @ispeakc0de hey. could you review this MR? |
Hi @itninja-hue Can you resolve the conflicts in this PR. |
@@ -26,6 +26,12 @@ spec: | |||
{{- if .Values.portal.server.customLabels }} | |||
{{ toYaml .Values.portal.server.customLabels | nindent 8 }} | |||
{{- end }} | |||
{{- if .Values.portal.server.podAnnotations }} | |||
annotations: | |||
{{- range $key, $value := .Values.portal.server.podAnnotations }} |
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.
@itninja-hue Please consider replacing this with:
{{- with .Values.portal.server.podAnnotations }}
{{ toYaml . | indent 8 }}
{{- end }}
This should result in the equivalent values yaml being:
[...]
portal:
server:
podAnnotations:
annotation: "example"
annotation.two: "example"
[...]
instead of being divided into two keys and is much easier.
Hi @itninja-hue Can you resolve the conflicts in this PR. |
Hi @itninja-hue, Can you please update the branch. |
@itninja-hue Is this PR still active ? I'm interested by this PR and can work on it if needed. |
What this PR does / why we need it:
add support for pod annotations
Which issue this PR fixes
(optional, in
fixes #<issue number>(, fixes #<issue_number>, ...)
format, will close that issue when PR gets merged)Special notes for your reviewer:
Checklist
[Place an '[x]' (no spaces) in all applicable fields. Please remove unrelated fields.]