We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updates to autoscalerRef.primaryScalerReplicas are ignored
autoscalerRef: apiVersion: autoscaling/v2 kind: HorizontalPodAutoscaler name: service-deployment primaryScalerReplicas: maxReplicas: 4 minReplicas: 4
autoscalerRef: apiVersion: autoscaling/v2 kind: HorizontalPodAutoscaler name: service-deployment primaryScalerReplicas: maxReplicas: 2 minReplicas: 2
-->
Result: Primary hpa is not updated and only 2 pod instance are running
kubectl get hpa service-deployment-primary --template='.spec.maxReplicas: {{.spec.maxReplicas}}{{"\n"}}.spec.minReplicas: {{.spec.minReplicas}}' .spec.maxReplicas: 2 .spec.minReplicas: 2
Primary hpa resource should be updated and primary pods scaled to 4 instances
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Updates to autoscalerRef.primaryScalerReplicas are ignored
To Reproduce
-->
Result:
Primary hpa is not updated and only 2 pod instance are running
Expected behavior
Primary hpa resource should be updated and primary pods scaled to 4 instances
Workaround
Additional context
The text was updated successfully, but these errors were encountered: