diff options
author | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2019-12-05 16:34:49 +0100 |
---|---|---|
committer | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2019-12-05 16:34:49 +0100 |
commit | 7d2508813ec713a23131799e5258187fe8efbb60 (patch) | |
tree | f2bda442bf0c764a0ff2a3e91edf29353e8a02ad /kubernetes/log/charts/log-elasticsearch/templates/pvc.yaml | |
parent | e21978408ab1bee4c571bbb6cc58904d3ee36472 (diff) |
[LOG] Use global storage templates for PVC
OOM has now templates in order to create the needed PVC, using:
* a PV with a specific class when using a common nfs mount path between
nodes (sames as today use) --> is the default behavior today
* or a storage class if we want to use dynamic PV.
On this case, we use (in order of priority):
- persistence.storageClassOverride if set on the chart
- global.persistence.storageClass if set globally
- persistence.storageClass if set on the chart
Change-Id: I1f39f2c8c9a2d4fe1303fffbefe4dac70ed0e860
Issue-ID: OOM-1227
Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
Diffstat (limited to 'kubernetes/log/charts/log-elasticsearch/templates/pvc.yaml')
-rw-r--r-- | kubernetes/log/charts/log-elasticsearch/templates/pvc.yaml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/kubernetes/log/charts/log-elasticsearch/templates/pvc.yaml b/kubernetes/log/charts/log-elasticsearch/templates/pvc.yaml index abab145a8f..d2eddc227d 100644 --- a/kubernetes/log/charts/log-elasticsearch/templates/pvc.yaml +++ b/kubernetes/log/charts/log-elasticsearch/templates/pvc.yaml @@ -29,11 +29,9 @@ metadata: {{ toYaml .Values.persistence.annotations | indent 4 }} {{- end }} spec: - selector: - matchLabels: - name: {{ include "common.fullname" . }} accessModes: - {{ .Values.persistence.accessMode }} + storageClassName: {{ include "common.storageClass" . }} resources: requests: storage: {{ .Values.persistence.size }} |