Agent version 2.10.0

Added

  • Annotations for HPA CPU and memory target utilization
    You can now configure HPA target utilization ranges (min and max values) for both CPU and memory by using the following annotations:
    live.stormforge.io/hpa.cpu.target-utilization.min
    live.stormforge.io/hpa.cpu.target-utilization.max
    live.stormforge.io/hpa.memory.target-utilization.min
    live.stormforge.io/hpa.memory.target-utilization.max
    

Deprecated

  • Pod template (PodTemplateSpec) annotations on workloads
    We no longer support PodTemplateSpec (.metadata.spec.template.metadata.annotations) annotations for annotating workloads.

    Instead, workload-level annotations must now be added to the workload object directly in the .metadata.annotations section, as shown in this example:

    apiVersion: apps/v1
    kind: Deployment
    metadata:
        name: example
        namespace: default
        annotations:
        live.stormforge.io/auto-deploy: "false"
        live.stormforge.io/containers.cpu.limits.limit-request-ratio: "1.3"
        ...
    

Security

  • Upgraded go-application to version 0.0.64
  • Upgraded Prometheus dependency to version 2.48.1 for security fixes
Last modified June 27, 2024