change in cdt-port in parent chart
[oom.git] / kubernetes / appc / values.yaml
1 # Copyright © 2017 Amdocs, 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 #################################################################
16 # Global configuration defaults.
17 #################################################################
18 global:
19   nodePortPrefix: 302
20   readinessRepository: oomk8s
21   readinessImage: readiness-check:2.0.0
22   loggingRepository: docker.elastic.co
23   loggingImage: beats/filebeat:5.5.0
24   persistence:
25     mountPath: /dockerdata-nfs
26
27 #################################################################
28 # Application configuration defaults.
29 #################################################################
30 # application image
31 repository: nexus3.onap.org:10001
32 image: onap/appc-image:1.3.0
33 pullPolicy: Always
34
35 # flag to enable debugging - application support required
36 debugEnabled: false
37
38 # application configuration
39 config:
40   dbRootPassword: openECOMP1.0
41   enableClustering: true
42   configDir: /opt/onap/appc/data/properties
43   dmaapTopic: SUCCESS
44   logstashServiceName: log-ls
45   logstashPort: 5044
46   openStackType: OpenStackProvider
47   openStackName: OpenStack
48   openStackKeyStoneUrl: http://localhost:8181/apidoc/explorer/index.html
49   openStackServiceTenantName: default
50   openStackDomain: default
51   openStackUserName: admin
52   openStackEncryptedPassword: admin
53
54 mysql:
55   nameOverride: appc-db
56   service:
57     name: appc-dbhost
58   nfsprovisionerPrefix: appc
59   sdnctlPrefix: appc
60   persistence:
61     mountSubPath: appc/data
62     enabled: true
63   disableNfsProvisioner: true
64
65 dgbuilder:
66   nameOverride: appc-dgbuilder
67   config:
68     dbPodName: appc-db
69     dbServiceName: appc-dbhost
70   service:
71     name: appc-dgbuilder
72
73 #passing value to cdt chart. value of nodePort3 will be same as appc.service.nodePort3.
74 appc-cdt:
75   nodePort3: 11
76 # default number of instances
77 replicaCount: 1
78
79 nodeSelector: {}
80
81 affinity: {}
82
83 # probe configuration parameters
84 liveness:
85   initialDelaySeconds: 10
86   periodSeconds: 10
87   # necessary to disable liveness probe when setting breakpoints
88   # in debugger so K8s doesn't restart unresponsive container
89   enabled: true
90
91 readiness:
92   initialDelaySeconds: 10
93   periodSeconds: 10
94
95 service:
96   type: NodePort
97   name: appc
98   portName: appc
99   #targetPort
100   internalPort: 8181
101   #port
102   externalPort: 8282
103   nodePort: 30
104
105   externalPort2: 1830
106   nodePort2: 31
107   clusterPort: 2550
108
109   internalPort3: 9191
110   externalPort3: 9090
111   nodePort3: 11
112
113 ## Persist data to a persitent volume
114 persistence:
115   enabled: true
116
117   ## A manually managed Persistent Volume and Claim
118   ## Requires persistence.enabled: true
119   ## If defined, PVC must be created manually before volume will be bound
120   # existingClaim:
121   volumeReclaimPolicy: Retain
122
123   ## database data Persistent Volume Storage Class
124   ## If defined, storageClassName: <storageClass>
125   ## If set to "-", storageClassName: "", which disables dynamic provisioning
126   ## If undefined (the default) or set to null, no storageClassName spec is
127   ##   set, choosing the default provisioner.  (gp2 on AWS, standard on
128   ##   GKE, AWS & OpenStack)
129   accessMode: ReadWriteOnce
130   size: 1Gi
131   mountPath: /dockerdata-nfs
132   mountSubPath: appc/mdsal
133   mdsalPath: /opt/opendaylight/current/daexim
134
135 ingress:
136   enabled: false
137
138 resources: {}
139   # We usually recommend not to specify default resources and to leave this as a conscious
140   # choice for the user. This also increases chances charts run on environments with little
141   # resources, such as Minikube. If you do want to specify resources, uncomment the following
142   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
143   #
144   # Example:
145   # Configure resource requests and limits
146   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
147   # Minimum memory for development is 2 CPU cores and 4GB memory
148   # Minimum memory for production is 4 CPU cores and 8GB memory
149 #resources:
150 #  limits:
151 #    cpu: 2
152 #    memory: 4Gi
153 #  requests:
154 #    cpu: 2
155 #    memory: 4Gi