mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-09-13 11:34:54 +00:00
Change errors.Cause to errors.Is, because github.com/cockroachdb/errors New() function create a error with error stack with depth 1, but github.com/pkg/errors's New() function create error with no depth. Signed-off-by: Xun Jiang <xun.jiang@broadcom.com>
51 lines
1.5 KiB
Go
51 lines
1.5 KiB
Go
/*
|
|
Copyright the Velero contributors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package config
|
|
|
|
import (
|
|
"github.com/cockroachdb/errors"
|
|
|
|
"github.com/vmware-tanzu/velero/pkg/util/azure"
|
|
)
|
|
|
|
// GetAzureResticEnvVars gets the environment variables that restic
|
|
// relies on (AZURE_ACCOUNT_NAME and AZURE_ACCOUNT_KEY) based
|
|
// on info in the provided object storage location config map.
|
|
func GetAzureResticEnvVars(config map[string]string) (map[string]string, error) {
|
|
storageAccount := config[azure.BSLConfigStorageAccount]
|
|
if storageAccount == "" {
|
|
return nil, errors.New("storageAccount is required in the BSL")
|
|
}
|
|
|
|
creds, err := azure.LoadCredentials(config)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// restic doesn't support Azure AD, set it as false
|
|
config[azure.BSLConfigUseAAD] = "false"
|
|
credentials, err := azure.GetStorageAccountCredentials(config, creds)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return map[string]string{
|
|
"AZURE_ACCOUNT_NAME": storageAccount,
|
|
"AZURE_ACCOUNT_KEY": credentials[azure.CredentialKeyStorageAccountAccessKey],
|
|
}, nil
|
|
}
|