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"
|
|
|
|
// 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"
|
2023-06-06 09:22:06 -04:00
|
|
|
// PlaceholderImageName name of the OS image used if upgrades are not yet supported.
|
|
|
|
PlaceholderImageName = "unsupportedCSP"
|
|
|
|
// PlaceholderControlPlaneScalingGroupName name of the control plane scaling group used if upgrades are not yet supported.
|
|
|
|
PlaceholderControlPlaneScalingGroupName = "control-planes-id"
|
|
|
|
// PlaceholderWorkerScalingGroupName name of the worker scaling group used if upgrades are not yet supported.
|
|
|
|
PlaceholderWorkerScalingGroupName = "workers-id"
|
2022-07-29 09:00:15 -04:00
|
|
|
)
|