Skip to content

Commit

Permalink
Update values.yaml with new toleration and resources
Browse files Browse the repository at this point in the history
  • Loading branch information
pahmadi8740 authored Nov 3, 2023
1 parent 7dc344a commit d5539e3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions deploy/kg2/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ ingress:
# With the following two sections, we can restrict the deployment on and only on the specific node
# toleration to node taint such that this deployment can be scheduled on the tainted node while others without the toleration can not
tolerations:
- key : "rtx"
value : "kg2"
- key : "transltr"
value : "managed-app"
operator : "Equal"
effect : "NoSchedule"

Expand All @@ -59,7 +59,7 @@ affinity:
- key: application
operator: In
values:
- kg2
- managed-app
# this ensures only ONE pod will run on each node
podAntiAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
Expand All @@ -68,7 +68,7 @@ affinity:
- key: app.kubernetes.io/name
operator: In
values:
- kg2
- managed-app
topologyKey: "kubernetes.io/hostname"

storageClassName:
Expand All @@ -80,8 +80,8 @@ storage:

resources:
requests:
memory: 56Gi
cpu: 13000m
memory: 50Gi
cpu: 10000m
limits:
memory: 58Gi
cpu: 14000m

0 comments on commit d5539e3

Please sign in to comment.