File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: pdc-agent
33description : PDC agent is an agent for connecting to Grafana Private Data source Connect
44type : application
55appVersion : " 0.0.45"
6- version : 0.0.4
6+ version : 0.0.5
77home : https://grafana.com/docs/grafana-cloud/connect-externally-hosted/private-data-source-connect/
88sources :
99 - https://github.com/grafana/pdc-agent
Original file line number Diff line number Diff line change 11# pdc-agent
22
3- ![ Version: 0.0.4 ] ( https://img.shields.io/badge/Version-0.0.4 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: 0.0.45] ( https://img.shields.io/badge/AppVersion-0.0.45-informational?style=flat-square )
3+ ![ Version: 0.0.5 ] ( https://img.shields.io/badge/Version-0.0.5 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: 0.0.45] ( https://img.shields.io/badge/AppVersion-0.0.45-informational?style=flat-square )
44
55PDC agent is an agent for connecting to Grafana Private Data source Connect
66
@@ -29,6 +29,7 @@ PDC agent is an agent for connecting to Grafana Private Data source Connect
2929| metricsPort | int | ` 8090 ` | The port where metrics are served from the pdc agent |
3030| nameOverride | string | ` "" ` | |
3131| nodeSelector | object | ` {} ` | not required, but left in as a choice |
32+ | podAnnotations | object | ` {} ` | custom pod annotations |
3233| podLabels | object | ` {} ` | |
3334| podSecurityContext.fsGroup | int | ` 30000 ` | |
3435| podSecurityContext.runAsGroup | int | ` 30000 ` | |
Original file line number Diff line number Diff line change 2424 {{- with .Values.podLabels }}
2525 {{- toYaml . | nindent 8 }}
2626 {{- end }}
27+ {{- with .Values.podAnnotations }}
28+ annotations :
29+ {{- toYaml . | nindent 8 }}
30+ {{- end }}
2731 spec :
2832 {{- if .Values.serviceAccount.create }}
2933 serviceAccountName : {{ include "pdc-agent.serviceAccountName" . }}
Original file line number Diff line number Diff line change @@ -23,6 +23,9 @@ fullnameOverride: ""
2323# For more information checkout: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
2424podLabels : {}
2525
26+ # -- custom pod annotations
27+ podAnnotations : {}
28+
2629# -- custom deployment annotations
2730annotations : {}
2831
You can’t perform that action at this time.
0 commit comments