License addition in all yamls
[oom.git] / kubernetes / message-router / templates / message-router-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.disableMessageRouterGlobalKafka }}
16 apiVersion: v1
17 kind: PersistentVolume
18 metadata:
19   name: "{{ .Values.nsPrefix }}-message-router-kafka"
20   namespace: "{{ .Values.nsPrefix }}"
21   labels:
22     name: "{{ .Values.nsPrefix }}-message-router-kafka"
23 spec:
24   capacity:
25     storage: 2Gi
26   accessModes:
27     - ReadWriteMany
28   persistentVolumeReclaimPolicy: Retain
29   hostPath:
30     path: {{ .Values.dataRootDir }}/{{ .Values.nsPrefix }}/message-router/dcae-startup-vm-message-router/docker_files/data-kafka/
31 ---
32 kind: PersistentVolumeClaim
33 apiVersion: v1
34 metadata:
35   name: message-router-kafka
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 }}-message-router-kafka"
46 #{{ end }}
47 #{{ if not .Values.disableMessageRouterZookeeper }}
48 ---
49 apiVersion: v1
50 kind: PersistentVolume
51 metadata:
52   name: "{{ .Values.nsPrefix }}-message-router-zookeeper"
53   namespace: "{{ .Values.nsPrefix }}"
54   labels:
55     name: "{{ .Values.nsPrefix }}-message-router-zookeeper"
56 spec:
57   capacity:
58     storage: 2Gi
59   accessModes:
60     - ReadWriteMany
61   persistentVolumeReclaimPolicy: Retain
62   hostPath:
63     path: {{ .Values.dataRootDir }}/{{ .Values.nsPrefix }}/message-router/dcae-startup-vm-message-router/docker_files/data-zookeeper
64 ---
65 kind: PersistentVolumeClaim
66 apiVersion: v1
67 metadata:
68   name: message-router-zookeeper
69   namespace: "{{ .Values.nsPrefix }}"
70 spec:
71   accessModes:
72     - ReadWriteMany
73   resources:
74     requests:
75       storage: 2Gi
76   selector:
77     matchLabels:
78       name: "{{ .Values.nsPrefix }}-message-router-zookeeper"
79 #{{ end }}