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