We need to autoscale the matching service. So I deployed HPA to cluster, but it does not work correctly.
When replicas is set on deployment spec, HPA will not work - as you can read here: https://stackoverflow.com/a/76548515. It interferes with replica set.
I tried to apply a override:
spec:
services:
matching:
overrides:
deployment:
spec:
replicas:
to delete a replica count on deployment, but helm warns me:
W0712 12:28:20.755105 2402442 warnings.go:70] unknown field "spec.services.matching.overrides.deployment.spec.replicas".
Even if I try to set an override to a specific number, it fails with this error.
Can you please guide me, how can I set autoscaling to a specific temporal service? Thanks.
We need to autoscale the matching service. So I deployed HPA to cluster, but it does not work correctly.
When
replicasis set on deployment spec, HPA will not work - as you can read here: https://stackoverflow.com/a/76548515. It interferes with replica set.I tried to apply a override:
to delete a replica count on deployment, but helm warns me:
W0712 12:28:20.755105 2402442 warnings.go:70] unknown field "spec.services.matching.overrides.deployment.spec.replicas".Even if I try to set an override to a specific number, it fails with this error.
Can you please guide me, how can I set autoscaling to a specific temporal service? Thanks.