-
Notifications
You must be signed in to change notification settings - Fork 17
/
burst_0.11.go
78 lines (68 loc) · 3.75 KB
/
burst_0.11.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
// Copyright © 2019 Ispirata Srl
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package deployment
import "github.com/Masterminds/semver/v3"
var astarteBurstProfile011 AstarteClusterProfile = AstarteClusterProfile{
Name: "burst",
Description: "Burst profile for test Clusters. No deterministic allocations, all Astarte Pods work on bursts.",
Requirements: AstarteProfileRequirements{
CPUAllocation: 2 * 1000,
MemoryAllocation: 5 * 1024 * 1024 * 1024,
MaxNodes: 1,
},
Compatibility: AstarteProfileCompatibility{},
DefaultSpec: Astartev1alpha1DeploymentSpec{},
CustomizableFields: []AstarteProfileCustomizableField{},
}
func init() {
astarteBurstProfile011.Compatibility.MaxAstarteVersion, _ = semver.NewVersion("0.11.99")
astarteBurstProfile011.Compatibility.MinAstarteVersion, _ = semver.NewVersion("0.11.0")
// Let components burst only
astarteBurstProfile011.DefaultSpec.Components.Resources.Requests.CPU = "0m"
astarteBurstProfile011.DefaultSpec.Components.Resources.Requests.Memory = "2048M"
astarteBurstProfile011.DefaultSpec.Components.Resources.Limits.CPU = "0m"
astarteBurstProfile011.DefaultSpec.Components.Resources.Limits.Memory = "3072M"
// Queue size to a minimum, decent amount
astarteBasicProfile011.DefaultSpec.Components.DataUpdaterPlant.DataQueueCount = 128
// Very tiny Cassandra installation
astarteBurstProfile011.DefaultSpec.Cassandra.Deploy = true
astarteBurstProfile011.DefaultSpec.Cassandra.MaxHeapSize = "512M"
astarteBurstProfile011.DefaultSpec.Cassandra.HeapNewSize = "256M"
astarteBurstProfile011.DefaultSpec.Cassandra.Resources.Requests.CPU = "500m"
astarteBurstProfile011.DefaultSpec.Cassandra.Resources.Requests.Memory = "1024M"
astarteBurstProfile011.DefaultSpec.Cassandra.Resources.Limits.CPU = "1000m"
astarteBurstProfile011.DefaultSpec.Cassandra.Resources.Limits.Memory = "2048M"
astarteBurstProfile011.DefaultSpec.Cassandra.Storage.Size = "10Gi"
// Minimal CFSSL installation
astarteBurstProfile011.DefaultSpec.Cfssl.Deploy = true
astarteBurstProfile011.DefaultSpec.Cfssl.Resources.Requests.CPU = "0m"
astarteBurstProfile011.DefaultSpec.Cfssl.Resources.Requests.Memory = "128M"
astarteBurstProfile011.DefaultSpec.Cfssl.Resources.Limits.CPU = "0m"
astarteBurstProfile011.DefaultSpec.Cfssl.Resources.Limits.Memory = "128M"
astarteBurstProfile011.DefaultSpec.Cfssl.Storage.Size = "2Gi"
// Minimal RabbitMQ installation
astarteBurstProfile011.DefaultSpec.Rabbitmq.Deploy = true
astarteBurstProfile011.DefaultSpec.Rabbitmq.Resources.Requests.CPU = "200m"
astarteBurstProfile011.DefaultSpec.Rabbitmq.Resources.Requests.Memory = "256M"
astarteBurstProfile011.DefaultSpec.Rabbitmq.Resources.Limits.CPU = "1000m"
astarteBurstProfile011.DefaultSpec.Rabbitmq.Resources.Limits.Memory = "256M"
astarteBurstProfile011.DefaultSpec.Rabbitmq.Storage.Size = "4Gi"
// Minimal VerneMQ installation
astarteBurstProfile011.DefaultSpec.Vernemq.Deploy = true
astarteBurstProfile011.DefaultSpec.Vernemq.Resources.Requests.CPU = "200m"
astarteBurstProfile011.DefaultSpec.Vernemq.Resources.Requests.Memory = "256M"
astarteBurstProfile011.DefaultSpec.Vernemq.Resources.Limits.CPU = "1000m"
astarteBurstProfile011.DefaultSpec.Vernemq.Resources.Limits.Memory = "256M"
astarteBurstProfile011.DefaultSpec.Vernemq.Storage.Size = "4Gi"
}