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

[dependency-track] Support podAnnotations #241

Open
Yaytay opened this issue Jun 28, 2023 · 0 comments
Open

[dependency-track] Support podAnnotations #241

Yaytay opened this issue Jun 28, 2023 · 0 comments

Comments

@Yaytay
Copy link

Yaytay commented Jun 28, 2023

Currently there is no way to put annotations on pods.

Is your feature request related to a problem? Please describe.
We are trying to configure linkerd on all our pods and require annotations on pods to do so.

Describe the solution you'd like
The Bitnami chart for grafana-operator deployments has:

  template:
    metadata:
      labels: {{- include "common.labels.standard" . | nindent 8 }}
        {{- if .Values.operator.podLabels }}
        {{- include "common.tplvalues.render" (dict "value" .Values.operator.podLabels "context" $) | nindent 8 }}
        {{- end }}
      {{- if .Values.operator.podAnnotations }}
      annotations: {{- include "common.tplvalues.render" (dict "value" .Values.operator.podAnnotations "context" $) | nindent 8 }}
      {{- end }}

Given the use of the Bitnami common library by evryfs I think having the same would be good.

Describe alternatives you've considered
The only other way we've come up with is 'kubectl edit' :(

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant