File tree 7 files changed +14
-8
lines changed
7 files changed +14
-8
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,6 @@ dependencies:
45
45
repository : https://nats-io.github.io/k8s/helm/charts/
46
46
condition : eventing.enabled
47
47
- name : localpv-provisioner
48
- version : 4.1.2
48
+ version : 4.1.4
49
49
repository : https://openebs.github.io/dynamic-localpv-provisioner
50
50
condition : localpv-provisioner.enabled
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ This removes all the Kubernetes components associated with the chart and deletes
59
59
| https://grafana.github.io/helm-charts | loki-stack | 2.9.11 |
60
60
| https://jaegertracing.github.io/helm-charts | jaeger-operator | 2.50.1 |
61
61
| https://nats-io.github.io/k8s/helm/charts/ | nats | 0.19.14 |
62
- | https://openebs.github.io/dynamic-localpv-provisioner | localpv-provisioner | 4.1.2 |
62
+ | https://openebs.github.io/dynamic-localpv-provisioner | localpv-provisioner | 4.1.4 |
63
63
64
64
## Values
65
65
@@ -189,6 +189,7 @@ This removes all the Kubernetes components associated with the chart and deletes
189
189
| io_engine.&ZeroWidthSpace ; tolerations | Set tolerations, overrides global | ` [] ` |
190
190
| localpv-provisioner.&ZeroWidthSpace ; enabled | Enables the openebs dynamic-localpv-provisioner. If disabled, modify etcd and loki-stack storage class accordingly. | ` true ` |
191
191
| localpv-provisioner.&ZeroWidthSpace ; hostpathClass.&ZeroWidthSpace ; enabled | Enable default hostpath localpv StorageClass. | ` false ` |
192
+ | localpv-provisioner.&ZeroWidthSpace ; localpv.&ZeroWidthSpace ; priorityClassName | Set the PriorityClass for the LocalPV Hostpath provisioner Deployment. | ` "{{ .Release.Name }}-cluster-critical" ` |
192
193
| loki-stack.&ZeroWidthSpace ; enabled | Enable loki log collection for our components | ` true ` |
193
194
| loki-stack.&ZeroWidthSpace ; localpvScConfig.&ZeroWidthSpace ; basePath | Host path where local etcd data is stored in. | ` "/var/local/{{ .Release.Name }}/localpv-hostpath/loki" ` |
194
195
| loki-stack.&ZeroWidthSpace ; localpvScConfig.&ZeroWidthSpace ; reclaimPolicy | ReclaimPolicy of loki's localpv hostpath storage class. | ` "Delete" ` |
Original file line number Diff line number Diff line change 20
20
{{ include "label_prefix" . }}/version: {{ .Chart.Version }}
21
21
{{ include "label_prefix" . }}/logging: "true"
22
22
spec :
23
- serviceAccount : {{ .Release.Name }}-service-account
23
+ serviceAccountName : {{ .Release.Name }}-service-account
24
24
imagePullSecrets :
25
25
{{- include "base_pull_secrets" . }}
26
26
initContainers :
Original file line number Diff line number Diff line change @@ -21,14 +21,14 @@ spec:
21
21
{{ include "label_prefix" . }}/logging: "true"
22
22
spec :
23
23
hostNetwork : true
24
- serviceAccount : {{ .Release.Name }}-service-account
24
+ serviceAccountName : {{ .Release.Name }}-service-account
25
25
dnsPolicy : ClusterFirstWithHostNet
26
26
imagePullSecrets :
27
27
{{- include "base_pull_secrets" . }}
28
28
initContainers :
29
29
{{- include "jaeger_collector_init_container" . }}
30
30
{{- include "rest_agent_init_container" . }}
31
- {{- if $pcName := include "priority_class " (dict "template" . "localPriorityClass" .Values.csi.controller.priorityClassName) }}
31
+ {{- if $pcName := include "priority_class_with_default " (dict "template" . "localPriorityClass" .Values.csi.controller.priorityClassName) }}
32
32
priorityClassName : {{ $pcName }}
33
33
{{- end }}
34
34
{{- if .Values.nodeSelector }}
Original file line number Diff line number Diff line change 27
27
{{ include "label_prefix" . }}/version: {{ .Chart.Version }}
28
28
{{ include "label_prefix" . }}/logging: "true"
29
29
spec :
30
- serviceAccount : {{ .Release.Name }}-service-account
30
+ serviceAccountName : {{ .Release.Name }}-service-account
31
31
hostNetwork : true
32
32
dnsPolicy : ClusterFirstWithHostNet
33
33
imagePullSecrets :
Original file line number Diff line number Diff line change @@ -20,12 +20,12 @@ spec:
20
20
{{ include "label_prefix" . }}/version: {{ .Chart.Version }}
21
21
{{ include "label_prefix" . }}/logging: "true"
22
22
spec :
23
- serviceAccount : {{ .Release.Name }}-service-account
23
+ serviceAccountName : {{ .Release.Name }}-service-account
24
24
imagePullSecrets :
25
25
{{- include "base_pull_secrets" . }}
26
26
initContainers :
27
27
{{- include "base_init_containers" . }}
28
- {{- if $pcName := include "priority_class " (dict "template" . "localPriorityClass" .Values.operators.pool.priorityClassName) }}
28
+ {{- if $pcName := include "priority_class_with_default " (dict "template" . "localPriorityClass" .Values.operators.pool.priorityClassName) }}
29
29
priorityClassName : {{ $pcName }}
30
30
{{- end }}
31
31
{{- if .Values.nodeSelector }}
Original file line number Diff line number Diff line change @@ -826,6 +826,11 @@ storageClass:
826
826
localpv-provisioner :
827
827
# -- Enables the openebs dynamic-localpv-provisioner. If disabled, modify etcd and loki-stack storage class accordingly.
828
828
enabled : true
829
+
830
+ localpv :
831
+ # -- Set the PriorityClass for the LocalPV Hostpath provisioner Deployment.
832
+ priorityClassName : " {{ .Release.Name }}-cluster-critical"
833
+
829
834
hostpathClass :
830
835
# -- Enable default hostpath localpv StorageClass.
831
836
enabled : false
You can’t perform that action at this time.
0 commit comments