Merge "Added netbox.properties config file for SDNC"
[oom.git] / kubernetes / pomba / charts / pomba-servicedecomposition / values.yaml
1 # Copyright © 2018 Amdocs\r
2 #\r
3 # Licensed under the Apache License, Version 2.0 (the "License");\r
4 # you may not use this file except in compliance with the License.\r
5 # You may obtain a copy of the License at\r
6 #\r
7 #       http://www.apache.org/licenses/LICENSE-2.0\r
8 #\r
9 # Unless required by applicable law or agreed to in writing, software\r
10 # distributed under the License is distributed on an "AS IS" BASIS,\r
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
12 # See the License for the specific language governing permissions and\r
13 # limitations under the License.\r
14 \r
15 #################################################################\r
16 # Global configuration defaults.\r
17 #################################################################\r
18 global:\r
19   nodePortPrefix: 302\r
20   repository: nexus3.onap.org:10001\r
21 \r
22 #################################################################\r
23 # Application configuration defaults.\r
24 #################################################################\r
25 # application image\r
26 repository: nexus3.onap.org:10001\r
27 image:  onap/service-decomposition:latest\r
28 pullPolicy: Always\r
29 \r
30 # flag to enable debugging - application support required\r
31 debugEnabled: false\r
32 \r
33 # application configuration\r
34 # Example:\r
35 config:\r
36   # Service Decomposition REST Client Configuration\r
37   # Basic Authorization Client credentials for Service Decomposition REST service\r
38   serviceDecompositionUserId: admin\r
39   serviceDecompositionPassword: OBF:1u2a1toa1w8v1tok1u30\r
40 \r
41 # default number of instances\r
42 replicaCount: 1\r
43 \r
44 nodeSelector: {}\r
45 \r
46 affinity: {}\r
47 \r
48 # probe configuration parameters\r
49 liveness:\r
50   initialDelaySeconds: 10\r
51   periodSeconds: 10\r
52   # necessary to disable liveness probe when setting breakpoints\r
53   # in debugger so K8s doesn't restart unresponsive container\r
54   enabled: true\r
55 \r
56 readiness:\r
57   initialDelaySeconds: 10\r
58   periodSeconds: 10\r
59 \r
60 #Example service definition with external, internal and node ports.\r
61 service:\r
62   # The default service name (exposed in the service.yaml) will be the same\r
63   # name as the chart. If the service name needs to be overriden (such as\r
64   # when a subchart is shared), uncomment the value below.\r
65   #name: <service-name-override>\r
66 \r
67   #Services may use any combination of ports depending on the 'type' of\r
68   #service being defined.\r
69   type: ClusterIP\r
70   externalPort: 9532\r
71   internalPort: 8080\r
72 #  nodePort: <replace with unused node port suffix eg. 23>\r
73   # optional port name override - default can be defined in service.yaml\r
74   #portName: http\r
75 \r
76 ingress:\r
77   enabled: false\r
78 \r
79 resources: {}\r
80   # We usually recommend not to specify default resources and to leave this as a conscious\r
81   # choice for the user. This also increases chances charts run on environments with little\r
82   # resources, such as Minikube. If you do want to specify resources, uncomment the following\r
83   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.\r
84   #\r
85   # Example:\r
86   # Configure resource requests and limits\r
87   # ref: http://kubernetes.io/docs/user-guide/compute-resources/\r
88   # Minimum memory for development is 2 CPU cores and 4GB memory\r
89   # Minimum memory for production is 4 CPU cores and 8GB memory\r
90 #resources:\r
91 #  limits:\r
92 #    cpu: 2\r
93 #    memory: 4Gi\r
94 #  requests:\r
95 #    cpu: 2\r
96 #    memory: 4Gi\r