diff options
author | Krzysztof Opasiak <k.opasiak@samsung.com> | 2020-06-01 22:01:05 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-06-01 22:01:05 +0000 |
commit | 7d864e6f70d3a3d4c3e78453c54182e3bcecd3f1 (patch) | |
tree | 5c48d040e7b09de5a7e85684ebec634664f5ba7d /kubernetes/dmaap/components/dmaap-dr-prov/templates/pvc.yaml | |
parent | 038411c16a3fc95a7b2e910240f6d90cf533ba44 (diff) | |
parent | 2df4a7841dda43f016f6b7665f5e2e13f3616557 (diff) |
Merge "[DMAAP] Use common aaf template in dmaap-dr-prov"
Diffstat (limited to 'kubernetes/dmaap/components/dmaap-dr-prov/templates/pvc.yaml')
-rw-r--r-- | kubernetes/dmaap/components/dmaap-dr-prov/templates/pvc.yaml | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/kubernetes/dmaap/components/dmaap-dr-prov/templates/pvc.yaml b/kubernetes/dmaap/components/dmaap-dr-prov/templates/pvc.yaml deleted file mode 100644 index c6ac7497b5..0000000000 --- a/kubernetes/dmaap/components/dmaap-dr-prov/templates/pvc.yaml +++ /dev/null @@ -1,44 +0,0 @@ -{{/* - # ============LICENSE_START======================================================= - # Copyright (C) 2019 Nordix Foundation. - # ================================================================================ - # Licensed 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. - # - # SPDX-License-Identifier: Apache-2.0 - # ============LICENSE_END========================================================= -*/}} -{{- if .Values.global.aafEnabled }} -{{- if and .Values.persistence.enabled (not .Values.persistence.existingClaim) }} -kind: PersistentVolumeClaim -apiVersion: v1 -metadata: - name: {{ include "common.fullname" . }}-aaf-props - namespace: {{ include "common.namespace" . }} - labels: - app: {{ include "common.name" . }} - chart: "{{ .Chart.Name }}-{{ .Chart.Version }}" - release: "{{ include "common.release" . }}" - heritage: "{{ .Release.Service }}" -{{- if .Values.persistence.annotations }} - annotations: -{{ toYaml .Values.persistence.annotations | indent 4 }} -{{- end }} -spec: - accessModes: - - {{ .Values.persistence.accessMode }} - storageClassName: {{ include "common.storageClass" . }} - resources: - requests: - storage: {{ .Values.persistence.aafCredsSize }} -{{ end -}} -{{ end -}} |