Skip to content

Commit a0fce3c

Browse files
authored
Merge pull request #7060 from yaroslava-serdiuk/api-update
[cluster-autoscaler-release-1.30] Update ProvReq annotations to new prefix
2 parents a2840cd + e0dd21a commit a0fce3c

File tree

11 files changed

+145
-23
lines changed

11 files changed

+145
-23
lines changed

cluster-autoscaler/apis/provisioningrequest/autoscaling.x-k8s.io/v1beta1/types.go

+4
Original file line numberDiff line numberDiff line change
@@ -200,4 +200,8 @@ const (
200200
// ProvisioningClassBestEffortAtomicScaleUp denotes that CA try to provision the capacity
201201
// in an atomic manner.
202202
ProvisioningClassBestEffortAtomicScaleUp string = "best-effort-atomic-scale-up.autoscaling.x-k8s.io"
203+
// ProvisioningRequestPodAnnotationKey is a key used to annotate pods consuming provisioning request.
204+
ProvisioningRequestPodAnnotationKey = "autoscaling.x-k8s.io/consume-provisioning-request"
205+
// ProvisioningClassPodAnnotationKey is a key used to add annotation about Provisioning Class
206+
ProvisioningClassPodAnnotationKey = "autoscaling.x-k8s.io/provisioning-class-name"
203207
)

cluster-autoscaler/processors/provreq/pods_filter.go

+7-6
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,14 @@ import (
2222

2323
apiv1 "k8s.io/api/core/v1"
2424
v1 "k8s.io/api/core/v1"
25+
"k8s.io/autoscaler/cluster-autoscaler/apis/provisioningrequest/autoscaling.x-k8s.io/v1beta1"
2526
"k8s.io/autoscaler/cluster-autoscaler/context"
2627
"k8s.io/autoscaler/cluster-autoscaler/processors/pods"
28+
provreqpods "k8s.io/autoscaler/cluster-autoscaler/provisioningrequest/pods"
2729
"k8s.io/autoscaler/cluster-autoscaler/utils/klogx"
2830
)
2931

30-
const (
31-
// ProvisioningRequestPodAnnotationKey is an annotation on pod that indicate that pod was created by ProvisioningRequest.
32-
ProvisioningRequestPodAnnotationKey = "cluster-autoscaler.kubernetes.io/consume-provisioning-request"
33-
maxProvReqEvent = 50
34-
)
32+
const maxProvReqEvent = 50
3533

