mirror of
https://github.com/siderolabs/omni.git
synced 2026-05-04 14:21:36 +02:00
Bump copyright for conformance to 2026 Signed-off-by: Edward Sammut Alessi <edward.sammutalessi@siderolabs.com>
18 lines
500 B
Go
18 lines
500 B
Go
// Copyright (c) 2026 Sidero Labs, Inc.
|
|
//
|
|
// Use of this software is governed by the Business Source License
|
|
// included in the LICENSE file.
|
|
|
|
package scope
|
|
|
|
// Perspective is the sub-action of the scope.
|
|
type Perspective string
|
|
|
|
// Perspective constants.
|
|
const (
|
|
PerspectiveNone = ""
|
|
PerspectiveKubernetesAccess = "kubernetes-api-access"
|
|
PerspectiveKubeconfigServiceAccount = "kubeconfig-service-account"
|
|
PerspectiveKubernetesUpgrade = "kubernetes-upgrade"
|
|
)
|