-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
**Reason for Change**: <!-- What does this PR improve or fix in Kaito? Why is it needed? --> **Requirements** - [ ] added unit tests and e2e tests (if applicable). **Issue Fixed**: <!-- If this PR fixes GitHub issue 4321, add "Fixes #4321" to the next line. --> **Notes for Reviewers**: --------- Signed-off-by: Heba Elayoty <hebaelayoty@gmail.com> Signed-off-by: Heba <31887807+helayoty@users.noreply.github.com>
- Loading branch information
Showing
3 changed files
with
1,482 additions
and
0 deletions.
There are no files selected for viewing
78 changes: 78 additions & 0 deletions
78
charts/kaito/workspace/crds/karpenter.azure.com_aksnodeclasses.yaml
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,78 @@ | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.14.0 | ||
name: aksnodeclasses.karpenter.azure.com | ||
spec: | ||
group: karpenter.azure.com | ||
names: | ||
categories: | ||
- karpenter | ||
kind: AKSNodeClass | ||
listKind: AKSNodeClassList | ||
plural: aksnodeclasses | ||
shortNames: | ||
- aksnc | ||
- aksncs | ||
singular: aksnodeclass | ||
scope: Cluster | ||
versions: | ||
- name: v1alpha2 | ||
schema: | ||
openAPIV3Schema: | ||
description: AKSNodeClass is the Schema for the AKSNodeClass API | ||
properties: | ||
apiVersion: | ||
description: |- | ||
APIVersion defines the versioned schema of this representation of an object. | ||
Servers should convert recognized schemas to the latest internal value, and | ||
may reject unrecognized values. | ||
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources | ||
type: string | ||
kind: | ||
description: |- | ||
Kind is a string value representing the REST resource this object represents. | ||
Servers may infer this from the endpoint the client submits requests to. | ||
Cannot be updated. | ||
In CamelCase. | ||
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
description: |- | ||
AKSNodeClassSpec is the top level specification for the AKS Karpenter Provider. | ||
This will contain configuration necessary to launch instances in AKS. | ||
properties: | ||
imageFamily: | ||
default: Ubuntu2204 | ||
description: ImageFamily is the image family that instances use. | ||
enum: | ||
- Ubuntu2204 | ||
- AzureLinux | ||
type: string | ||
imageVersion: | ||
description: ImageVersion is the image version that instances use. | ||
type: string | ||
osDiskSizeGB: | ||
default: 128 | ||
description: osDiskSizeGB is the size of the OS disk in GB. | ||
format: int32 | ||
minimum: 100 | ||
type: integer | ||
tags: | ||
additionalProperties: | ||
type: string | ||
description: Tags to be applied on Azure resources like instances. | ||
type: object | ||
type: object | ||
status: | ||
description: AKSNodeClassStatus contains the resolved state of the AKSNodeClass | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} |
Oops, something went wrong.