Skip to content

Commit

Permalink
Allocate larger instance to primary write dhstore
Browse files Browse the repository at this point in the history
Main dhstore needs to have largest instance. Writes were previously failing.
  • Loading branch information
gammazero committed Aug 9, 2024
1 parent da4d444 commit f7d23b9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ spec:
mountPath: /data
resources:
limits:
cpu: "7"
cpu: "28"
memory: 58Gi
requests:
cpu: "7"
cpu: "28"
memory: 58Gi
ports:
- containerPort: 40081
Expand All @@ -43,7 +43,7 @@ spec:
- key: node.kubernetes.io/instance-type
operator: In
values:
- r6a.2xlarge
- c6a.8xlarge
- key: topology.kubernetes.io/zone
operator: In
values:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ spec:
mountPath: /data
resources:
limits:
cpu: "28"
cpu: "7"
memory: 58Gi
requests:
cpu: "28"
cpu: "7"
memory: 58Gi
ports:
- containerPort: 40081
Expand All @@ -37,7 +37,7 @@ spec:
- key: node.kubernetes.io/instance-type
operator: In
values:
- c6a.8xlarge
- r6a.2xlarge
- key: topology.kubernetes.io/zone
operator: In
values:
Expand Down

0 comments on commit f7d23b9

Please sign in to comment.