Skip to content

Commit

Permalink
docs: add Akeyless to supported providers (#1306)
Browse files Browse the repository at this point in the history
* add Akeyless as a Provider

* Update installation.md

* Update concepts.md

* Update concepts.md

* Update usage.md

* Update introduction.md

* Update providers.md
  • Loading branch information
akljph authored Feb 15, 2024
1 parent 7a13f0d commit 4400ec5
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
3 changes: 2 additions & 1 deletion docs/book/src/concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ The CSI driver communicates with the provider using gRPC to fetch the mount cont

Currently supported providers:

- [Akeyless Provider](https://github.com/akeylesslabs/akeyless-csi-provider)
- [AWS Provider](https://github.com/aws/secrets-store-csi-driver-provider-aws)
- [Azure Provider](https://azure.github.io/secrets-store-csi-driver-provider-azure/)
- [GCP Provider](https://github.com/GoogleCloudPlatform/secrets-store-csi-driver-provider-gcp)
Expand Down Expand Up @@ -74,7 +75,7 @@ kind: SecretProviderClass
metadata:
name: my-provider
spec:
provider: vault # accepted provider options: azure or vault or gcp
provider: vault # accepted provider options: akeyless or azure or vault or gcp
parameters: # provider-specific parameters
```
Expand Down
1 change: 1 addition & 0 deletions docs/book/src/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ secretproviderclasspodstatuses.secrets-store.csi.x-k8s.io

Now that the Secrets Store CSI Driver has been deployed, select a provider from the supported provider list, then follow the installation steps for the provider:

- [Akeyless Provider](https://github.com/akeylesslabs/akeyless-csi-provider)
- [AWS Provider](https://github.com/aws/secrets-store-csi-driver-provider-aws)
- [Azure Provider](https://azure.github.io/secrets-store-csi-driver-provider-azure/)
- [GCP Provider](https://github.com/GoogleCloudPlatform/secrets-store-csi-driver-provider-gcp)
Expand Down
2 changes: 1 addition & 1 deletion docs/book/src/getting-started/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ kind: SecretProviderClass
metadata:
name: my-provider
spec:
provider: vault # accepted provider options: azure or vault or gcp
provider: vault # accepted provider options: akeyless or azure or vault or gcp
parameters: # provider-specific parameters
```
Expand Down
1 change: 1 addition & 0 deletions docs/book/src/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ These features are not stable. If you use these be sure to consult the

## Supported Providers

- [Akeyless Provider](https://github.com/akeylesslabs/akeyless-csi-provider)
- [AWS Provider](https://github.com/aws/secrets-store-csi-driver-provider-aws)
- [Azure Provider](https://azure.github.io/secrets-store-csi-driver-provider-azure/)
- [GCP Provider](https://github.com/GoogleCloudPlatform/secrets-store-csi-driver-provider-gcp)
Expand Down
12 changes: 6 additions & 6 deletions docs/book/src/providers.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ See [design doc](https://docs.google.com/document/d/10-RHUJGM0oMN88AZNxjOmGz0NsW

## Features supported by current providers

| Features \ Providers | Azure | GCP | AWS | Vault |
| ------------------------- | ----- | --- | --- | ----- |
| Sync as Kubernetes secret | Yes | Yes | Yes | Yes |
| Rotation | Yes | Yes | Yes | Yes |
| Windows | Yes | No | No | No |
| Helm Chart | Yes | No | Yes | Yes |
| Features \ Providers | Azure | GCP | AWS | Vault | Akeyless |
| ------------------------- | ----- | --- | --- | ----- | -------- |
| Sync as Kubernetes secret | Yes | Yes | Yes | Yes | Yes |
| Rotation | Yes | Yes | Yes | Yes | No |
| Windows | Yes | No | No | No | No |
| Helm Chart | Yes | No | Yes | Yes | Yes |

0 comments on commit 4400ec5

Please sign in to comment.