1# Default values for prometheus-pushgateway.
2# This is a YAML-formatted file.
3# Declare variables to be passed into your templates.
8# Provide a name in place of prometheus-pushgateway for `app:` labels
10# Provide a name to substitute for the full names of resources
12# Provide a namespace to substitude for the namespace on resources
16 repository: cgr.dev/chainguard-private/prometheus-pushgateway
17 # if not set appVersion field from Chart.yaml is used
18 tag: latest@sha256:ff2fe08376036f7a6a34a37bb9b6da04744240d8ae86d7486026f4e2b245e7b0
19 pullPolicy: IfNotPresent
20# Optional pod imagePullSecrets
28 # Optional - Can be used for headless if value is "None"
32 ipFamilies: ["IPv6", "IPv4"]
33 ipFamilyPolicy: "PreferDualStack"
35 loadBalancerSourceRanges: []
36# Whether to automatically mount a service account token into the pod
37automountServiceAccountToken: true
38# Optional deployment annotations
39deploymentAnnotations: {}
40# Optional pod annotations
44# Optional service annotations
46# Optional service labels
48# Optional serviceAccount labels
49serviceAccountLabels: {}
50# Optional persistentVolume labels
51persistentVolumeLabels: {}
52# Optional additional environment variables
54## Additional pushgateway container arguments
58## - --persistence.file=/data/pushgateway.data
59## - --persistence.interval=5m
61## Additional InitContainers to initialize the pod
63extraInitContainers: []
64# Optional additional containers (sidecar)
68# - -https-address=:9092
69# - -upstream=http://localhost:9091
70# - -skip-auth-regex=^/metrics
71# - -openshift-delegate-urls={"/":{"group":"monitoring.coreos.com","resource":"prometheuses","verb":"get"}}
72# image: openshift/oauth-proxy:v1.1.0
74# - containerPort: 9092
83# - mountPath: /etc/prometheus/secrets/pushgateway-tls
84# name: secret-pushgateway-tls
87# We usually recommend not to specify default resources and to leave this as a conscious
88# choice for the user. This also increases chances charts run on environments with little
89# resources, such as Minikube. If you do want to specify resources, uncomment the following
90# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
98# -- Sets web configuration
99# To enable basic authentication, provide basicAuthUsers as a map
100# If serviceMonitor.enabled is set, a secret with these credentials will be created
101# and configured in serviceMonitor. serviceMonitor.basicAuth overrides this secret.
113 initialDelaySeconds: 10
122 initialDelaySeconds: 10
125 # Specifies whether a ServiceAccount should be created
127 # The name of the ServiceAccount to use.
128 # If not set and create is true, a name is generated using the fullname template
130## Configure ingress resource that allow you to access the
131## pushgateway installation. Set up the URL
132## ref: http://kubernetes.io/docs/user-guide/ingress/
138 # AWS ALB requires path of /*
141 pathType: ImplementationSpecific
142 ## Extra paths to prepend to every host configuration. This is useful when working with annotation based services.
146 # serviceName: ssl-redirect
147 # servicePort: use-annotation
151# kubernetes.io/ingress.class: nginx
152# kubernetes.io/tls-acme: 'true'
155## Must be provided if Ingress is enabled.
158# - pushgateway.domain.com
161## Secrets must be manually created in the namespace.
164# - secretName: pushgateway-tls
166# - pushgateway.domain.com
168## route (map) allows configuration of HTTPRoute resources
169## Requires Gateway API resources and suitable controller installed within the cluster
170## Ref. https://gateway-api.sigs.k8s.io/guides/http-routing/
175 ## ApiVersion set by default to "gateway.networking.k8s.io/v1"
177 ## kind set by default to HTTPRoute
179 ## Annotations to attach to the HTTPRoute resource
181 ## Labels to attach to the HTTPRoute resource
183 ## ParentRefs refers to resources this HTTPRoute is to be attached to (Gateways)
188 ## Hostnames (templated) defines a set of hostnames that should match against the HTTP Host
189 ## header to select a HTTPRoute used to process the request
193 ## additionalRules (templated) allows adding custom rules to the route
195 ## Filters define the filters that are applied to requests that match
198 ## Matches define conditions used for matching the rule against incoming
204 ## httpsRedirect adds a filter for redirecting to https (HTTP 301 Moved Permanently).
205 ## To redirect HTTP traffic to HTTPS, you need to have a Gateway with both HTTP and HTTPS listeners.
206 ## Matches and filters do not take effect if enabled.
207 ## Ref. https://gateway-api.sigs.k8s.io/guides/http-redirect-rewrite/
210# - effect: NoSchedule
213## Node labels for pushgateway pod assignment
214## Ref: https://kubernetes.io/docs/user-guide/node-selection/
228## When running more than one replica alongside with persistence, different volumes are needed
229## per replica, since sharing a `persistence.file` across replicas does not keep metrics synced.
230## For this purpose, you can enable the `runAsStatefulSet` to deploy the pushgateway as a
231## StatefulSet instead of as a Deployment.
232runAsStatefulSet: false
233## Security context to be added to push-gateway pods
239## Security context to be added to push-gateway containers
240## Having a separate variable as securityContext differs for pods and containers.
241containerSecurityContext: {}
242# allowPrivilegeEscalation: false
243# readOnlyRootFilesystem: true
247## Affinity for pod assignment
248## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
250## Pod anti-affinity can prevent the scheduler from placing pushgateway replicas on the same node.
251## The value "soft" means that the scheduler should *prefer* to not schedule two replica pods onto the same node but no guarantee is provided.
252## The value "hard" means that the scheduler is *required* to not schedule two replica pods onto the same node.
253## The default value "" will disable pod anti-affinity so that no anti-affinity rules will be configured (unless set in `affinity`).
256## If anti-affinity is enabled sets the topologyKey to use for anti-affinity.
257## This can be changed to, for example, failure-domain.beta.kubernetes.io/zone
259podAntiAffinityTopologyKey: kubernetes.io/hostname
260## Topology spread constraints for pods
261## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
262topologySpreadConstraints: []
263# Enable this if you're using https://github.com/coreos/prometheus-operator
266 namespace: monitoring
267 # telemetryPath: HTTP resource path from which to fetch metrics.
268 # Telemetry path, default /metrics, has to be prefixed accordingly if pushgateway sets a route prefix at start-up.
270 telemetryPath: "/metrics"
271 # Fallback to the prometheus default unless specified
273 ## scheme: HTTP scheme to use for scraping. Can be used with `tlsConfig` for example if using istio mTLS.
275 ## Basic authentication
279 ## tlsConfig: TLS configuration to use when scraping the endpoint. For example if using istio mTLS.
280 ## Of type: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#tlsconfig
283 # Fallback to the prometheus default unless specified
285 ## Used to pass Labels that are used by the Prometheus installed in your cluster to select Service Monitors to work with
286 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#prometheusspec
288 # Retain the job and instance labels of the metrics pushed to the Pushgateway
289 # [Scraping Pushgateway](https://github.com/prometheus/pushgateway#configure-the-pushgateway-as-a-target-to-scrape)
291 ## Metric relabel configs to apply to samples before ingestion.
292 ## [Metric Relabeling](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs)
293 metricRelabelings: []
295 # regex: 'kube_(daemonset|deployment|pod|namespace|node|statefulset).+'
296 # sourceLabels: [__name__]
298 ## Relabel configs to apply to samples before ingestion.
299 ## [Relabeling](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config)
301 # - sourceLabels: [__meta_kubernetes_pod_node_name]
304 # targetLabel: nodename
307# The values to set in the PodDisruptionBudget spec (minAvailable/maxUnavailable)
308# If not set then a PodDisruptionBudget will not be created
309podDisruptionBudget: {}
311# Deployment Strategy type
315 ## If true, pushgateway will create/use a Persistent Volume Claim
316 ## If false, use emptyDir
319 ## pushgateway data Persistent Volume access modes
320 ## Must match those of existing PV or dynamic provisioner
321 ## Ref: http://kubernetes.io/docs/user-guide/persistent-volumes/
325 ## pushgateway data Persistent Volume Claim annotations
328 ## pushgateway data Persistent Volume existing claim name
329 ## Requires pushgateway.persistentVolume.enabled: true
330 ## If defined, PVC must be created manually before volume will be bound
332 ## pushgateway data Persistent Volume mount root path
335 ## pushgateway data Persistent Volume size
338 ## pushgateway data Persistent Volume Storage Class
339 ## If defined, storageClassName: <storageClass>
340 ## If set to "-", storageClassName: "", which disables dynamic provisioning
341 ## If undefined (the default) or set to null, no storageClassName spec is
342 ## set, choosing the default provisioner. (gp2 on AWS, standard on
343 ## GKE, AWS & OpenStack)
347 ## Subdirectory of pushgateway data Persistent Volume to mount
348 ## Useful if the volume's root directory is not empty
356# mountPath: /usr/share/extras
359# Configuration for clusters with restrictive network policies in place:
360# - allowAll allows access to the PushGateway from any namespace
361# - customSelector is a list of pod/namespaceSelectors to allow access from
362# These options are mutually exclusive and the latter will take precedence.
366# - namespaceSelector:
373# Array of extra K8s objects to deploy (evaluated as a template)
374# The value can hold an array of strings as well as objects
376# Lifecycle hooks configuration
380# command: ["/bin/sh", "-c", "sleep 30"]