Skip to content

Commit

Permalink
chore: change default to /var/run for provider path (#859)
Browse files Browse the repository at this point in the history
Signed-off-by: Anish Ramasekar <anish.ramasekar@gmail.com>
  • Loading branch information
aramase committed Apr 13, 2022
1 parent 4e49d62 commit 248d561
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Expand Up @@ -96,7 +96,7 @@ The following table lists the configurable parameters of the csi-secrets-store-p
| `linux.volumeMounts` | Additional volumes to mount on the KeyVault provider pods. | `[]` |
| `linux.affinity` | Configures affinity for provider pods on linux nodes | Match expression `type NotIn virtual-kubelet` |
| `linux.kubeletRootDir` | Configure the kubelet root dir | `/var/lib/kubelet` |
| `linux.providersDir` | Configure the providers root dir | `/etc/kubernetes/secrets-store-csi-providers` |
| `linux.providersDir` | Configure the providers root dir | `/var/run/secrets-store-csi-providers` |
| `windows.enabled` | Install azure keyvault provider on windows nodes | false |
| `windows.image.repository` | Windows image repository | `mcr.microsoft.com/oss/azure/secrets-store/provider-azure` |
| `windows.image.pullPolicy` | Windows image pull policy | `IfNotPresent` |
Expand Down
Expand Up @@ -53,7 +53,7 @@ linux:
volumes: []
volumeMounts: []
kubeletRootDir: /var/lib/kubelet
providersDir: /etc/kubernetes/secrets-store-csi-providers
providersDir: /var/run/secrets-store-csi-providers
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
Expand Down Expand Up @@ -135,6 +135,7 @@ secrets-store-csi-driver:
repository: mcr.microsoft.com/oss/kubernetes-csi/secrets-store/driver-crds
tag: v1.1.2
pullPolicy: IfNotPresent
providersDir: /var/run/secrets-store-csi-providers

windows:
enabled: false
Expand Down
2 changes: 1 addition & 1 deletion manifest_staging/deployment/provider-azure-installer.yaml
Expand Up @@ -69,6 +69,6 @@ spec:
volumes:
- name: providervol
hostPath:
path: "/etc/kubernetes/secrets-store-csi-providers"
path: "/var/run/secrets-store-csi-providers"
nodeSelector:
kubernetes.io/os: linux

0 comments on commit 248d561

Please sign in to comment.