Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: override priorityClassName from secrets-store-csi-driver subchart #943

Merged
merged 7 commits into from
Jul 22, 2022
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ The following table lists the configurable parameters of the csi-secrets-store-p
| `secrets-store-csi-driver.linux.kubeletRootDir` | Configure the kubelet root dir | `/var/lib/kubelet` |
| `secrets-store-csi-driver.linux.metricsAddr` | The address the metric endpoint binds to | `:8080` |
| `secrets-store-csi-driver.linux.tolerations` | Tolerations for driver pods on linux nodes | `[]` |
| `secrets-store-csi-driver.linux.priorityClassName` | Indicates the importance of a Pod relative to other Pods | `""` |
| `secrets-store-csi-driver.linux.image.repository` | Driver Linux image repository | `mcr.microsoft.com/oss/kubernetes-csi/secrets-store/driver` |
| `secrets-store-csi-driver.linux.image.pullPolicy` | Driver Linux image pull policy | `IfNotPresent` |
| `secrets-store-csi-driver.linux.image.tag` | Driver Linux image tag | `v1.2.2` |
Expand All @@ -124,6 +125,7 @@ The following table lists the configurable parameters of the csi-secrets-store-p
| `secrets-store-csi-driver.windows.kubeletRootDir` | Configure the kubelet root dir | `C:\var\lib\kubelet` |
| `secrets-store-csi-driver.windows.metricsAddr` | The address the metric endpoint binds to | `:8080` |
| `secrets-store-csi-driver.windows.tolerations` | Tolerations for driver pods on windows nodes | `[]` |
| `secrets-store-csi-driver.windows.priorityClassName` | Indicates the importance of a Pod relative to other Pods | `""` |
| `secrets-store-csi-driver.windows.image.repository` | Driver Windows image repository | `mcr.microsoft.com/oss/kubernetes-csi/secrets-store/driver` |
| `secrets-store-csi-driver.windows.image.pullPolicy` | Driver Windows image pull policy | `IfNotPresent` |
| `secrets-store-csi-driver.windows.image.tag` | Driver Windows image tag | `v1.2.2` |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ secrets-store-csi-driver:
enabled: true
kubeletRootDir: /var/lib/kubelet
metricsAddr: ":8080"
priorityClassName: ""
image:
repository: mcr.microsoft.com/oss/kubernetes-csi/secrets-store/driver
tag: v1.2.2
Expand All @@ -134,6 +135,7 @@ secrets-store-csi-driver:
enabled: false
kubeletRootDir: C:\var\lib\kubelet
metricsAddr: ":8080"
priorityClassName: ""
image:
repository: mcr.microsoft.com/oss/kubernetes-csi/secrets-store/driver
tag: v1.2.2
Expand Down