License addition in all yamls
[oom.git] / kubernetes / log / templates / log-pv-pvc.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 #{{ if not .Values.disableLogElasticsearch }}
16 apiVersion: v1
17 kind: PersistentVolume
18 metadata:
19   name: {{ .Values.nsPrefix }}-elasticsearch-db
20   namespace: "{{ .Values.nsPrefix }}"
21   labels:
22     name: {{ .Values.nsPrefix }}-elasticsearch-db
23 spec:
24   capacity:
25     storage: 2Gi
26   accessModes:
27     - ReadWriteMany
28   persistentVolumeReclaimPolicy: Retain
29   hostPath:
30     path: {{ .Values.dataRootDir }}/{{ .Values.nsPrefix }}/log/elasticsearch/data
31 ---
32 kind: PersistentVolumeClaim
33 apiVersion: v1
34 metadata:
35   name: elasticsearch-db
36   namespace: "{{ .Values.nsPrefix }}"
37 spec:
38   accessModes:
39     - ReadWriteMany
40   resources:
41     requests:
42       storage: 2Gi
43   selector:
44     matchLabels:
45       name: {{ .Values.nsPrefix }}-elasticsearch-db
46 #{{ end }}