blob: 2edcc8a4ec225c8fbb9ae38ff89ae09b8f3871ca [file] [log] [blame]
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -05001# Copyright (c) 2019 IBM, Bell Canada
2#
3# Modifications Copyright (c) 2019 Bell Canada.
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17#################################################################
18# Global configuration defaults.
19#################################################################
20global:
21 # Change to an unused port prefix range to prevent port conflicts
22 # with other instances running within the same k8s cluster
23 nodePortPrefix: 302
24
25 # image repositories
26 repository: nexus3.onap.org:10001
27
28 # readiness check
29 readinessRepository: oomk8s
30 readinessImage: readiness-check:2.0.0
31
32 # image pull policy
33 pullPolicy: Always
34
35 persistence:
36 mountPath: /dockerdata-nfs
37
38#################################################################
39# Application configuration defaults.
40#################################################################
41# application image
42repository: nexus3.onap.org:10001
43image: onap/ccsdk-blueprintsprocessor:0.4.1
44pullPolicy: Always
45
46# flag to enable debugging - application support required
47debugEnabled: false
48
49# application configuration
50config:
51 applicationName: BlueprintsProcessor
52 msName: "org.onap.ccsdk.apps.blueprintsprocessor"
53 bundleVersion: "1.0.0"
54 appConfigDir: /opt/app/onap/config
55 grpcEnabled: false
56 stickySelectorKey:
57 envContext: DEV
58
59mariadb-galera:
60 config:
61 userName: sdnctl
62 userPassword: sdnctl
63 mariadbRootPassword: sdnctl
64 mysqlDatabase: sdnctl
65 nameOverride: blueprints-processor-db
66 service:
67 name: blueprints-processor-db
68 portName: bp-db
69 replicaCount: 1
70 persistence:
71 enabled: true
72 mountSubPath: blueprints-processor/data
73
74# default number of instances
75replicaCount: 1
76
77nodeSelector: {}
78
79affinity: {}
80
81# probe configuration parameters
82liveness:
83 initialDelaySeconds: 10
84 periodSeconds: 10
85 # necessary to disable liveness probe when setting breakpoints
86 # in debugger so K8s doesn't restart unresponsive container
87 enabled: true
88
89readiness:
90 initialDelaySeconds: 10
91 periodSeconds: 10
92
93service:
94 type: ClusterIP
95 portName: blueprints-processor
96 http:
97 internalPort: 8080
98 externalPort: 8080
99 grpc:
100 internalPort: 9111
101 externalPort: 9111
102
103persistence:
104 enabled: true
105
106ingress:
107 enabled: false
108
109resources: {}
110 # We usually recommend not to specify default resources and to leave this as a conscious
111 # choice for the user. This also increases chances charts run on environments with little
112 # resources, such as Minikube. If you do want to specify resources, uncomment the following
113 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
114 #
115 # Example:
116 # Configure resource requests and limits
117 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
118 # Minimum memory for development is 2 CPU cores and 4GB memory
119 # Minimum memory for production is 4 CPU cores and 8GB memory
120#resources:
121# limits:
122# cpu: 2
123# memory: 4Gi
124# requests:
125# cpu: 2
126# memory: 4Gi