mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-08-14 09:45:34 -04:00
create state disk on constellation create
This commit is contained in:
parent
ede83bd555
commit
daf2280e3f
6 changed files with 51 additions and 21 deletions
|
@ -53,6 +53,7 @@ type Config struct {
|
|||
CoordinatorPort *string `json:"coordinatorport,omitempty"`
|
||||
AutoscalingNodeGroupsMin *int `json:"autoscalingnodegroupsmin,omitempty"`
|
||||
AutoscalingNodeGroupsMax *int `json:"autoscalingnodegroupsmax,omitempty"`
|
||||
StateDiskSizeGB *int `json:"statedisksizegb,omitempty"`
|
||||
Provider *ProviderConfig `json:"provider,omitempty"`
|
||||
}
|
||||
|
||||
|
@ -66,6 +67,7 @@ func Default() *Config {
|
|||
CoordinatorPort: proto.String(strconv.Itoa(coordinatorPort)),
|
||||
AutoscalingNodeGroupsMin: intPtr(1),
|
||||
AutoscalingNodeGroupsMax: intPtr(10),
|
||||
StateDiskSizeGB: intPtr(30),
|
||||
Provider: &ProviderConfig{
|
||||
EC2: &EC2Config{
|
||||
Image: proto.String("ami-07d3864beb84157d3"),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue