Skip to content

Commit c524600

Browse files
committedFeb 28, 2025··
Merge branch 'v0.9' of github.com:DataDog/watermarkpodautoscaler
2 parents 372f4a8 + 7cc4400 commit c524600

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed
 

‎bundle/manifests/watermarkpodautoscaler.clusterserviceversion.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ metadata:
4343
capabilities: Basic Install
4444
operators.operatorframework.io/builder: operator-sdk-v1.23.0
4545
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
46-
name: watermarkpodautoscaler.v0.9.0-rc.1
46+
name: watermarkpodautoscaler.v0.9.0
4747
namespace: placeholder
4848
spec:
4949
apiservicedefinitions: {}
@@ -175,7 +175,7 @@ spec:
175175
valueFrom:
176176
fieldRef:
177177
fieldPath: metadata.name
178-
image: gcr.io/datadoghq/watermarkpodautoscaler:v0.9.0-rc.1
178+
image: gcr.io/datadoghq/watermarkpodautoscaler:v0.9.0
179179
imagePullPolicy: IfNotPresent
180180
livenessProbe:
181181
httpGet:
@@ -249,4 +249,4 @@ spec:
249249
maturity: alpha
250250
provider:
251251
name: Datadog
252-
version: 0.9.0-rc.1
252+
version: 0.9.0

‎chart/watermarkpodautoscaler/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v1
2-
appVersion: v0.9.0-rc.1
2+
appVersion: v0.9.0
33
description: Watermark Pod Autoscaler
44
name: watermarkpodautoscaler
55
version: v0.5.1

‎chart/watermarkpodautoscaler/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
replicaCount: 1
66
image:
77
repository: gcr.io/datadoghq/watermarkpodautoscaler
8-
tag: v0.9.0-rc.1
8+
tag: v0.9.0
99
pullPolicy: IfNotPresent
1010
imagePullSecrets: []
1111
nameOverride: ""

‎config/manager/kustomization.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ resources:
33
images:
44
- name: gcr.io/datadoghq/watermarkpodautoscaler
55
newName: gcr.io/datadoghq/watermarkpodautoscaler
6-
newTag: v0.9.0-rc.1
6+
newTag: v0.9.0
77
apiVersion: kustomize.config.k8s.io/v1beta1
88
kind: Kustomization

‎controllers/datadoghq/recommender_test.go

+4-3
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,15 @@ import (
2222
"testing"
2323
"time"
2424

25-
autoscaling "github.com/DataDog/agent-payload/v5/autoscaling/kubernetes"
26-
"github.com/stretchr/testify/assert"
27-
"github.com/stretchr/testify/require"
2825
"google.golang.org/protobuf/encoding/protojson"
2926
"google.golang.org/protobuf/proto"
3027
"google.golang.org/protobuf/types/known/timestamppb"
3128
"k8s.io/apimachinery/pkg/api/resource"
3229

30+
"github.com/stretchr/testify/assert"
31+
"github.com/stretchr/testify/require"
32+
33+
autoscaling "github.com/DataDog/agent-payload/v5/autoscaling/kubernetes"
3334
"github.com/DataDog/watermarkpodautoscaler/apis/datadoghq/v1alpha1"
3435
)
3536

0 commit comments

Comments
 (0)
Please sign in to comment.