License addition in all yamls
[oom.git] / kubernetes / dcae / templates / pgaas.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.disableDcaeDcaePgaas }}
16 apiVersion: extensions/v1beta1
17 kind: Deployment
18 metadata:
19   annotations:
20     deployment.kubernetes.io/revision: "1"
21   labels:
22     app: dcae-pgaas
23   name: dcae-pgaas
24   namespace: "{{ .Values.nsPrefix }}"
25 spec:
26   replicas: 1
27   selector:
28     matchLabels:
29       app: dcae-pgaas
30   template:
31     metadata:
32       labels:
33         app: dcae-pgaas
34     spec:
35       hostname: zldciad4vipstg00
36       containers:
37       - image: {{ .Values.image.pgaas }}
38         imagePullPolicy: {{ .Values.pullPolicy }}
39         command: ["/bin/bash"]
40         args: ["-c", "/usr/local/bin/entrypoint.sh; sleep infinity;"]
41         name: dcae-pgaas
42         ports:
43         - containerPort: 5432
44         volumeMounts:
45         - mountPath: /dbroot/pgdata
46           name: dcae-pgaas-pgdata
47         - mountPath: /dbroot/pglogs
48           name: dcae-pgaas-pglogs
49         - mountPath: /opt/tools
50           name: dcae-pgaas-tools
51       volumes:
52       - name: dcae-pgaas-pgdata
53         hostPath:
54           path: /dockerdata-nfs/{{ .Values.nsPrefix }}/dcae/pgaas/pgdata
55       - name: dcae-pgaas-pglogs
56         hostPath:
57           path: /dockerdata-nfs/{{ .Values.nsPrefix }}/dcae/pgaas/pglogs
58       - name: dcae-pgaas-tools
59         hostPath:
60           path: /dockerdata-nfs/{{ .Values.nsPrefix }}/dcae/pgaas/tools
61       imagePullSecrets:
62       - name: "{{ .Values.nsPrefix }}-docker-registry-key"
63 #{{ end }}