2022-09-05 03:06:08 -04:00
|
|
|
/*
|
|
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-07-29 09:00:15 -04:00
|
|
|
package constants
|
|
|
|
|
|
|
|
const (
|
2022-11-09 09:57:54 -05:00
|
|
|
// AutoscalingStrategyResourceName resource name used for AutoscalingStrategy.
|
|
|
|
AutoscalingStrategyResourceName = "autoscalingstrategy"
|
|
|
|
// NodeImageResourceName resource name used for NodeImage.
|
|
|
|
NodeImageResourceName = "constellation-os"
|
|
|
|
// ControlPlaneScalingGroupResourceName resource name used for ControlPlaneScalingGroup.
|
2022-07-29 09:00:15 -04:00
|
|
|
ControlPlaneScalingGroupResourceName = "scalinggroup-controlplane"
|
2022-11-09 09:57:54 -05:00
|
|
|
// WorkerScalingGroupResourceName resource name used for WorkerScaling.
|
|
|
|
WorkerScalingGroupResourceName = "scalinggroup-worker"
|
2022-07-29 09:00:15 -04:00
|
|
|
)
|