mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
f14af0c3eb
* upgrade: add Kubernetes components to NodeVersion * update rfc
19 lines
651 B
Go
19 lines
651 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"
|
|
// NodeVersionResourceName resource name used for NodeVersion.
|
|
NodeVersionResourceName = "constellation-version"
|
|
// ControlPlaneScalingGroupResourceName resource name used for ControlPlaneScalingGroup.
|
|
ControlPlaneScalingGroupResourceName = "scalinggroup-controlplane"
|
|
// WorkerScalingGroupResourceName resource name used for WorkerScaling.
|
|
WorkerScalingGroupResourceName = "scalinggroup-worker"
|
|
)
|