License addition in all yamls
[oom.git] / kubernetes / policy / templates / policy-log-configmap.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.disablePolicyPap }}
16 apiVersion: v1
17 kind: ConfigMap
18 metadata:
19   name: policy-pap-log-configmap
20   namespace: {{ .Values.nsPrefix }}
21 data:
22 {{ tpl (.Files.Glob "resources/config/log/xacml-pap-rest/*").AsConfig . | indent 2 }}
23 ---
24 apiVersion: v1
25 kind: ConfigMap
26 metadata:
27   name: policy-sdk-log-configmap
28   namespace: {{ .Values.nsPrefix }}
29 data:
30 {{ tpl (.Files.Glob "resources/config/log/ep_sdk_app/*").AsConfig . | indent 2 }}
31 ---
32 apiVersion: v1
33 kind: ConfigMap
34 metadata:
35   name: policy-filebeat-configmap
36   namespace: {{ .Values.nsPrefix }}
37 data:
38 {{ tpl (.Files.Glob "resources/config/log/filebeat/*").AsConfig . | indent 2 }}
39 #{{ end }}
40 #{{ if not .Values.disablePolicyPdp }}
41 ---
42 apiVersion: v1
43 kind: ConfigMap
44 metadata:
45   name: policy-pdp-log-configmap
46   namespace: {{ .Values.nsPrefix }}
47 data:
48 {{ tpl (.Files.Glob "resources/config/log/xacml-pdp-rest/*").AsConfig . | indent 2 }}
49 #{{ end }}
50 #{{ if not .Values.disablePolicyDrools }}
51 ---
52 apiVersion: v1
53 kind: ConfigMap
54 metadata:
55   name: policy-drools-log-configmap
56   namespace: {{ .Values.nsPrefix }}
57 data:
58 {{ tpl (.Files.Glob "resources/config/log/drools/*").AsConfig . | indent 2 }}
59 #{{ end }}