mirror of
https://github.com/cloudnative-pg/plugin-barman-cloud.git
synced 2026-01-12 05:33:11 +01:00
16 lines
705 B
Go
16 lines
705 B
Go
package metadata
|
|
|
|
// MetadataNamespace is the namespace used for the Barman Cloud plugin metadata
|
|
const MetadataNamespace = "barmancloud.cnpg.io"
|
|
|
|
const (
|
|
// UseDefaultAzureCredentialsAnnotationName is an annotation that can be set
|
|
// on an ObjectStore resource to enable the use DefaultAzureCredentials
|
|
// to authenticate to Azure. This is meant to be used with inheritFromAzureAD enabled.
|
|
UseDefaultAzureCredentialsAnnotationName = MetadataNamespace + "/useDefaultAzureCredentials"
|
|
|
|
// UseDefaultAzureCredentialsTrueValue is the value for the annotation
|
|
// barmancloud.cnpg.io/useDefaultAzureCredentials to enable the use of DefaultAzureCredentials
|
|
UseDefaultAzureCredentialsTrueValue = "true"
|
|
)
|