Configure Prometheus
Prometheus Support
This page shows how you configure Kueue to use prometheus metrics.
The page is intended for a batch administrator.
Before you begin
Make sure you the following conditions are set:
- A Kubernetes cluster is running.
- The kubectl command-line tool has communication with your cluster.
- Kueue is installed.
- Prometheus is installed
- Cert Manager can be optionally installed
Kueue supports either Kustomize or installation via a Helm chart.
Kustomize Installation
- Enable
prometheus
inconfig/default/kustomization.yaml
and uncomment all sections with ‘PROMETHEUS’.
Kustomize Prometheus with certificates
If you want to enable TLS verification for the metrics endpoint, follow the directions below.
- Set
internalCertManagement.enable
tofalse
in the kueue configuration. - Comment out the
internalcert
folder inconfig/default/kustomization.yaml
. - Enable
cert-manager
inconfig/default/kustomization.yaml
and uncomment all sections with ‘CERTMANAGER’. - To enable secure metrics with TLS protection, uncomment all sections with ‘PROMETHEUS-WITH-CERTS’.
Helm Installation
Prometheus installation
Kueue can also supports helm deployment for Prometheus.
- Set
enablePrometheus
in your values.yaml file to true.
Helm Prometheus with certificates
If you want to secure the metrics endpoints with external certificates:
- Disable internal cert management in the kueue configuration (see custom-configuration for more details).
- Set both
enableCertManager
andenablePrometheus
to true. - Provide values for the tlsConfig, see the example below:
An example for your tlsConfig in the helm chart could be as follows:
...
metrics:
prometheusNamespace: monitoring
# tls configs for serviceMonitor
serviceMonitor:
tlsConfig:
serverName: kueue-controller-manager-metrics-service.kueue-system.svc
ca:
secret:
name: kueue-metrics-server-cert
key: ca.crt
cert:
secret:
name: kueue-metrics-server-cert
key: tls.crt
keySecret:
name: kueue-metrics-server-cert
key: tls.key
The secrets must reference the cert manager generated secrets.
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.