mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-02-09 11:28:29 -05:00
16 lines
513 B
Go
16 lines
513 B
Go
|
package kubernetes
|
||
|
|
||
|
// InitClusterInput collects the arguments to initialize a new cluster.
|
||
|
type InitClusterInput struct {
|
||
|
APIServerAdvertiseIP string
|
||
|
NodeName string
|
||
|
ProviderID string
|
||
|
SupportClusterAutoscaler bool
|
||
|
AutoscalingCloudprovider string
|
||
|
AutoscalingNodeGroups []string
|
||
|
SupportsCloudControllerManager bool
|
||
|
CloudControllerManagerName string
|
||
|
CloudControllerManagerImage string
|
||
|
CloudControllerManagerPath string
|
||
|
}
|