Skip to content

Commit

Permalink
chore: add azure provider to grpc supported providers
Browse files Browse the repository at this point in the history
  • Loading branch information
aramase committed Jan 5, 2021
1 parent efe288d commit 513819f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion manifest_staging/charts/secrets-store-csi-driver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,6 @@ The following table lists the configurable parameters of the csi-secrets-store-p
| `rbac.install` | Install default rbac roles and bindings | true |
| `syncSecret.enabled` | Enable rbac roles and bindings required for syncing to Kubernetes native secrets (the default will change to false after v0.0.14) | true |
| `minimumProviderVersions` | A comma delimited list of key-value pairs of minimum provider versions with driver | `""` |
| `grpcSupportedProviders` | A `;` delimited list of providers that support grpc for driver-provider [alpha] | `""` |
| `grpcSupportedProviders` | A `;` delimited list of providers that support grpc for driver-provider [alpha] | `"gcp;azure;"` |
| `enableSecretRotation` | Enable secret rotation feature [alpha] | `false` |
| `rotationPollInterval` | Secret rotation poll interval duration | `"120s"` |
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ syncSecret:
minimumProviderVersions:

## ; delimited list of providers that support grpc for driver-provider [alpha]
grpcSupportedProviders: gcp;
grpcSupportedProviders: gcp;azure;

## Enable secret rotation feature [alpha]
enableSecretRotation: false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ spec:
- "--nodeid=$(KUBE_NODE_NAME)"
- "--provider-volume=C:\\k\\secrets-store-csi-providers"
- "--metrics-addr=:8095"
- "--grpc-supported-providers=azure;"
- "--enable-secret-rotation=false"
- "--rotation-poll-interval=2m"
env:
Expand Down
2 changes: 1 addition & 1 deletion manifest_staging/deploy/secrets-store-csi-driver.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ spec:
- "--nodeid=$(KUBE_NODE_NAME)"
- "--provider-volume=/etc/kubernetes/secrets-store-csi-providers"
- "--metrics-addr=:8095"
- "--grpc-supported-providers=gcp;"
- "--grpc-supported-providers=gcp;azure;"
- "--enable-secret-rotation=false"
- "--rotation-poll-interval=2m"
env:
Expand Down

0 comments on commit 513819f

Please sign in to comment.