-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #54 from lijiuxing1/feature/oos-secret-parameter
support synchronization Alibaba Cloud OOS encrypted parameter
- Loading branch information
Showing
18 changed files
with
661 additions
and
285 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,19 @@ | ||
apiVersion: v1 | ||
name: csi-secrets-store-provider-alibabacloud | ||
version: 0.2.0 | ||
appVersion: 0.2.0 | ||
version: 0.3.0 | ||
appVersion: 0.3.0 | ||
kubeVersion: ">=1.16.0-0" | ||
description: A Helm chart to install the Secrets Store CSI Driver and the Alibaba Cloud KMS Secret Manager Provider inside a Kubernetes cluster. | ||
description: A Helm chart to install the Secrets Store CSI Driver, the Alibaba Cloud KMS Secret Manager and OOS Eencrypted Parameter Provider inside a Kubernetes cluster. | ||
sources: | ||
- https://github.com/AliyunContainerService/secrets-store-csi-driver-provider-alibabacloud | ||
home: https://github.com/AliyunContainerService/secrets-store-csi-driver-provider-alibabacloud | ||
keywords: | ||
- releaseName:csi-secrets-store-provider-alibabacloud | ||
- arch:amd64 | ||
- namespace:kube-system | ||
- supportType:ExternalKubernetes,Kubernetes,ManagedKubernetes | ||
dependencies: | ||
- name: secrets-store-csi-driver | ||
repository: https://kubernetes-sigs.github.io/secrets-store-csi-driver/charts | ||
version: 1.3.4 | ||
condition: secrets-store-csi-driver.install | ||
- name: secrets-store-csi-driver | ||
repository: https://kubernetes-sigs.github.io/secrets-store-csi-driver/charts | ||
version: 1.4.6 | ||
condition: secrets-store-csi-driver.install |
226 changes: 135 additions & 91 deletions
226
charts/csi-secrets-store-provider-alibabacloud/README.md
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file removed
BIN
-10 KB
charts/csi-secrets-store-provider-alibabacloud/charts/secrets-store-csi-driver-1.3.3.tgz
Binary file not shown.
Binary file added
BIN
+10.1 KB
charts/csi-secrets-store-provider-alibabacloud/charts/secrets-store-csi-driver-1.4.6.tgz
Binary file not shown.
6 changes: 3 additions & 3 deletions
6
charts/csi-secrets-store-provider-alibabacloud/requirements.lock
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
dependencies: | ||
- name: secrets-store-csi-driver | ||
repository: https://kubernetes-sigs.github.io/secrets-store-csi-driver/charts | ||
version: 1.1.2 | ||
digest: sha256:543dde1cbada9fd6b4851ae330a536d65e0041c966188d70db27bb7eecbbcbc1 | ||
generated: "2022-09-29T11:11:26.118364+08:00" | ||
version: 1.4.6 | ||
digest: sha256:4cca22eafe8fdf6595262f23d7a7b0fef387973298772dc51c618a064c1b0a5e | ||
generated: "2024-11-27T16:22:06.8520173+08:00" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
apiVersion: secrets-store.csi.x-k8s.io/v1alpha1 | ||
apiVersion: secrets-store.csi.x-k8s.io/v1 | ||
kind: SecretProviderClass | ||
metadata: | ||
name: test-secrets | ||
namespace: kube-system | ||
spec: | ||
provider: alibabacloud # please using fixed value 'alibabacloud' | ||
provider: alibabacloud # please using fixed value 'alibabacloud' | ||
parameters: | ||
objects: | | ||
- objectName: "test" | ||
- objectName: "test-kms" | ||
objectType: "kms" | ||
- objectName: "test-oos" | ||
objectType: "oos" # support kms and oos, default is kms |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,59 @@ | ||
module github.com/AliyunContainerService/secrets-store-csi-driver-provider-alibaba-cloud | ||
|
||
go 1.16 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/AliyunContainerService/ack-secret-manager v0.0.0-20220112125214-d31312f5d710 | ||
github.com/alibabacloud-go/darabonba-openapi v0.1.7 | ||
github.com/alibabacloud-go/darabonba-openapi/v2 v2.0.9 | ||
github.com/alibabacloud-go/kms-20160120/v2 v2.0.0 | ||
github.com/alibabacloud-go/sts-20150401 v1.1.0 // indirect | ||
github.com/alibabacloud-go/tea v1.1.15 | ||
github.com/alibabacloud-go/oos-20190601/v4 v4.2.2 | ||
github.com/alibabacloud-go/tea v1.2.2 | ||
github.com/aliyun/alibaba-cloud-sdk-go v1.61.1473 | ||
github.com/aliyun/credentials-go v1.2.2 | ||
github.com/aliyun/credentials-go v1.3.1 | ||
github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af | ||
github.com/pkg/errors v0.9.1 | ||
golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e | ||
google.golang.org/grpc v1.29.1 | ||
k8s.io/api v0.20.2 // indirect | ||
k8s.io/apimachinery v0.20.2 // indirect | ||
k8s.io/client-go v12.0.0+incompatible // indirect | ||
k8s.io/klog/v2 v2.8.0 | ||
sigs.k8s.io/secrets-store-csi-driver v0.0.22 | ||
sigs.k8s.io/yaml v1.2.0 | ||
) | ||
|
||
require ( | ||
github.com/alibabacloud-go/alibabacloud-gateway-spi v0.0.4 // indirect | ||
github.com/alibabacloud-go/debug v1.0.0 // indirect | ||
github.com/alibabacloud-go/endpoint-util v1.1.0 // indirect | ||
github.com/alibabacloud-go/openapi-util v0.1.0 // indirect | ||
github.com/alibabacloud-go/tea-utils v1.3.9 // indirect | ||
github.com/alibabacloud-go/tea-utils/v2 v2.0.6 // indirect | ||
github.com/alibabacloud-go/tea-xml v1.1.3 // indirect | ||
github.com/clbanning/mxj/v2 v2.5.5 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/go-logr/logr v0.4.0 // indirect | ||
github.com/gogo/protobuf v1.3.1 // indirect | ||
github.com/golang/protobuf v1.4.3 // indirect | ||
github.com/google/gofuzz v1.1.0 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/tjfoc/gmsm v1.3.2 // indirect | ||
golang.org/x/crypto v0.18.0 // indirect | ||
golang.org/x/net v0.20.0 // indirect | ||
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d // indirect | ||
golang.org/x/sys v0.16.0 // indirect | ||
golang.org/x/term v0.16.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
google.golang.org/appengine v1.6.6 // indirect | ||
google.golang.org/genproto v0.0.0-20201110150050-8816d57aaa9a // indirect | ||
google.golang.org/protobuf v1.25.0 // indirect | ||
gopkg.in/inf.v0 v0.9.1 // indirect | ||
gopkg.in/ini.v1 v1.66.2 // indirect | ||
gopkg.in/yaml.v2 v2.3.0 // indirect | ||
k8s.io/apimachinery v0.20.2 // indirect | ||
k8s.io/client-go v12.0.0+incompatible // indirect | ||
k8s.io/utils v0.0.0-20210111153108-fddb29f9d009 // indirect | ||
sigs.k8s.io/structured-merge-diff/v4 v4.0.2 // indirect | ||
) | ||
|
||
replace k8s.io/client-go => k8s.io/client-go v0.20.2 |
Oops, something went wrong.