Skip to content

Commit

Permalink
bump lpp to 0.0.28 (internal fix)
Browse files Browse the repository at this point in the history
  • Loading branch information
rxbn committed May 29, 2024
1 parent 796eae9 commit 2811bc5
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion charts/local-path-provisioner/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
description: Use HostPath for persistent local storage with Kubernetes
name: local-path-provisioner
version: 0.0.27
version: 0.0.28
appVersion: "v0.0.27"
keywords:
- storage
Expand Down
4 changes: 2 additions & 2 deletions charts/local-path-provisioner/templates/storageclass.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ provisioner: {{ template "local-path-provisioner.provisionerName" $dot }}
volumeBindingMode: {{ $values.storageClass.volumeBindingMode }}
reclaimPolicy: {{ $values.storageClass.reclaimPolicy }}
allowVolumeExpansion: true
{{- if .Values.storageClass.pathPattern }}
{{- if $values.storageClass.pathPattern }}
parameters:
pathPattern: {{ .Values.storageClass.pathPattern | quote }}
pathPattern: {{ $values.storageClass.pathPattern | quote }}
{{ end -}}
{{- end }}
---
Expand Down
15 changes: 9 additions & 6 deletions charts/local-path-provisioner/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,15 @@ nodePathMap:
# ## OR
# # See above
# nodePathMap: {}

podAnnotations: {}

podSecurityContext: {}
podSecurityContext:
{}
# runAsNonRoot: true

securityContext: {}
securityContext:
{}
# allowPrivilegeEscalation: false
# seccompProfile:
# type: RuntimeDefault
Expand All @@ -106,7 +108,8 @@ securityContext: {}
# runAsGroup: 65534
# readOnlyRootFilesystem: true

resources: {}
resources:
{}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
Expand All @@ -119,7 +122,8 @@ resources: {}
# memory: 128Mi

helperPod:
resources: {}
resources:
{}
# limits:
# cpu: 100m
# memory: 128Mi
Expand Down Expand Up @@ -161,7 +165,6 @@ configmap:
namespaceOverride: ""
name: "helper-pod"
annotations: {}

# Number of provisioner worker threads to call provision/delete simultaneously.
# workerThreads: 4

Expand Down

0 comments on commit 2811bc5

Please sign in to comment.