blob: 43b5f498c9cbecc6dbe311cc8669631ca70135e1 [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
Oleg Mitsura0197bf12019-05-03 15:03:55 -040023 nodePortPrefixExt: 304
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050024
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
Timoney, Dan (dt5972)da56f0a2019-06-06 18:46:05 -040043image: onap/ccsdk-blueprintsprocessor:0.4.4
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050044pullPolicy: Always
45
46# flag to enable debugging - application support required
47debugEnabled: false
48
49# application configuration
50config:
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050051 appConfigDir: /opt/app/onap/config
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050052
53# default number of instances
54replicaCount: 1
55
56nodeSelector: {}
57
58affinity: {}
59
60# probe configuration parameters
61liveness:
62 initialDelaySeconds: 10
63 periodSeconds: 10
64 # necessary to disable liveness probe when setting breakpoints
65 # in debugger so K8s doesn't restart unresponsive container
66 enabled: true
67
68readiness:
69 initialDelaySeconds: 10
70 periodSeconds: 10
71
72service:
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050073 http:
Oleg Mitsura0197bf12019-05-03 15:03:55 -040074 type: NodePort
Alexis de Talhouët63df1632019-03-20 08:17:58 -040075 portName: blueprints-processor-http
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050076 internalPort: 8080
77 externalPort: 8080
Oleg Mitsura0197bf12019-05-03 15:03:55 -040078 nodePort: 99
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050079 grpc:
Oleg Mitsura0197bf12019-05-03 15:03:55 -040080 type: ClusterIP
Alexis de Talhouët63df1632019-03-20 08:17:58 -040081 portName: blueprints-processor-grpc
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050082 internalPort: 9111
83 externalPort: 9111
84
Alexis de Talhouët108e28f2019-04-14 18:54:56 -040085
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050086persistence:
Alexis de Talhouët108e28f2019-04-14 18:54:56 -040087 volumeReclaimPolicy: Retain
88 accessMode: ReadWriteMany
89 size: 2Gi
90 enabled: true
91 mountSubPath: cds/blueprints/deploy
92 deployedBlueprint: /opt/app/onap/blueprints/deploy
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050093
94ingress:
95 enabled: false
96
97resources: {}
98 # We usually recommend not to specify default resources and to leave this as a conscious
99 # choice for the user. This also increases chances charts run on environments with little
100 # resources, such as Minikube. If you do want to specify resources, uncomment the following
101 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
102 #
103 # Example:
104 # Configure resource requests and limits
105 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
106 # Minimum memory for development is 2 CPU cores and 4GB memory
107 # Minimum memory for production is 4 CPU cores and 8GB memory
108#resources:
109# limits:
110# cpu: 2
111# memory: 4Gi
112# requests:
113# cpu: 2
114# memory: 4Gi