mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
b3c052e299
* operators: cleanup placeholder nodeversion * e2e: improve upgrade test portability
23 lines
1011 B
Go
23 lines
1011 B
Go
/*
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
package constants
|
|
|
|
const (
|
|
// AutoscalingStrategyResourceName resource name used for AutoscalingStrategy.
|
|
AutoscalingStrategyResourceName = "autoscalingstrategy"
|
|
// ControlPlaneScalingGroupResourceName resource name used for ControlPlaneScalingGroup.
|
|
ControlPlaneScalingGroupResourceName = "scalinggroup-controlplane"
|
|
// WorkerScalingGroupResourceName resource name used for WorkerScaling.
|
|
WorkerScalingGroupResourceName = "scalinggroup-worker"
|
|
// 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"
|
|
)
|