blob: eb7599738aefe2c1492874e8f7ee1054e773ec8a [file] [log] [blame]
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -05001# Copyright (c) 2019 IBM, Bell Canada
2#
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -05003# 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
Oleg Mitsura0197bf12019-05-03 15:03:55 -040021 nodePortPrefixExt: 304
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050022
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)793c7e42019-09-13 14:27:57 -040041image: onap/ccsdk-blueprintsprocessor:0.6.2
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050042pullPolicy: Always
43
44# flag to enable debugging - application support required
45debugEnabled: false
46
47# application configuration
48config:
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050049 appConfigDir: /opt/app/onap/config
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050050
51# default number of instances
52replicaCount: 1
53
54nodeSelector: {}
55
56affinity: {}
57
Prathamesh Morde93da1272019-06-24 10:36:15 -040058# flag for kafka-listener dependency. Set to true if you are using message-router otherwise set to false if you are using
59# custom kafka cluster.
60dmaapEnabled: true
61
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050062# probe configuration parameters
63liveness:
Yang Xu435062b2019-06-17 01:19:37 -040064 initialDelaySeconds: 120
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050065 periodSeconds: 10
66 # necessary to disable liveness probe when setting breakpoints
67 # in debugger so K8s doesn't restart unresponsive container
68 enabled: true
69
70readiness:
Yang Xu435062b2019-06-17 01:19:37 -040071 initialDelaySeconds: 120
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050072 periodSeconds: 10
73
74service:
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050075 http:
Oleg Mitsura0197bf12019-05-03 15:03:55 -040076 type: NodePort
Alexis de Talhouët63df1632019-03-20 08:17:58 -040077 portName: blueprints-processor-http
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050078 internalPort: 8080
79 externalPort: 8080
Oleg Mitsura0197bf12019-05-03 15:03:55 -040080 nodePort: 99
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050081 grpc:
Oleg Mitsura0197bf12019-05-03 15:03:55 -040082 type: ClusterIP
Alexis de Talhouët63df1632019-03-20 08:17:58 -040083 portName: blueprints-processor-grpc
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050084 internalPort: 9111
85 externalPort: 9111
86
87persistence:
Alexis de Talhouët108e28f2019-04-14 18:54:56 -040088 volumeReclaimPolicy: Retain
89 accessMode: ReadWriteMany
90 size: 2Gi
91 enabled: true
92 mountSubPath: cds/blueprints/deploy
93 deployedBlueprint: /opt/app/onap/blueprints/deploy
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050094
95ingress:
96 enabled: false
97
98resources: {}
99 # We usually recommend not to specify default resources and to leave this as a conscious
100 # choice for the user. This also increases chances charts run on environments with little
101 # resources, such as Minikube. If you do want to specify resources, uncomment the following
102 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
103 #
104 # Example:
105 # Configure resource requests and limits
106 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
107 # Minimum memory for development is 2 CPU cores and 4GB memory
108 # Minimum memory for production is 4 CPU cores and 8GB memory
109#resources:
110# limits:
111# cpu: 2
112# memory: 4Gi
113# requests:
114# cpu: 2
115# memory: 4Gi