Releases: VictoriaMetrics/operator
Releases · VictoriaMetrics/operator
v0.43.5
v0.43.4
v0.43.4 - 25 Apr 2024
v0.43.3
v0.43.2
v0.43.1
Full Changelog: v0.43.0...v0.43.1
v0.43.0
v0.43. - 18 Apr 2024
Update note: vmcluster: remove fields VMClusterSpec.VMInsert.Name
, VMClusterSpec.VMStorage.Name
, VMClusterSpec.VMSelect.Name
, they're marked as deprecated since v0.21.0. See this pull request.
Update note: PodSecurityPolicy supports was deleted. Operator no long creates PSP related objects since it's no longer supported by Kubernetes actual versions. See this doc for details.
Update note: PodDisruptionBudget at betav1 API is no longer supported. Operator uses v1 stable version. See this doc for details.
Update note: Alertmanager
versions below v0.22.0
are no longer supported. Version must upgraded - manually for resources or use default version bundled with operator config.
- operator: properly reconcile
ServiceAccount
specified forCRD
s. Previously operator didn't perform a check for actual owner ofServiceAccount
. Now it creates and updatesServiceAccount
only if this field is omitted atCRD
definition. It fixes possible ownership race conditions. - Update VictoriaMetrics image tags to v1.100.1.
- operator: reduce number of watched resources owned by
CRD
s. Operator no longer watches forService
,Secret
,Configmap
changes owned by CRD object. It must reduce logging output, CPU and memory usage for operator. - operator: exposes
config-reloader-http
port with8435
number for the customer config-reloader containers. Operator may use own config-reloader implementation forVMAuth
,VMAlertmanager
andVMAgent
. - operator: adds new field
configReloaderExtraArgs
forVMAgent
,VMAlert
,VMAuth
andVMAlertmanager
CRDs. It allows to configure config-reloader container. - config-reloader: adds error metrics to the config-reloader container -
configreloader_last_reload_successful
,configreloader_last_reload_errors_total
,configreloader_config_last_reload_total
,configreloader_k8s_watch_errors_total
,configreloader_secret_content_update_errors_total
,configreloader_last_reload_success_timestamp_seconds
. See this issue for details. - operator: Changes error handling for reconcile. Operator sends
Events
into kubernetes API, if any error happened during object reconcile. See this issue for details. - operator: updates base Docker image and prometheus_client to versions with with CVE fixes
- operator: adds reconcile retries on conflicts. See this issue for details.
- operator: allows adjust
Service
generated by operator withuseAsDefault
option set totrue
forserviceSpec
field. See this issue for details. - vmagent: allows to modify
serviceName
field forvmagent
atstatefulMode
with custom service. See this issue for details. Thanks @yilmazo - vmagent: change service for
statefulMode
to theheadless
instead ofclusterIP
. See this issue for details. - vmservicescrape&vmpodscrape: add
attach_metadata
option under VMServiceScrapeSpec&VMPodScrapeSpec, the same way like prometheus serviceMonitor&podMonitor do. See this issue for details. - vmagent: allows multi-line
regex
atrelabelConfig
. See this docs and this issue for details. - vmalertmanagerconfig: fix struct field tags under
Sigv4Config
. - vmalertmanagerconfig: adds own
config-reloader
container. It must improve speed of config updates. See this issue for details. - vmalertmanager: bump default alertmanager version to v0.27.0, which supports new receivers like
msteams_configs
. - vmalertmanager: supports alertmanager version v0.22.0 or higher. Previous versions are no longer supported and must be upgraded before using new operator release.
- vmscrapeconfig: add crd VMScrapeConfig, which can define a scrape config using any of the service discovery options supported in victoriametrics.
- vmuser: adds
targetRefBasicAuth
fieldtargetRef
, which allow to configure basic authorization fortarget_url
. See this issue for details. Thanks @mohammadkhavari - vmprobe: add field
proxy_url
, see this issue for details. - scrape CRDs: add field
series_limit
, which can be used to limit the number of unique time series a single scrape target can expose. - scrape CRDs: fix scrape_config filed
disable_keep_alive
, before it's misconfigured asdisable_keepalive
and won't work. - scrape CRDs: deprecated option
relabel_debug
andmetric_relabel_debug
, they were deprecated since v1.85.0.
v0.42.4
Full Changelog: v0.42.3...v0.42.4
v0.42.3
v0.43. - 12 Mar 2024
- vmalert: do not add
notifiers.*
flags in casenotifier.blackhole
is provided viaspec.extraArgs
. See this issue for details. - operator: properly build liveness probe scheme with enabled
tls
. Previously it has hard-codedHTTP
scheme. See this issue for details. - operator: do not perform a PVC size check on
StatefulSet
with0
replicas. It allows to creates CRDs with0
replicas for later conditional resizing. - vmalertmanager: properly print columns at CRD
replicaCount
andversion
status fields.