mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
17 lines
454 B
Go
17 lines
454 B
Go
/*
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
package cloud
|
|
|
|
const (
|
|
// TagRole is the tag/label key used to identify the role of a node.
|
|
TagRole = "constellation-role"
|
|
// TagUID is the tag/label key used to identify the UID of a cluster.
|
|
TagUID = "constellation-uid"
|
|
// TagInitSecretHash is the tag/label key used to identify the hash of the init secret.
|
|
TagInitSecretHash = "constellation-init-secret-hash"
|
|
)
|