hpa Questions

9

I am new to kubernetes and was trying to apply horizontal pod autoscaling to my existing application. and after following other stackoverflow details - got to know that I need to install metric-ser...
Hieronymus asked 12/4, 2022 at 12:50

2

Solved

I have a HorizontalPodAutoscalar to scale my pods based on CPU. The minReplicas here is set to 5: apiVersion: autoscaling/v2beta2 kind: HorizontalPodAutoscaler metadata: name: myapp-web spec: sca...
Absolutism asked 15/2, 2021 at 16:10

2

I am using Kubernetes v1.20.10 baremetal installation. It has one master node and 3 worker nodes. The application simply served HTTP requests. I am scaling the deployment based on the (HPA) Horizon...

1

Solved

According to the K8s documentation, to avoid flapping of replicas property stabilizationWindowSeconds can be used The stabilization window is used to restrict the flapping of replicas when the met...
Theseus asked 29/10, 2021 at 12:33

2

I have AWS EKS cluster with only Fargate profile, no Node Groups. Is it possible to enable HPA in this case? I tried to enable metric server as described here but pod creation fails with error 0/4 ...

3

Solved

I'm just starting with Kubernetes, and I'm working with HPA (HorizontalPodAutoscaler): apiVersion: autoscaling/v2beta2 kind: HorizontalPodAutoscaler metadata: name: find-complementary-account-info...
Disquieting asked 29/10, 2020 at 20:26

1

I have a Kubernetes cluster set up in DigitalOcean. The cluster is configured to auto-scale using HPA(Horizontal Pod Autoscaler). I want to prevent termination of a pod that got scaled up in the la...
Evalyn asked 11/6, 2020 at 15:37

1

Solved

I am trying to determine a reliable setup to use with K8S to scale one of my deployments using an HPA and an autoscaler. I want to minimize the amount of resources overcommitted but allow it to sca...
Garnettgarnette asked 30/3, 2021 at 22:19

1

Solved

Kubernetes v1.19 in AWS EKS I'm trying to implement horizontal pod autoscaling in my EKS cluster, and am trying to mimic what we do now with ECS. With ECS, we do something similar to the following ...
Torture asked 5/3, 2021 at 2:4

4

Solved

I am porting an application to run within k8s. I have run into an issue with ingress. I am trying to find a way to limit the number of REST API requests in flight at any given time to each backend ...
Salaidh asked 6/1, 2021 at 15:36

1

Solved

the Kubernetes HPA works correctly when load of the pod increased but after the load decreased, the scale of deployment doesn't change. This is my HPA file: apiVersion: autoscaling/v2beta2 kind: Ho...
Ubald asked 30/9, 2020 at 13:0

2

Solved

I have custom metrics exported to Google Cloud Monitoring and i want to scale my deployment according to it. This is my HPA: apiVersion: autoscaling/v2beta1 kind: HorizontalPodAutoscaler metadata...

2

I want to understand how HPA computes CPU utilization across Pods. According to this doc it takes the average of CPU utilization of a pod (average across the last 1 minute) divided by the CPU requ...
Flageolet asked 31/3, 2020 at 10:36

1

I´m trying to deploy metrics to kubernetes and something really strange is happening, I have one worker and one master. I have the following pods list: NAMESPACE NAME READY STATUS RESTARTS AGE IP ...
Watermark asked 6/2, 2020 at 18:27
1

© 2022 - 2024 — McMap. All rights reserved.