-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: cleaning up experiemental perf test scripts (#34)
* chore(provisioner-refs): removing references to legacy gpu provisioners * fix: fixing perf test scale up and removing old azure dashboard references in place of make az-mon dashboards * chore: bumping delete timeout for larger runs
- Loading branch information
1 parent
e983049
commit 887970a
Showing
3 changed files
with
63 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
|
||
--- | ||
apiVersion: karpenter.sh/v1beta1 | ||
kind: NodePool | ||
metadata: | ||
name: sm-general-purpose | ||
annotations: | ||
kubernetes.io/description: "General purpose NodePool for generic workloads with small nodes" | ||
spec: | ||
disruption: | ||
expireAfter: Never | ||
template: | ||
spec: | ||
# exclude very large SKUs (32+ vCPU) | ||
requirements: | ||
- key: kubernetes.io/arch | ||
operator: In | ||
values: ["amd64"] | ||
- key: kubernetes.io/os | ||
operator: In | ||
values: ["linux"] | ||
- key: karpenter.sh/capacity-type | ||
operator: In | ||
values: ["on-demand"] | ||
- key: karpenter.azure.com/sku-cpu | ||
operator: Lt | ||
values: ["3"] | ||
- key: karpenter.azure.com/sku-family | ||
operator: In | ||
values: [D] | ||
nodeClassRef: | ||
name: default | ||
--- | ||
apiVersion: karpenter.azure.com/v1alpha2 | ||
kind: AKSNodeClass | ||
metadata: | ||
name: default | ||
annotations: | ||
kubernetes.io/description: "General purpose AKSNodeClass for running Ubuntu2204 nodes" | ||
spec: | ||
imageFamily: Ubuntu2204 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters