7e1c4c594947445ee7831cd66fb4db0e1a5a0701
[oom.git] / kubernetes / cds / charts / cds-sdc-listener / values.yaml
1 # Copyright (c) 2019 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 # Global configuration defaults.
16 #################################################################
17 global:
18   # Change to an unused port prefix range to prevent port conflicts
19   # with other instances running within the same k8s cluster
20   nodePortPrefix: 302
21
22   # image repositories
23   repository: nexus3.onap.org:10001
24
25   # readiness check
26   readinessRepository: oomk8s
27   readinessImage: readiness-check:2.0.0
28
29   # image pull policy
30   pullPolicy: Always
31
32   persistence:
33     mountPath: /dockerdata-nfs
34
35 #################################################################
36 # Application configuration defaults.
37 #################################################################
38 # application image
39 repository: nexus3.onap.org:10001
40 image: onap/ccsdk-sdclistener:0.4.2
41 name: sdc-listener
42 pullPolicy: Always
43
44 # flag to enable debugging - application support required
45 debugEnabled: false
46
47 # application configuration
48 config:
49   appConfigDir: /opt/app/onap/config
50
51 # default number of instances
52 replicaCount: 1
53
54 nodeSelector: {}
55
56 affinity: {}
57
58 # probe configuration parameters
59 liveness:
60   initialDelaySeconds: 10
61   periodSeconds: 10
62   # necessary to disable liveness probe when setting breakpoints
63   # in debugger so K8s doesn't restart unresponsive container
64   enabled: true
65
66 readiness:
67   initialDelaySeconds: 10
68   periodSeconds: 10
69
70 service:
71   type: ClusterIP
72   http:
73     portName: cds-sdc-listener-http
74     internalPort: 8080
75     externalPort: 8080
76
77 persistence:
78   enabled: true
79
80 ingress:
81   enabled: false
82
83 resources: {}
84   # We usually recommend not to specify default resources and to leave this as a conscious
85   # choice for the user. This also increases chances charts run on environments with little
86   # resources, such as Minikube. If you do want to specify resources, uncomment the following
87   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
88   #
89   # Example:
90   # Configure resource requests and limits
91   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
92   # Minimum memory for development is 2 CPU cores and 4GB memory
93 # Minimum memory for production is 4 CPU cores and 8GB memory
94 #resources:
95 #  limits:
96 #    cpu: 2
97 #    memory: 4Gi
98 #  requests:
99 #    cpu: 2
100 #    memory: 4Gi