blob: 61aa93dcb21c0cf0766e0900ff83d1bd98457b0d [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# 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
yurynfcef9942017-10-26 17:10:50 +030015#{{ if not .Values.disableDcaeDcaePgaas }}
Mike Elliott586f03b2017-09-08 12:46:15 -040016apiVersion: extensions/v1beta1
17kind: Deployment
18metadata:
19 annotations:
20 deployment.kubernetes.io/revision: "1"
21 labels:
22 app: dcae-pgaas
23 name: dcae-pgaas
BorislavG8bfc6cf2018-02-27 15:04:26 +000024 namespace: "{{ .Values.nsPrefix }}"
Mike Elliott586f03b2017-09-08 12:46:15 -040025spec:
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"
BorislavG8bfc6cf2018-02-27 15:04:26 +000063#{{ end }}