Skip to content

Commit

Permalink
Merge pull request kubernetes#6714 from yaroslava-serdiuk/provreq-api
Browse files Browse the repository at this point in the history
Update ProvisioningClass API Group
  • Loading branch information
k8s-ci-robot authored Apr 16, 2024
2 parents 3c0daad + 97707b8 commit 95c985d
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ const (
// CapacityRevoked indicates that requested resources are not longer valid.
CapacityRevoked string = "CapacityRevoked"
// Provisioned indicates that all of the requested resources were created
// and are available in the cluster. CA will set this condition when the
// and registered in the cluster. CA will set this condition when the
// VM creation finishes successfully.
Provisioned string = "Provisioned"
// Failed indicates that it is impossible to obtain resources to fulfill
Expand All @@ -194,10 +194,10 @@ const (
)

const (
// ProvisioningClassCheckCapacity denotes that CA will check if free capacity
// is available in the cluster.
ProvisioningClassCheckCapacity string = "check-capacity.kubernetes.io"
// ProvisioningClassCheckCapacity denotes that CA will check if current cluster state can fulfill this request,
// and reserve the capacity for a specified time.
ProvisioningClassCheckCapacity string = "check-capacity.autoscaling.x-k8s.io"
// ProvisioningClassAtomicScaleUp denotes that CA try to provision the capacity
// in an atomic manner.
ProvisioningClassAtomicScaleUp string = "atomic-scale-up.kubernetes.io"
ProvisioningClassAtomicScaleUp string = "atomic-scale-up.autoscaling.x-k8s.io"
)

0 comments on commit 95c985d

Please sign in to comment.