Merge "Add message-router dependency in blueprint-processor for kafka-listener."
[oom.git] / kubernetes / appc / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018 AT&T
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 #################################################################
17 # Global configuration defaults.
18 #################################################################
19 global:
20   nodePortPrefix: 302
21   readinessRepository: oomk8s
22   readinessImage: readiness-check:2.0.0
23   loggingRepository: docker.elastic.co
24   loggingImage: beats/filebeat:5.5.0
25   persistence:
26     mountPath: /dockerdata-nfs
27
28 #################################################################
29 # Application configuration defaults.
30 #################################################################
31 flavor: small
32 # application image
33 repository: nexus3.onap.org:10001
34 image: onap/appc-image:1.5.3
35 pullPolicy: Always
36
37 # flag to enable debugging - application support required
38 debugEnabled: false
39
40 # application configuration
41 config:
42   odlUid: 100
43   odlGid: 101
44   ansibleServiceName: appc-ansible-server
45   ansiblePort: 8000
46   mariadbRootPassword: secretpassword
47   userName: my-user
48   userPassword: my-password
49   mysqlDatabase: my-database
50   mariadbGaleraSVCName: appc-dbhost
51   mariadbGaleraContName: appc-db
52   enableAAF: true
53   enableClustering: false
54   configDir: /opt/onap/appc/data/properties
55   dmaapTopic: SUCCESS
56   dmaapTopicEnv: AUTO
57   logstashServiceName: log-ls
58   logstashPort: 5044
59   odlPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
60   openStackType: OpenStackProvider
61   openStackName: OpenStack
62   openStackKeyStoneUrl: http://localhost:8181/apidoc/explorer/index.html
63   openStackServiceTenantName: default
64   openStackDomain: default
65   openStackUserName: admin
66   openStackEncryptedPassword: enc:LDEbHEAvTF1R
67   odlUser: admin
68
69 appc-ansible-server:
70   service:
71     name: appc-ansible-server
72     internalPort: 8000
73   config:
74     mysqlServiceName: appc-dbhost
75
76 mariadb-galera:
77   nameOverride: appc-db
78   service:
79     name: appc-dbhost
80     portName: appc-dbhost
81   nfsprovisionerPrefix: appc
82   sdnctlPrefix: appc
83   persistence:
84     mountSubPath: appc/data
85     enabled: true
86   disableNfsProvisioner: true
87
88 dgbuilder:
89   nameOverride: appc-dgbuilder
90   config:
91     dbPodName: appc-db
92     dbServiceName: appc-dbhost
93   service:
94     name: appc-dgbuilder
95
96 #passing value to cdt chart. value of nodePort3 will be same as appc.service.nodePort3.
97 appc-cdt:
98   nodePort3: 11
99 # default number of instances
100 replicaCount: 1
101
102 nodeSelector: {}
103
104 affinity: {}
105
106 # probe configuration parameters
107 liveness:
108   initialDelaySeconds: 300
109   periodSeconds: 60
110   # necessary to disable liveness probe when setting breakpoints
111   # in debugger so K8s doesn't restart unresponsive container
112   enabled: true
113
114 readiness:
115   initialDelaySeconds: 300
116   periodSeconds: 60
117
118 service:
119   type: NodePort
120   name: appc
121   portName: appc
122   #targetPort
123   internalPort: 8443
124   #port
125   externalPort: 8443
126   nodePort: 30
127
128   externalPort2: 1830
129   nodePort2: 31
130   clusterPort: 2550
131
132   internalPort3: 9191
133   externalPort3: 9090
134   nodePort3: 11
135
136 ## Persist data to a persitent volume
137 persistence:
138   enabled: true
139
140   ## A manually managed Persistent Volume and Claim
141   ## Requires persistence.enabled: true
142   ## If defined, PVC must be created manually before volume will be bound
143   # existingClaim:
144   volumeReclaimPolicy: Retain
145
146   ## database data Persistent Volume Storage Class
147   ## If defined, storageClassName: <storageClass>
148   ## If set to "-", storageClassName: "", which disables dynamic provisioning
149   ## If undefined (the default) or set to null, no storageClassName spec is
150   ##   set, choosing the default provisioner.  (gp2 on AWS, standard on
151   ##   GKE, AWS & OpenStack)
152   accessMode: ReadWriteOnce
153   size: 1Gi
154   mountPath: /dockerdata-nfs
155   mountSubPath: appc/mdsal
156   mdsalPath: /opt/opendaylight/current/daexim
157
158 ingress:
159   enabled: false
160
161 # Configure resource requests and limits
162 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
163 resources:
164   small:
165     limits:
166       cpu: 2
167       memory: 4Gi
168     requests:
169       cpu: 1
170       memory: 2Gi
171   large:
172     limits:
173       cpu: 4
174       memory: 8Gi
175     requests:
176       cpu: 2
177       memory: 4Gi
178   unlimited: {}