Skip to content

Commit

Permalink
Add support for non-default kubelet root directory (#322)
Browse files Browse the repository at this point in the history
  • Loading branch information
alanbrent authored Mar 15, 2024
1 parent 52a2cc4 commit 3d317ad
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/secrets-store-csi-driver-provider-aws/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: secrets-store-csi-driver-provider-aws
version: 0.3.6
version: 0.3.7
kubeVersion: ">=1.17.0-0"
description: A Helm chart for the AWS Secrets Manager and Config Provider for Secret Store CSI Driver
icon: https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ spec:
path: {{ .Values.providerVolume }}
- name: mountpoint-dir
hostPath:
path: /var/lib/kubelet/pods
path: {{ .Values.kubeletPath }}/pods
type: DirectoryOrCreate
{{- if .Values.priorityClassName }}
priorityClassName: {{ .Values.priorityClassName | quote }}
Expand Down
1 change: 1 addition & 0 deletions charts/secrets-store-csi-driver-provider-aws/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ image:
nameOverride: ""
fullnameOverride: ""
providerVolume: "/etc/kubernetes/secrets-store-csi-providers"
kubeletPath: "/var/lib/kubelet"

podLabels: {}
podAnnotations: {}
Expand Down

0 comments on commit 3d317ad

Please sign in to comment.