Skip to content

Commit

Permalink
Tweak autoscalers
Browse files Browse the repository at this point in the history
  • Loading branch information
jq1836 committed Nov 5, 2024
1 parent 076dc5f commit 5f38f68
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion kubernetes/autoscalers/api-gateway-hpa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ spec:
name: cpu
target:
type: Utilization
averageUtilization: 60
averageUtilization: 80
2 changes: 1 addition & 1 deletion kubernetes/autoscalers/frontend-hpa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ spec:
name: cpu
target:
type: Utilization
averageUtilization: 60
averageUtilization: 80
2 changes: 1 addition & 1 deletion kubernetes/autoscalers/question-service-hpa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ spec:
name: cpu
target:
type: Utilization
averageUtilization: 60
averageUtilization: 80
2 changes: 1 addition & 1 deletion kubernetes/autoscalers/user-service-hpa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ spec:
name: cpu
target:
type: Utilization
averageUtilization: 60
averageUtilization: 80
4 changes: 2 additions & 2 deletions kubernetes/deployments/api-gateway-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ spec:
resources:
requests:
memory: "500Mi"
cpu: "250m"
cpu: "200m"
limits:
memory: "500Mi"
cpu: "500m"
cpu: "400m"
restartPolicy: Always
4 changes: 2 additions & 2 deletions kubernetes/deployments/frontend-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ spec:
resources:
requests:
memory: "500Mi"
cpu: "250m"
cpu: "200m"
limits:
memory: "500Mi"
cpu: "500m"
cpu: "400m"
restartPolicy: Always
4 changes: 2 additions & 2 deletions kubernetes/deployments/question-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ spec:
resources:
requests:
memory: "500Mi"
cpu: "250m"
cpu: "200m"
limits:
memory: "500Mi"
cpu: "500m"
cpu: "400m"
restartPolicy: Always
4 changes: 2 additions & 2 deletions kubernetes/deployments/user-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ spec:
resources:
requests:
memory: "500Mi"
cpu: "250m"
cpu: "200m"
limits:
memory: "500Mi"
cpu: "500m"
cpu: "400m"
restartPolicy: Always

0 comments on commit 5f38f68

Please sign in to comment.