Skip to content
New issue

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

use 4 replicas for boskos janitor #505

Merged
merged 1 commit into from
Aug 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 24 additions & 5 deletions prow/cluster/build/boskos-janitor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ metadata:
app: boskos-janitor
namespace: test-pods
spec:
replicas: 3
replicas: 4
selector:
matchLabels:
app: boskos-janitor
Expand All @@ -44,8 +44,27 @@ spec:
- --verbose
resources:
requests:
cpu: 200m
memory: 20Mi
cpu: 1000m
memory: 1000Mi
limits:
cpu: 4000m
memory: 2560Mi
cpu: 3000m
memory: 6000Mi
# ---
# apiVersion: autoscaling/v2
# kind: HorizontalPodAutoscaler
# metadata:
# name: boskos-janitor
# spec:
# maxReplicas: 10
# minReplicas: 1
# scaleTargetRef:
# apiVersion: apps/v1
# kind: Deployment
# name: boskos-janitor
# metrics:
# - type: Resource
# resource:
# name: cpu
# target:
# type: Utilization
# averageUtilization: 50
Loading