디렉토리 구조 및 각 서비스 추가
This commit is contained in:
19
helm/openebs/charts/jiva/templates/priority-class.yaml
Normal file
19
helm/openebs/charts/jiva/templates/priority-class.yaml
Normal file
@@ -0,0 +1,19 @@
|
||||
{{- if .Values.csiController.priorityClass.create }}
|
||||
apiVersion: scheduling.k8s.io/v1
|
||||
kind: PriorityClass
|
||||
metadata:
|
||||
name: {{ template "jiva.csiController.priorityClassName" . }}
|
||||
value: {{ .Values.csiController.priorityClass.value }}
|
||||
globalDefault: false
|
||||
description: "This priority class should be used for the OpenEBS CSI driver controller deployment only."
|
||||
{{- end }}
|
||||
---
|
||||
{{- if .Values.csiNode.priorityClass.create }}
|
||||
apiVersion: scheduling.k8s.io/v1
|
||||
kind: PriorityClass
|
||||
metadata:
|
||||
name: {{ template "jiva.csiNode.priorityClassName" . }}
|
||||
value: {{ .Values.csiNode.priorityClass.value }}
|
||||
globalDefault: false
|
||||
description: "This priority class should be used for the OpenEBS CSI driver node deployment only."
|
||||
{{- end }}
|
||||
Reference in New Issue
Block a user