Skip to content

Commit

Permalink
Add c5.4xlarge instance type to gitlab provisioner
Browse files Browse the repository at this point in the history
This is the instance type recommended by gitlab for the webservice.
https://docs.gitlab.com/ee/administration/reference_architectures/3k_users.html#cluster-topology
  • Loading branch information
mvandenburgh committed Apr 16, 2024
1 parent a2daab5 commit a051d8c
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ spec:
requirements:
- key: "node.kubernetes.io/instance-type"
operator: In
values: ["t3.xlarge", "m5.xlarge", "m5.4xlarge"]
values:
- "t3.xlarge"
- "m5.xlarge"
- "m5.4xlarge"
- "c5.4xlarge" # recommended by gitlab - https://docs.gitlab.com/ee/administration/reference_architectures/3k_users.html#cluster-topology

# Always use on-demand
- key: "karpenter.sh/capacity-type"
Expand Down

0 comments on commit a051d8c

Please sign in to comment.