blob: 4329a222e2989dd944db47d18de175c75f6ad50a [file] [log] [blame]
jasmineWen66f6a3b2018-04-03 17:48:41 +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
15#################################################################
16# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefix: 302
20 repository: nexus3.onap.org:10001
21 repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
22 readinessRepository: oomk8s
BorislavG3d6f9372018-04-15 11:55:39 +000023 readinessImage: readiness-check:2.0.0
jasmineWen66f6a3b2018-04-03 17:48:41 +000024 loggingRepository: docker.elastic.co
25 loggingImage: beats/filebeat:5.5.0
26
27#################################################################
28# Application configuration defaults.
29#################################################################
30# application image
31repository: nexus3.onap.org:10001
32image: onap/refrepo/postgres:latest
33pullPolicy: Always
34
35# flag to enable debugging - application support required
36debugEnabled: false
37
38replicaCount: 1
39
40nodeSelector: {}
41
42affinity: {}
43
44# probe configuration parameters
45liveness:
46 initialDelaySeconds: 10
47 periodSeconds: 10
48 # necessary to disable liveness probe when setting breakpoints
49 # in debugger so K8s doesn't restart unresponsive container
50 enabled: true
51
52readiness:
53 initialDelaySeconds: 10
54 periodSeconds: 10
55
56service:
57 type: ClusterIP
BorislavG1ffbd992018-04-24 07:56:27 +000058 name: vnfsdk-pgset
59 portName: vnfsdk-pgset
jasmineWen66f6a3b2018-04-03 17:48:41 +000060 internalPort: 5432
61 externalPort: 5432
62
63ingress:
64 enabled: false