vaibhav_16dec | e04b2fe | 2018-03-22 09:07:12 +0000 | [diff] [blame] | 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 | |
yuryn | fcef994 | 2017-10-26 17:10:50 +0300 | [diff] [blame] | 15 | #{{ if not .Values.disableDcaeDcaePgaas }} |
Mike Elliott | 586f03b | 2017-09-08 12:46:15 -0400 | [diff] [blame] | 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 |
BorislavG | 8bfc6cf | 2018-02-27 15:04:26 +0000 | [diff] [blame] | 24 | namespace: "{{ .Values.nsPrefix }}" |
Mike Elliott | 586f03b | 2017-09-08 12:46:15 -0400 | [diff] [blame] | 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" |
BorislavG | 8bfc6cf | 2018-02-27 15:04:26 +0000 | [diff] [blame] | 63 | #{{ end }} |