![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![Version: 0.13.0](https://img.shields.io/badge/Version-0.13.0-informational?style=flat-square) [![Artifact Hub](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/victoriametrics)](https://artifacthub.io/packages/helm/victoriametrics/victoria-metrics-agent) [![Slack](https://img.shields.io/badge/join%20slack-%23victoriametrics-brightgreen.svg)](https://slack.victoriametrics.com/) Victoria Metrics Agent - collects metrics from various sources and stores them to VictoriaMetrics ## Prerequisites * Install the follow packages: ``git``, ``kubectl``, ``helm``, ``helm-docs``. See this [tutorial](../../REQUIREMENTS.md). ## How to install Access a Kubernetes cluster. ### Setup chart repository (can be omitted for OCI repositories) Add a chart helm repository with follow commands: ```console helm repo add vm https://victoriametrics.github.io/helm-charts/ helm repo update ``` List versions of `vm/victoria-metrics-agent` chart available to installation: ```console helm search repo vm/victoria-metrics-agent -l ``` ### Install `victoria-metrics-agent` chart Export default values of `victoria-metrics-agent` chart to file `values.yaml`: - For HTTPS repository ```console helm show values vm/victoria-metrics-agent > values.yaml ``` - For OCI repository ```console helm show values oci://ghcr.io/victoriametrics/helm-charts/victoria-metrics-agent > values.yaml ``` Change the values according to the need of the environment in ``values.yaml`` file. Test the installation with command: - For HTTPS repository ```console helm install vma vm/victoria-metrics-agent -f values.yaml -n NAMESPACE --debug --dry-run ``` - For OCI repository ```console helm install vma oci://ghcr.io/victoriametrics/helm-charts/victoria-metrics-agent -f values.yaml -n NAMESPACE --debug --dry-run ``` Install chart with command: - For HTTPS repository ```console helm install vma vm/victoria-metrics-agent -f values.yaml -n NAMESPACE ``` - For OCI repository ```console helm install vma oci://ghcr.io/victoriametrics/helm-charts/victoria-metrics-agent -f values.yaml -n NAMESPACE ``` Get the pods lists by running this commands: ```console kubectl get pods -A | grep 'vma' ``` Get the application by running this command: ```console helm list -f vma -n NAMESPACE ``` See the history of versions of `vma` application with command. ```console helm history vma -n NAMESPACE ``` ## Upgrade guide ### Upgrade to 0.13.0 - replace `remoteWriteUrls` to `remoteWrite`: Given below config ```yaml remoteWriteUrls: - http://address1/api/v1/write - http://address2/api/v1/write ``` should be changed to ```yaml remoteWrite: - url: http://address1/api/v1/write - url: http://address2/api/v1/write ``` ## How to uninstall Remove application with command. ```console helm uninstall vma -n NAMESPACE ``` ## Documentation of Helm Chart Install ``helm-docs`` following the instructions on this [tutorial](../../REQUIREMENTS.md). Generate docs with ``helm-docs`` command. ```bash cd charts/victoria-metrics-agent helm-docs ``` The markdown generation is entirely go template driven. The tool parses metadata from charts and generates a number of sub-templates that can be referenced in a template file (by default ``README.md.gotmpl``). If no template file is provided, the tool has a default internal template that will generate a reasonably formatted README. ## Parameters The following tables lists the configurable parameters of the chart and their default values. Change the values according to the need of the environment in ``victoria-metrics-agent/values.yaml`` file.
Key | Type | Default | Description |
---|---|---|---|
affinity | object |
|
Pod affinity |
annotations | object |
|
Annotations to be added to the deployment |
config | object |
|
VMAgent scrape configuration |
configMap | string |
|
VMAgent scraping configuration use existing configmap if specified otherwise .config values will be used |
containerWorkingDir | string |
|
Container working directory |
deployment | object |
|
K8s Deployment specific variables |
deployment.strategy | object |
|
Deployment stragegy. Check here for details |
emptyDir | object |
|
Empty dir configuration for a case, when persistence is disabled |
env | list |
|
Additional environment variables (ex.: secret tokens, flags). Check here for more details. |
envFrom | list |
|
Specify alternative source for env variables |
extraArgs | object |
|
VMAgent extra command line arguments |
extraContainers | list |
|
Extra containers to run in a pod with vmagent |
extraHostPathMounts | list |
|
Additional hostPath mounts |
extraLabels | object |
|
Extra labels for Pods, Deployment and Statefulset |
extraObjects | list |
|
Add extra specs dynamically to this chart |
extraScrapeConfigs | list |
|
Extra scrape configs that will be appended to |
extraVolumeMounts | list |
|
Extra Volume Mounts for the container |
extraVolumes | list |
|
Extra Volumes for the pod |
fullnameOverride | string |
|
Overrides the fullname prefix |
global.compatibility | object |
|
Openshift security context compatibility configuration |
global.image.registry | string |
|
Image registry, that can be shared across multiple helm charts |
global.imagePullSecrets | list |
|
Image pull secrets, that can be shared across multiple helm charts |
horizontalPodAutoscaling | object |
|
Horizontal Pod Autoscaling. Note that it is not intended to be used for vmagents which perform scraping. In order to scale scraping vmagents check here |
horizontalPodAutoscaling.enabled | bool |
|
Use HPA for vmagent |
horizontalPodAutoscaling.maxReplicas | int |
|
Maximum replicas for HPA to use to to scale vmagent |
horizontalPodAutoscaling.metrics | list |
|
Metric for HPA to use to scale vmagent |
horizontalPodAutoscaling.minReplicas | int |
|
Minimum replicas for HPA to use to scale vmagent |
image.pullPolicy | string |
|
Image pull policy |
image.registry | string |
|
Image registry |
image.repository | string |
|
Image repository |
image.tag | string |
|
Image tag, set to |
image.variant | string |
|
Variant of the image to use. e.g. enterprise, scratch |
imagePullSecrets | list |
|
Image pull secrets |
ingress.annotations | object |
|
Ingress annotations |
ingress.enabled | bool |
|
Enable deployment of ingress for agent |
ingress.extraLabels | object |
|
Ingress extra labels |
ingress.hosts | list |
|
Array of host objects |
ingress.ingressClassName | string |
|
Ingress controller class name |
ingress.pathType | string |
|
Ingress path type |
ingress.tls | list |
|
Array of TLS objects |
initContainers | list |
|
Init containers for vmagent |
license | object |
|
Enterprise license key configuration for VictoriaMetrics enterprise. Required only for VictoriaMetrics enterprise. Check docs here, for more information, visit site. Request a trial license here Supported starting from VictoriaMetrics v1.94.0 |
license.key | string |
|
License key |
license.secret | object |
|
Use existing secret with license key |
license.secret.key | string |
|
Key in secret with license key |
license.secret.name | string |
|
Existing secret name |
nameOverride | string |
|
Overrides fullname suffix |
nodeSelector | object |
|
Pod’s node selector. Details are here |
persistence.accessModes | list |
|
Array of access modes. Must match those of existing PV or dynamic provisioner. Details are here |
persistence.annotations | object |
|
Persistant volume annotations |
persistence.enabled | bool |
|
Create/use Persistent Volume Claim for server component. Empty dir if false |
persistence.existingClaim | string |
|
Existing Claim name. If defined, PVC must be created manually before volume will be bound |
persistence.extraLabels | object |
|
Persistant volume additional labels |
persistence.matchLabels | object |
|
Bind Persistent Volume by labels. Must match all labels of targeted PV. |
persistence.size | string |
|
Size of the volume. Should be calculated based on the logs you send and retention policy you set. |
persistence.storageClassName | string |
|
StorageClass to use for persistent volume. Requires server.persistentVolume.enabled: true. If defined, PVC created automatically |
podAnnotations | object |
|
Annotations to be added to pod |
podDisruptionBudget | object |
|
See |
podLabels | object |
|
Extra labels for Pods only |
podSecurityContext | object |
|
Security context to be added to pod |
priorityClassName | string |
|
Priority class to be assigned to the pod(s) |
probe.liveness | object |
|
Liveness probe |
probe.readiness | object |
|
Readiness probe |
probe.startup | object |
|
Startup probe |
rbac.annotations | object |
|
Role/RoleBinding annotations |
rbac.create | bool |
|
Enables Role/RoleBinding creation |
rbac.extraLabels | object |
|
Role/RoleBinding labels |
rbac.namespaced | bool |
|
If true and |
remoteWrite | string |
|
Generates |
replicaCount | int |
|
Replica count |
resources | object |
|
Resource object. Details are here |
securityContext | object |
|
Security context to be added to pod’s containers |
service.annotations | object |
|
Service annotations |
service.clusterIP | string |
|
Service ClusterIP |
service.enabled | bool |
|
Enable agent service |
service.externalIPs | list |
|
Service external IPs. Check here for details |
service.externalTrafficPolicy | string |
|
Service external traffic policy. Check here for details |
service.extraLabels | object |
|
Service labels |
service.healthCheckNodePort | string |
|
Health check node port for a service. Check here for details |
service.ipFamilies | list |
|
List of service IP families. Check here for details. |
service.ipFamilyPolicy | string |
|
Service IP family policy. Check here for details. |
service.loadBalancerIP | string |
|
Service load balacner IP |
service.loadBalancerSourceRanges | list |
|
Load balancer source range |
service.servicePort | int |
|
Service port |
service.type | string |
|
Service type |
serviceAccount.annotations | object |
|
Annotations to add to the service account |
serviceAccount.create | bool |
|
Specifies whether a service account should be created |
serviceAccount.name | string |
|
The name of the service account to use. If not set and create is true, a name is generated using the fullname template |
serviceMonitor.annotations | object |
|
Service Monitor annotations |
serviceMonitor.basicAuth | object |
|
Basic auth params for Service Monitor |
serviceMonitor.enabled | bool |
|
Enable deployment of Service Monitor for server component. This is Prometheus operator object |
serviceMonitor.extraLabels | object |
|
Service Monitor labels |
serviceMonitor.metricRelabelings | list |
|
Service Monitor metricRelabelings |
serviceMonitor.relabelings | list |
|
Service Monitor relabelings |
statefulset | object |
|
K8s StatefulSet specific variables |
statefulset.clusterMode | bool |
|
create cluster of vmagents. Check here available since v1.77.2 |
statefulset.replicationFactor | int |
|
replication factor for vmagent in cluster mode |
statefulset.updateStrategy | object |
|
StatefulSet update strategy. Check here for details. |
tolerations | list |
|
Node tolerations for server scheduling to nodes with taints. Details are here |
topologySpreadConstraints | list |
|
Pod topologySpreadConstraints |