charts/pulsar/templates/bookkeeper-storageclass.yaml (52 lines of code) (raw):

# # 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 }}