Skip to content
This repository was archived by the owner on Mar 26, 2025. It is now read-only.

Commit c08f805

Browse files
committed
Cluster template and Kafka cluster config for load test
1 parent 214e4d8 commit c08f805

File tree

2 files changed

+436
-0
lines changed

2 files changed

+436
-0
lines changed
Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
{
2+
"name": "eks-eunorth-kafka-test",
3+
"location": "eu-north-1",
4+
"cloud": "amazon",
5+
"secretName": "my-aws-secret",
6+
"properties": {
7+
"eks": {
8+
"version": "1.14.7",
9+
"nodePools": {
10+
"infra": {
11+
"spotPrice": "0.2",
12+
"count": 5,
13+
"minCount": 5,
14+
"maxCount": 8,
15+
"autoscaling": true,
16+
"instanceType": "c5.xlarge",
17+
"subnet": {
18+
"cidr": "192.168.64.0/20",
19+
"availabilityZone": "eu-north-1a"
20+
}
21+
},
22+
"kafkazonea": {
23+
"spotPrice": "0.3",
24+
"count": 1,
25+
"minCount": 1,
26+
"maxCount": 1,
27+
"autoscaling": false,
28+
"instanceType": "c5.4xlarge",
29+
"subnet": {
30+
"cidr": "192.168.64.0/20",
31+
"availabilityZone": "eu-north-1a"
32+
}
33+
},
34+
"kafkazoneb": {
35+
"spotPrice": "0.3",
36+
"count": 1,
37+
"minCount": 1,
38+
"maxCount": 1,
39+
"autoscaling": false,
40+
"instanceType": "c5.4xlarge",
41+
"subnet": {
42+
"cidr": "192.168.80.0/20",
43+
"availabilityZone": "eu-north-1b"
44+
}
45+
},
46+
"kafkazonec": {
47+
"spotPrice": "0.3",
48+
"count": 1,
49+
"minCount": 1,
50+
"maxCount": 1,
51+
"autoscaling": false,
52+
"instanceType": "c5.4xlarge",
53+
"subnet": {
54+
"cidr": "192.168.96.0/20",
55+
"availabilityZone": "eu-north-1c"
56+
}
57+
},
58+
"loadgen": {
59+
"spotPrice": "0.3",
60+
"count": 3,
61+
"minCount": 3,
62+
"maxCount": 3,
63+
"autoscaling": false,
64+
"instanceType": "c5.2xlarge",
65+
"subnet": {
66+
"cidr": "192.168.96.0/20",
67+
"availabilityZone": "eu-north-1c"
68+
}
69+
}
70+
},
71+
"vpc": {
72+
"cidr": "192.168.0.0/16"
73+
},
74+
"subnets": [
75+
{
76+
"cidr": "192.168.64.0/20",
77+
"availabilityZone": "eu-north-1a"
78+
},
79+
{
80+
"cidr": "192.168.80.0/20",
81+
"availabilityZone": "eu-north-1b"
82+
},
83+
{
84+
"cidr": "192.168.96.0/20",
85+
"availabilityZone": "eu-north-1c"
86+
}
87+
]
88+
}
89+
}
90+
}

0 commit comments

Comments
 (0)