fix(region): vendor update

This commit is contained in:
ioito
2023-05-25 16:16:11 +08:00
parent 2fe92ee856
commit 13a00e9d4f
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -84,7 +84,7 @@ require (
k8s.io/client-go v0.19.3
k8s.io/cluster-bootstrap v0.19.3
moul.io/http2curl/v2 v2.3.0
yunion.io/x/cloudmux v0.3.10-0-alpha.1.0.20230525035236-b032ba3b3d55
yunion.io/x/cloudmux v0.3.10-0-alpha.1.0.20230525081107-b62df8a9ea39
yunion.io/x/executor v0.0.0-20211018100936-39a2cd966656
yunion.io/x/jsonutils v1.0.1-0.20230428104347-7c2fdff8e8e7
yunion.io/x/log v1.0.1-0.20230411060016-feb3f46ab361
+2 -2
View File
@@ -1185,8 +1185,8 @@ sigs.k8s.io/structured-merge-diff/v4 v4.0.1/go.mod h1:bJZC9H9iH24zzfZ/41RGcq60oK
sigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o=
sigs.k8s.io/yaml v1.2.0 h1:kr/MCeFWJWTwyaHoR9c8EjH9OumOmoF9YGiZd7lFm/Q=
sigs.k8s.io/yaml v1.2.0/go.mod h1:yfXDCHCao9+ENCvLSE62v9VSji2MKu5jeNfTrofGhJc=
yunion.io/x/cloudmux v0.3.10-0-alpha.1.0.20230525035236-b032ba3b3d55 h1:FDeXeTfHJgVG0Ya5ISSQWR7caKqT7VfR6YW+Ognqsms=
yunion.io/x/cloudmux v0.3.10-0-alpha.1.0.20230525035236-b032ba3b3d55/go.mod h1:crMeQeaNaZefTXfXbQkoj5SStggqkSNVABHtYBFjM3Y=
yunion.io/x/cloudmux v0.3.10-0-alpha.1.0.20230525081107-b62df8a9ea39 h1:XcXcLQYRjtbIPDQHwR+jIiTSDpR0XkmLt95DnGax30I=
yunion.io/x/cloudmux v0.3.10-0-alpha.1.0.20230525081107-b62df8a9ea39/go.mod h1:crMeQeaNaZefTXfXbQkoj5SStggqkSNVABHtYBFjM3Y=
yunion.io/x/executor v0.0.0-20211018100936-39a2cd966656 h1:0zlZD5uhZoIHgLVAWCz2aHaYk2ZrNsACCYD7R6EIBII=
yunion.io/x/executor v0.0.0-20211018100936-39a2cd966656/go.mod h1:Uxuou9WQIeJXNpy7t2fPLL0BYLvLiMvGQwY7Qc6aSws=
yunion.io/x/jsonutils v0.0.0-20190625054549-a964e1e8a051/go.mod h1:4N0/RVzsYL3kH3WE/H1BjUQdFiWu50JGCFQuuy+Z634=
+1 -1
View File
@@ -1457,7 +1457,7 @@ sigs.k8s.io/structured-merge-diff/v4/value
# sigs.k8s.io/yaml v1.2.0
## explicit; go 1.12
sigs.k8s.io/yaml
# yunion.io/x/cloudmux v0.3.10-0-alpha.1.0.20230525035236-b032ba3b3d55
# yunion.io/x/cloudmux v0.3.10-0-alpha.1.0.20230525081107-b62df8a9ea39
## explicit; go 1.18
yunion.io/x/cloudmux/pkg/apis
yunion.io/x/cloudmux/pkg/apis/billing
+2 -2
View File
@@ -158,14 +158,14 @@ const (
func (self *SAliyunClient) EnableImageExport() error {
_, err := self.GetRole(AliyunECSImageExportRole)
if err != nil {
if err != cloudprovider.ErrNotFound {
if errors.Cause(err) != cloudprovider.ErrNotFound {
return err
}
_, err = self.CreateRole(AliyunECSImageExportRole,
AliyunECSImageExportRoleDocument,
"Allow Export Import to OSS")
if err != nil {
return err
return errors.Wrapf(err, "CreateRole")
}
}