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

Update values.yaml with new affinity an tolerations #818

Merged
merged 1 commit into from
May 2, 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
8 changes: 4 additions & 4 deletions deploy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ env:
# toleration to node taint such that this deployment can be scheduled on the tainted node while others without the toleration can not
tolerations:
- key : "transltr"
value : "managed-app"
value : "bte"
operator : "Equal"
effect : "NoSchedule"

Expand All @@ -65,7 +65,7 @@ affinity:
- key: application
operator: In
values:
- managed-app
- bte
# this ensures only ONE pod will run on each node
podAntiAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
Expand All @@ -74,12 +74,12 @@ affinity:
- key: app.kubernetes.io/name
operator: In
values:
- managed-app
- bte
topologyKey: "kubernetes.io/hostname"
resources:
requests:
memory: 50Gi
cpu: 10000m
limits:
memory: 58Gi
cpu: 14000m
cpu: 14000m
Loading