mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-07-31 11:08:50 -04:00

find -name '*.go' -exec sed -i 's/SPDX-License-Identifier: AGPL-3.0-only/SPDX-License-Identifier: BUSL-1.1/' {} +
24 lines
766 B
Go
24 lines
766 B
Go
/*
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
package api
|
|
|
|
import updatev1alpha1 "github.com/edgelesssys/constellation/v2/operators/constellation-node-operator/api/v1alpha1"
|
|
|
|
// ScalingGroup is a cloud provider scaling group.
|
|
type ScalingGroup struct {
|
|
// Name is the csp specific name of the scaling group.
|
|
Name string
|
|
// NodeGroupName is the human friendly name of the node group
|
|
// as defined in the Constellation configuration.
|
|
NodeGroupName string
|
|
// GroupID is the CSP specific, canonical identifier of a scaling group.
|
|
GroupID string
|
|
// AutoscalingGroupName is name that is expected by the autoscaler.
|
|
AutoscalingGroupName string
|
|
// Role is the role of the nodes in the scaling group.
|
|
Role updatev1alpha1.NodeRole
|
|
}
|