feat(argo-cd): Add ability to add prometheus.io/scrape annotations (#2037)
This commit is contained in:
parent
f6d44750b8
commit
8402303bf8
9 changed files with 96 additions and 16 deletions
|
|
@ -79,6 +79,9 @@ global:
|
|||
# -- Labels for the all deployed pods
|
||||
podLabels: {}
|
||||
|
||||
# -- Add Prometheus scrape annotations to all metrics services. This can be used as an alternative to the ServiceMonitors.
|
||||
addPrometheusAnnotations: false
|
||||
|
||||
# -- Toggle and define pod-level security context.
|
||||
# @default -- `{}` (See [values.yaml])
|
||||
securityContext: {}
|
||||
|
|
@ -762,6 +765,10 @@ controller:
|
|||
# -- Additional labels
|
||||
labels: []
|
||||
service:
|
||||
# -- Metrics service type
|
||||
type: ClusterIP
|
||||
# -- Metrics service clusterIP. `None` makes a "headless service" (no virtual IP)
|
||||
clusterIP: ""
|
||||
# -- Metrics service annotations
|
||||
annotations: {}
|
||||
# -- Metrics service labels
|
||||
|
|
@ -1773,6 +1780,10 @@ server:
|
|||
# -- Deploy metrics service
|
||||
enabled: false
|
||||
service:
|
||||
# -- Metrics service type
|
||||
type: ClusterIP
|
||||
# -- Metrics service clusterIP. `None` makes a "headless service" (no virtual IP)
|
||||
clusterIP: ""
|
||||
# -- Metrics service annotations
|
||||
annotations: {}
|
||||
# -- Metrics service labels
|
||||
|
|
@ -2241,6 +2252,10 @@ repoServer:
|
|||
# -- Deploy metrics service
|
||||
enabled: false
|
||||
service:
|
||||
# -- Metrics service type
|
||||
type: ClusterIP
|
||||
# -- Metrics service clusterIP. `None` makes a "headless service" (no virtual IP)
|
||||
clusterIP: ""
|
||||
# -- Metrics service annotations
|
||||
annotations: {}
|
||||
# -- Metrics service labels
|
||||
|
|
@ -2394,6 +2409,10 @@ applicationSet:
|
|||
# -- Deploy metrics service
|
||||
enabled: false
|
||||
service:
|
||||
# -- Metrics service type
|
||||
type: ClusterIP
|
||||
# -- Metrics service clusterIP. `None` makes a "headless service" (no virtual IP)
|
||||
clusterIP: ""
|
||||
# -- Metrics service annotations
|
||||
annotations: {}
|
||||
# -- Metrics service labels
|
||||
|
|
@ -2715,6 +2734,10 @@ notifications:
|
|||
# -- Metrics port
|
||||
port: 9001
|
||||
service:
|
||||
# -- Metrics service type
|
||||
type: ClusterIP
|
||||
# -- Metrics service clusterIP. `None` makes a "headless service" (no virtual IP)
|
||||
clusterIP: ""
|
||||
# -- Metrics service annotations
|
||||
annotations: {}
|
||||
# -- Metrics service labels
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue