blob: 8582593c62284944aa243330f62757f77bcdbf2c [file] [log] [blame]
toshrajbhardwajf4fc1c62018-08-06 07:35:14 +00001# Copyright © 2018 ZTE
2# Modifications Copyright © 2018 AT&T, Amdocs, Bell Canada
jasmineWen613f4eb2018-05-28 14:59:28 +00003# 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#################################################################
16# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefix: 302
20 repository: nexus3.onap.org:10001
21 readinessRepository: oomk8s
22 readinessImage: readiness-check:2.0.0
23 loggingRepository: docker.elastic.co
24 loggingImage: beats/filebeat:5.5.0
25
26#################################################################
27# Application configuration defaults.
28#################################################################
29# application image
30repository: nexus3.onap.org:10001
Gary Wu46621662018-05-30 14:30:47 -070031image: onap/vnfsdk/refrepo/postgres:1.1.1
jasmineWen613f4eb2018-05-28 14:59:28 +000032pullPolicy: Always
33
34# flag to enable debugging - application support required
35debugEnabled: false
36
37replicaCount: 1
38
39nodeSelector: {}
40
41affinity: {}
42
43# probe configuration parameters
44liveness:
45 initialDelaySeconds: 10
46 periodSeconds: 10
47 # necessary to disable liveness probe when setting breakpoints
48 # in debugger so K8s doesn't restart unresponsive container
49 enabled: true
50
51readiness:
52 initialDelaySeconds: 10
53 periodSeconds: 10
54
55service:
56 type: ClusterIP
57 name: vnfsdk-postgres
58 portName: vnfsdk-postgres
59 internalPort: 5432
60 externalPort: 5432
61
62ingress:
63 enabled: false