Skip to content

Commit

Permalink
Merge pull request #417 from aramase/add-azure-provider
Browse files Browse the repository at this point in the history
chore: add azure provider to grpc supported providers
  • Loading branch information
k8s-ci-robot authored Jan 6, 2021
2 parents 3c9123f + 513819f commit 08de179
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 @@ -72,6 +72,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 @@ -137,7 +137,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 08de179

Please sign in to comment.