blob: 02b5685fa4a30c4f87a8a2d6641621962e0a5859 [file] [log] [blame]
Mike Elliott37cae252018-09-12 14:45:40 -04001# Copyright (c) 2018 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 # Change to an unused port prefix range to prevent port conflicts
20 # with other instances running within the same k8s cluster
21 nodePortPrefix: 302
22
23 # image repositories
24 repository: nexus3.onap.org:10001
25
26 # readiness check
27 readinessRepository: oomk8s
28 readinessImage: readiness-check:2.0.0
29
30 # image pull policy
31 pullPolicy: Always
32
33 persistence:
34 mountPath: /dockerdata-nfs
35
36#################################################################
37# Application configuration defaults.
38#################################################################
39# application image
40repository: nexus3.onap.org:10001
Timoney, Dan (dt5972)6819bc92019-02-12 13:30:49 -050041image: onap/ccsdk-controllerblueprints:0.4-STAGING-latest
Mike Elliott37cae252018-09-12 14:45:40 -040042pullPolicy: Always
43
44# flag to enable debugging - application support required
45debugEnabled: false
46
47# application configuration
48config:
Mike Elliott37cae252018-09-12 14:45:40 -040049 appConfigDir: /opt/app/onap/config
Mike Elliott37cae252018-09-12 14:45:40 -040050 initDataLoad: true
Alexis de Talhouƫt43c67e02018-09-20 16:49:16 -040051 restUser: ccsdkapps
52 restPassword: ccsdkapps
Mike Elliott37cae252018-09-12 14:45:40 -040053
54mariadb-galera:
55 config:
56 userName: sdnctl
57 userPassword: sdnctl
58 mariadbRootPassword: sdnctl
59 mysqlDatabase: sdnctl
60 nameOverride: controller-blueprints-db
61 service:
62 name: controller-blueprints-db
63 portName: cb-db
64 replicaCount: 1
65 persistence:
66 enabled: true
67 mountSubPath: controller-blueprints/data
68
69# default number of instances
70replicaCount: 1
71
72nodeSelector: {}
73
74affinity: {}
75
76# probe configuration parameters
77liveness:
78 initialDelaySeconds: 10
79 periodSeconds: 10
80 # necessary to disable liveness probe when setting breakpoints
81 # in debugger so K8s doesn't restart unresponsive container
82 enabled: true
83
84readiness:
85 initialDelaySeconds: 10
86 periodSeconds: 10
87
88service:
89 type: ClusterIP
90 portName: controller-blueprints
91 internalPort: 8080
92 externalPort: 8080
93
94persistence:
95 enabled: true
96
97ingress:
98 enabled: false
99
100resources: {}
101 # We usually recommend not to specify default resources and to leave this as a conscious
102 # choice for the user. This also increases chances charts run on environments with little
103 # resources, such as Minikube. If you do want to specify resources, uncomment the following
104 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
105 #
106 # Example:
107 # Configure resource requests and limits
108 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
109 # Minimum memory for development is 2 CPU cores and 4GB memory
110 # Minimum memory for production is 4 CPU cores and 8GB memory
111#resources:
112# limits:
113# cpu: 2
114# memory: 4Gi
115# requests:
116# cpu: 2
117# memory: 4Gi