-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
subresource_scale_test.go
218 lines (187 loc) · 6.01 KB
/
subresource_scale_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
//go:build e2e
// +build e2e
package subresource_scale_test
import (
"fmt"
"strconv"
"strings"
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"k8s.io/client-go/kubernetes"
. "github.com/kedacore/keda/v2/tests/helper"
)
const (
testName = "subresource-scale-test"
)
var (
testNamespace = fmt.Sprintf("%s-ns", testName)
argoNamespace = "argo-rollouts"
monitoredDeploymentName = fmt.Sprintf("%s-monitored", testName)
argoRolloutName = fmt.Sprintf("%s-rollout", testName)
scaledObjectName = fmt.Sprintf("%s-so", testName)
)
type templateData struct {
TestNamespace string
MonitoredDeploymentName string
ArgoRolloutName string
ScaledObjectName string
}
const (
monitoredDeploymentTemplate = `apiVersion: apps/v1
kind: Deployment
metadata:
name: {{.MonitoredDeploymentName}}
namespace: {{.TestNamespace}}
labels:
app: {{.MonitoredDeploymentName}}
spec:
replicas: 0
selector:
matchLabels:
app: {{.MonitoredDeploymentName}}
template:
metadata:
labels:
app: {{.MonitoredDeploymentName}}
spec:
containers:
- name: nginx
image: 'nginxinc/nginx-unprivileged'`
argoRolloutTemplate = `apiVersion: argoproj.io/v1alpha1
kind: Rollout
metadata:
name: {{.ArgoRolloutName}}
namespace: {{.TestNamespace}}
labels:
app: {{.ArgoRolloutName}}
spec:
replicas: 0
strategy:
canary:
steps:
- setWeight: 50
- pause: {duration: 10}
selector:
matchLabels:
app: {{.ArgoRolloutName}}
template:
metadata:
labels:
app: {{.ArgoRolloutName}}
spec:
containers:
- name: nginx
image: nginxinc/nginx-unprivileged
`
scaledObjectTemplate = `apiVersion: keda.sh/v1alpha1
kind: ScaledObject
metadata:
name: {{.ScaledObjectName}}
namespace: {{.TestNamespace}}
spec:
scaleTargetRef:
apiVersion: argoproj.io/v1alpha1
kind: Rollout
name: {{.ArgoRolloutName}}
pollingInterval: 5
cooldownPeriod: 5
minReplicaCount: 0
maxReplicaCount: 10
advanced:
horizontalPodAutoscalerConfig:
behavior:
scaleDown:
stabilizationWindowSeconds: 5
triggers:
- type: kubernetes-workload
metadata:
podSelector: 'app={{.MonitoredDeploymentName}}'
value: '1'
`
)
func TestScaler(t *testing.T) {
// setup
t.Log("--- setting up ---")
// Create kubernetes resources
kc := GetKubernetesClient(t)
data, templates := getTemplateData()
t.Cleanup(func() {
// cleanup
DeleteKubernetesResources(t, testNamespace, data, templates)
cleanupArgo(t)
})
setupArgo(t, kc)
CreateKubernetesResources(t, kc, testNamespace, data, templates)
assert.True(t, waitForArgoRolloutReplicaCount(t, argoRolloutName, testNamespace, 0),
"replica count should be 0 after 1 minute")
// test scaling
testScaleOut(t, kc)
testScaleIn(t, kc)
}
func setupArgo(t *testing.T, kc *kubernetes.Clientset) {
CreateNamespace(t, kc, argoNamespace)
cmdWithNamespace := fmt.Sprintf("kubectl apply -n %s -f https://github.com/argoproj/argo-rollouts/releases/latest/download/install.yaml",
argoNamespace)
_, err := ExecuteCommand(cmdWithNamespace)
require.NoErrorf(t, err, "cannot install argo resources - %s", err)
}
func cleanupArgo(t *testing.T) {
cmdWithNamespace := fmt.Sprintf("kubectl delete -n %s -f https://github.com/argoproj/argo-rollouts/releases/latest/download/install.yaml",
argoNamespace)
_, err := ExecuteCommand(cmdWithNamespace)
assert.NoErrorf(t, err, "cannot delete argo resources - %s", err)
DeleteNamespace(t, argoNamespace)
}
func testScaleOut(t *testing.T, kc *kubernetes.Clientset) {
t.Log("--- testing scale out ---")
// scale monitored deployment to 5 replicas
KubernetesScaleDeployment(t, kc, monitoredDeploymentName, 5, testNamespace)
assert.True(t, waitForArgoRolloutReplicaCount(t, argoRolloutName, testNamespace, 5),
"replica count should be 5 after 1 minute")
// scale monitored deployment to 10 replicas
KubernetesScaleDeployment(t, kc, monitoredDeploymentName, 10, testNamespace)
assert.True(t, waitForArgoRolloutReplicaCount(t, argoRolloutName, testNamespace, 10),
"replica count should be 10 after 1 minute")
}
func testScaleIn(t *testing.T, kc *kubernetes.Clientset) {
t.Log("--- testing scale in ---")
// scale monitored deployment to 5 replicas
KubernetesScaleDeployment(t, kc, monitoredDeploymentName, 5, testNamespace)
assert.True(t, waitForArgoRolloutReplicaCount(t, argoRolloutName, testNamespace, 5),
"replica count should be 5 after 1 minute")
// scale monitored deployment to 0 replicas
KubernetesScaleDeployment(t, kc, monitoredDeploymentName, 0, testNamespace)
assert.True(t, waitForArgoRolloutReplicaCount(t, argoRolloutName, testNamespace, 0),
"replica count should be 0 after 1 minute")
}
func getTemplateData() (templateData, []Template) {
return templateData{
TestNamespace: testNamespace,
MonitoredDeploymentName: monitoredDeploymentName,
ArgoRolloutName: argoRolloutName,
ScaledObjectName: scaledObjectName,
}, []Template{
{Name: "monitoredDeploymentTemplate", Config: monitoredDeploymentTemplate},
{Name: "argoRolloutTemplate", Config: argoRolloutTemplate},
{Name: "scaledObjectTemplate", Config: scaledObjectTemplate},
}
}
func waitForArgoRolloutReplicaCount(t *testing.T, name, namespace string, target int) bool {
for i := 0; i < 60; i++ {
kctlGetCmd := fmt.Sprintf(`kubectl get rollouts.argoproj.io/%s -n %s -o jsonpath="{.spec.replicas}"`, argoRolloutName, namespace)
output, err := ExecuteCommand(kctlGetCmd)
assert.NoErrorf(t, err, "cannot get rollout info - %s", err)
unqoutedOutput := strings.ReplaceAll(string(output), "\"", "")
replicas, err := strconv.ParseInt(unqoutedOutput, 10, 64)
assert.NoErrorf(t, err, "cannot convert rollout count to int - %s", err)
t.Logf("Waiting for rollout replicas to hit target. Deployment - %s, Current - %d, Target - %d",
name, replicas, target)
if replicas == int64(target) {
return true
}
time.Sleep(time.Second)
}
return false
}