Agent version 2.3.0
Added
-
Support for ingesting workload labels
By default, Optimize Live now ingests labels on Kubernetes workload objects, ensuring that StormForge workload labels match your workload labels, making it easier for you to search for workloads.To change this default behavior, setting
collectLabels
tofalse
in ahelm install
orhelm upgrade
command:--set collectLabels=false
-
Support for setting container default values by using annotations
You can now set default values for all containers in a workload by using annotations in pod objects.In the Pod template metadata (
spec.template.metadata.annotations
) of a Deployment object, use the following syntax:live.stormforge.io/containers.CONTAINER_PARAMETER: "DEFAULT_VALUE"
Example: To set
cpu.requests.min
to20m
for all containers in a workload:
live.stormforge.io/containers.cpu.requests.min: “20m”
To learn more about setting default values by using annotations, see the topics under Configure optimization settings.
Changed
- Prometheus agent version bumped to version 2.45 (Prometheus Long-Term Support release)