License addition in all yamls
[oom.git] / kubernetes / policy / templates / dep-brmsgw.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.disablePolicyBrmsgw }}
16 apiVersion: extensions/v1beta1
17 kind: Deployment
18 metadata:
19   name: policy-brmsgw
20   namespace: "{{ .Values.nsPrefix }}"
21 spec:
22   replicas: {{ .Values.brmsgwReplicas }}
23   selector:
24     matchLabels:
25       app: brmsgw
26   template:
27     metadata:
28       labels:
29         app: brmsgw
30       name: policy-brmsgw
31     spec:
32       initContainers:
33       - command:
34         - /root/ready.py
35         args:
36         - --container-name
37         - pap
38         env:
39         - name: NAMESPACE
40           valueFrom:
41             fieldRef:
42               apiVersion: v1
43               fieldPath: metadata.namespace
44         image: "{{ .Values.image.readiness }}:{{ .Values.image.readinessVersion }}"
45         imagePullPolicy: {{ .Values.pullPolicy }}
46         name: brmsgw-readiness
47       containers:
48       - command:
49         - /bin/bash
50         - ./do-start.sh
51         - brmsgw
52         image: "{{ .Values.image.policyPe }}:{{ .Values.image.policyPeVersion}}"
53         imagePullPolicy: {{ .Values.pullPolicy }}
54         name: brmsgw
55         volumeMounts:
56         - mountPath: /etc/localtime
57           name: localtime
58           readOnly: true
59         - mountPath: /tmp/policy-install/config
60           name: pe
61       volumes:
62         - name: localtime
63           hostPath:
64             path: /etc/localtime
65         - name: pe
66           configMap:
67             name: policy-dep-pe-configmap
68             defaultMode: 0755
69       imagePullSecrets:
70       - name: "{{ .Values.nsPrefix }}-docker-registry-key"
71 #{{ end }}