### Motivation In some case, my k8s node only have 1 large capacity ssd, for deploying 1 bookie, I need: - Partition the ssd into 2 disks, and make 2 pv over it. - Just make 1 pv over it, but journal & ledgers under same mount path (this PR did) Both can't isolate IO for journal & ledgers, so I prefer the second one for reusability. ### Modifications values.yaml - add `useSingleCommonVolume` option, default false bookkeeper-statefulset.yaml - mount the only PV to path `/pulsar/data/bookkeeper` - use configured common storageClassName bookkeeper-storageclass.yaml - use configured provisioner for the common storageClass ### Others This may not be an issue for everyone, if it's not necessary to merge, I'll just use it locally ### Verifying this change - [x] Make sure that the change passes the CI checks.
75 lines
3.1 KiB
YAML
75 lines
3.1 KiB
YAML
#
|
|
# Licensed to the Apache Software Foundation (ASF) under one
|
|
# or more contributor license agreements. See the NOTICE file
|
|
# distributed with this work for additional information
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
# to you under the Apache License, Version 2.0 (the
|
|
# "License"); you may not use this file except in compliance
|
|
# with the License. You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing,
|
|
# software distributed under the License is distributed on an
|
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
# KIND, either express or implied. See the License for the
|
|
# specific language governing permissions and limitations
|
|
# under the License.
|
|
#
|
|
|
|
{{- if .Values.components.bookkeeper }}
|
|
{{- if and (and .Values.persistence .Values.volumes.persistence) .Values.bookkeeper.volumes.persistence }}
|
|
{{- if not .Values.volumes.local_storage }}
|
|
|
|
{{- if .Values.bookkeeper.volumes.useSingleCommonVolume}}
|
|
{{- if and (not .Values.bookkeeper.volumes.common.local_storage) .Values.bookkeeper.volumes.common.storageClass }}
|
|
apiVersion: storage.k8s.io/v1
|
|
kind: StorageClass
|
|
metadata:
|
|
name: "{{ template "pulsar.fullname" . }}-{{ .Values.bookkeeper.component }}-{{ .Values.bookkeeper.volumes.common.name }}"
|
|
namespace: {{ template "pulsar.namespace" . }}
|
|
labels:
|
|
{{- include "pulsar.standardLabels" . | nindent 4 }}
|
|
component: {{ .Values.bookkeeper.component }}
|
|
provisioner: {{ .Values.bookkeeper.volumes.common.storageClass.provisioner }}
|
|
parameters:
|
|
type: {{ .Values.bookkeeper.volumes.common.storageClass.type }}
|
|
fsType: {{ .Values.bookkeeper.volumes.common.storageClass.fsType }}
|
|
{{- end }}
|
|
{{- else }}
|
|
|
|
{{- if and (not .Values.bookkeeper.volumes.journal.local_storage) .Values.bookkeeper.volumes.journal.storageClass }}
|
|
apiVersion: storage.k8s.io/v1
|
|
kind: StorageClass
|
|
metadata:
|
|
name: "{{ template "pulsar.fullname" . }}-{{ .Values.bookkeeper.component }}-{{ .Values.bookkeeper.volumes.journal.name }}"
|
|
namespace: {{ template "pulsar.namespace" . }}
|
|
labels:
|
|
{{- include "pulsar.standardLabels" . | nindent 4 }}
|
|
component: {{ .Values.bookkeeper.component }}
|
|
provisioner: {{ .Values.bookkeeper.volumes.journal.storageClass.provisioner }}
|
|
parameters:
|
|
type: {{ .Values.bookkeeper.volumes.journal.storageClass.type }}
|
|
fsType: {{ .Values.bookkeeper.volumes.journal.storageClass.fsType }}
|
|
{{- end }}
|
|
---
|
|
{{- if and (not .Values.bookkeeper.volumes.ledgers.local_storage) .Values.bookkeeper.volumes.ledgers.storageClass }}
|
|
apiVersion: storage.k8s.io/v1
|
|
kind: StorageClass
|
|
metadata:
|
|
name: "{{ template "pulsar.fullname" . }}-{{ .Values.bookkeeper.component }}-{{ .Values.bookkeeper.volumes.ledgers.name }}"
|
|
namespace: {{ template "pulsar.namespace" . }}
|
|
labels:
|
|
{{- include "pulsar.standardLabels" . | nindent 4 }}
|
|
component: {{ .Values.bookkeeper.component }}
|
|
provisioner: {{ .Values.bookkeeper.volumes.ledgers.storageClass.provisioner }}
|
|
parameters:
|
|
type: {{ .Values.bookkeeper.volumes.ledgers.storageClass.type }}
|
|
fsType: {{ .Values.bookkeeper.volumes.ledgers.storageClass.fsType }}
|
|
{{- end }}
|
|
{{- end }}
|
|
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|