3634
// EventManager is an interface for handling events for provisioning request.
3735
type EventManager interface {
@@ -102,6 +100,9 @@ func provisioningRequestName(pod *v1.Pod) (string, bool) {
102100
if pod == nil || pod.Annotations == nil {
103101
return "", false
104102
}
105-
provReqName, found := pod.Annotations[ProvisioningRequestPodAnnotationKey]
103+
provReqName, found := pod.Annotations[v1beta1.ProvisioningRequestPodAnnotationKey]
104+
if !found {
105+
provReqName, found = pod.Annotations[provreqpods.DeprecatedProvisioningRequestPodAnnotationKey]
106+
}
106107
return provReqName, found
107108
}

cluster-autoscaler/processors/provreq/pods_filter_test.go

+5-3
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,19 @@ import (
2424
"github.com/stretchr/testify/assert"
2525
apiv1 "k8s.io/api/core/v1"
2626
v1 "k8s.io/api/core/v1"
27+
"k8s.io/autoscaler/cluster-autoscaler/apis/provisioningrequest/autoscaling.x-k8s.io/v1beta1"
2728
"k8s.io/autoscaler/cluster-autoscaler/context"
29+
"k8s.io/autoscaler/cluster-autoscaler/provisioningrequest/pods"
2830
. "k8s.io/autoscaler/cluster-autoscaler/utils/test"
2931
"k8s.io/client-go/tools/record"
3032
)
3133

3234
func TestProvisioningRequestPodsFilter(t *testing.T) {
3335
prPod1 := BuildTestPod("pr-pod-1", 500, 10)
34-
prPod1.Annotations[ProvisioningRequestPodAnnotationKey] = "pr-class"
36+
prPod1.Annotations[v1beta1.ProvisioningRequestPodAnnotationKey] = "pr-class"
3537

3638
prPod2 := BuildTestPod("pr-pod-2", 500, 10)
37-
prPod2.Annotations[ProvisioningRequestPodAnnotationKey] = "pr-class-2"
39+
prPod2.Annotations[pods.DeprecatedProvisioningRequestPodAnnotationKey] = "pr-class-2"
3840

3941
pod1 := BuildTestPod("pod-1", 500, 10)
4042
pod2 := BuildTestPod("pod-2", 500, 10)
@@ -91,7 +93,7 @@ func TestEventManager(t *testing.T) {
9193

9294
for i := 0; i < 10; i++ {
9395
prPod := BuildTestPod(fmt.Sprintf("pr-pod-%d", i), 10, 10)
94-
prPod.Annotations[ProvisioningRequestPodAnnotationKey] = "pr-class"
96+
prPod.Annotations[v1beta1.ProvisioningRequestPodAnnotationKey] = "pr-class"
9597
unscheduledPods = append(unscheduledPods, prPod)
9698
}
9799
got, err := prFilter.Process(ctx, unscheduledPods)

cluster-autoscaler/proposals/provisioning-request.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -184,10 +184,13 @@ not required in ProvReq’s template, though can be specified):
184184

185185
```yaml
186186
annotations:
187-
"cluster-autoscaler.kubernetes.io/provisioning-class-name": "provreq-class-name"
188-
"cluster-autoscaler.kubernetes.io/consume-provisioning-request": "provreq-name"
187+
"autoscaling.x-k8s.io/provisioning-class-name": "provreq-class-name"
188+
"autoscaling.x-k8s.io/consume-provisioning-request": "provreq-name"
189189
```
190190
191+
Previous prosoal included annotations with prefix `cluster-autoscaler.kubernetes.io`
192+
but were deprecated as part of API reivew.
193+
191194
If those are provided for the pods that consume the ProvReq with `check-capacity.kubernetes.io` class,
192195
the CA will not provision the capacity, even if it was needed (as some other pods might have been
193196
scheduled on it) and will result in visibility events passed to the ProvReq and pods.

cluster-autoscaler/provisioningrequest/orchestrator/wrapper_orchestrator.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ package orchestrator
1919
import (
2020
appsv1 "k8s.io/api/apps/v1"
2121
apiv1 "k8s.io/api/core/v1"
22+
"k8s.io/autoscaler/cluster-autoscaler/apis/provisioningrequest/autoscaling.x-k8s.io/v1beta1"
2223
"k8s.io/autoscaler/cluster-autoscaler/clusterstate"
2324
"k8s.io/autoscaler/cluster-autoscaler/context"
2425
"k8s.io/autoscaler/cluster-autoscaler/core/scaleup"
2526
"k8s.io/autoscaler/cluster-autoscaler/core/scaleup/orchestrator"
2627
"k8s.io/autoscaler/cluster-autoscaler/estimator"
2728
ca_processors "k8s.io/autoscaler/cluster-autoscaler/processors"
28-
"k8s.io/autoscaler/cluster-autoscaler/processors/provreq"
2929
"k8s.io/autoscaler/cluster-autoscaler/processors/status"
3030
"k8s.io/autoscaler/cluster-autoscaler/utils/errors"
3131
"k8s.io/autoscaler/cluster-autoscaler/utils/taints"
@@ -87,7 +87,7 @@ func (o *WrapperOrchestrator) ScaleUp(
8787

8888
func splitOut(unschedulablePods []*apiv1.Pod) (provReqPods, regularPods []*apiv1.Pod) {
8989
for _, pod := range unschedulablePods {
90-
if _, ok := pod.Annotations[provreq.ProvisioningRequestPodAnnotationKey]; ok {
90+
if _, ok := pod.Annotations[v1beta1.ProvisioningRequestPodAnnotationKey]; ok {
9191
provReqPods = append(provReqPods, pod)
9292
} else {
9393
regularPods = append(regularPods, pod)

cluster-autoscaler/provisioningrequest/orchestrator/wrapper_orchestrator_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ import (
2222
"github.com/stretchr/testify/assert"
2323
appsv1 "k8s.io/api/apps/v1"
2424
apiv1 "k8s.io/api/core/v1"
25+
"k8s.io/autoscaler/cluster-autoscaler/apis/provisioningrequest/autoscaling.x-k8s.io/v1beta1"
2526
"k8s.io/autoscaler/cluster-autoscaler/clusterstate"
2627
"k8s.io/autoscaler/cluster-autoscaler/context"
2728
"k8s.io/autoscaler/cluster-autoscaler/estimator"
2829
ca_processors "k8s.io/autoscaler/cluster-autoscaler/processors"
29-
"k8s.io/autoscaler/cluster-autoscaler/processors/provreq"
3030
"k8s.io/autoscaler/cluster-autoscaler/processors/status"
3131
"k8s.io/autoscaler/cluster-autoscaler/utils/errors"
3232
"k8s.io/autoscaler/cluster-autoscaler/utils/taints"
@@ -53,7 +53,7 @@ func TestWrapperScaleUp(t *testing.T) {
5353
BuildTestPod("pr-pod-2", 1, 100),
5454
}
5555
for _, pod := range provReqPods {
56-
pod.Annotations[provreq.ProvisioningRequestPodAnnotationKey] = "true"
56+
pod.Annotations[v1beta1.ProvisioningRequestPodAnnotationKey] = "true"
5757
}
5858
unschedulablePods := append(regularPods, provReqPods...)
5959
_, err := o.ScaleUp(unschedulablePods, nil, nil, nil, false)

cluster-autoscaler/provisioningrequest/pods/pods.go

+7-6
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,16 @@ import (
2323
v1 "k8s.io/api/core/v1"
2424
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
2525
"k8s.io/apimachinery/pkg/types"
26+
"k8s.io/autoscaler/cluster-autoscaler/apis/provisioningrequest/autoscaling.x-k8s.io/v1beta1"
2627
"k8s.io/autoscaler/cluster-autoscaler/provisioningrequest/provreqwrapper"
2728
"k8s.io/kubernetes/pkg/controller"
2829
)
2930

3031
const (
31-
// ProvisioningRequestPodAnnotationKey is a key used to annotate pods consuming provisioning request.
32-
ProvisioningRequestPodAnnotationKey = "cluster-autoscaler.kubernetes.io/consume-provisioning-request"
33-
// ProvisioningClassPodAnnotationKey is a key used to add annotation about Provisioning Class
34-
ProvisioningClassPodAnnotationKey = "cluster-autoscaler.kubernetes.io/provisioning-class-name"
32+
// DeprecatedProvisioningRequestPodAnnotationKey is a key used to annotate pods consuming provisioning request.
33+
DeprecatedProvisioningRequestPodAnnotationKey = "cluster-autoscaler.kubernetes.io/consume-provisioning-request"
34+
// DeprecatedProvisioningClassPodAnnotationKey is a key used to add annotation about Provisioning Class
35+
DeprecatedProvisioningClassPodAnnotationKey = "cluster-autoscaler.kubernetes.io/provisioning-class-name"
3536
)
3637

3738
// PodsForProvisioningRequest returns a list of pods for which Provisioning
@@ -77,8 +78,8 @@ func populatePodFields(pr *provreqwrapper.ProvisioningRequest, pod *v1.Pod, i, j
7778
if pod.Annotations == nil {
7879
pod.Annotations = make(map[string]string)
7980
}
80-
pod.Annotations[ProvisioningRequestPodAnnotationKey] = pr.Name
81-
pod.Annotations[ProvisioningClassPodAnnotationKey] = pr.Spec.ProvisioningClassName
81+
pod.Annotations[v1beta1.ProvisioningRequestPodAnnotationKey] = pr.Name
82+
pod.Annotations[v1beta1.ProvisioningClassPodAnnotationKey] = pr.Spec.ProvisioningClassName
8283
pod.UID = types.UID(fmt.Sprintf("%s/%s", pod.Namespace, pod.Name))
8384
pod.CreationTimestamp = pr.CreationTimestamp
8485
}

cluster-autoscaler/provisioningrequest/pods/pods_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ func TestPodsForProvisioningRequest(t *testing.T) {
4242
Namespace: "test-namespace",
4343
UID: types.UID(fmt.Sprintf("test-namespace/%s", name)),
4444
Annotations: map[string]string{
45-
ProvisioningRequestPodAnnotationKey: prName,
46-
ProvisioningClassPodAnnotationKey: testProvisioningClassName,
45+
v1beta1.ProvisioningRequestPodAnnotationKey: prName,
46+
v1beta1.ProvisioningClassPodAnnotationKey: testProvisioningClassName,
4747
},
4848
Labels: map[string]string{},
4949
Finalizers: []string{},

cluster-autoscaler/vendor/k8s.io/autoscaler/cluster-autoscaler/apis/provisioningrequest/autoscaling.x-k8s.io/v1beta1/types.go

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cluster-autoscaler/vendor/k8s.io/autoscaler/cluster-autoscaler/apis/provisioningrequest/client/applyconfiguration/internal/internal.go

+62
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cluster-autoscaler/vendor/k8s.io/autoscaler/cluster-autoscaler/apis/provisioningrequest/client/applyconfiguration/utils.go

+45
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)