APPC 1.6.4 docker released
[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.6.4
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 nodePort4 will be same as appc.service.nodePort4.
97 appc-cdt:
98   nodePort4: 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
123   internalPort: 8181
124   externalPort: 8282
125   nodePort: "08"
126
127   internalPort2: 8443
128   externalPort2: 8443
129   nodePort2: 30
130
131   externalPort3: 1830
132   nodePort3: 31
133   clusterPort: 2550
134
135   internalPort4: 9191
136   externalPort4: 9090
137   nodePort4: 11
138
139 ## Persist data to a persitent volume
140 persistence:
141   enabled: true
142
143   ## A manually managed Persistent Volume and Claim
144   ## Requires persistence.enabled: true
145   ## If defined, PVC must be created manually before volume will be bound
146   # existingClaim:
147   volumeReclaimPolicy: Retain
148
149   ## database data Persistent Volume Storage Class
150   ## If defined, storageClassName: <storageClass>
151   ## If set to "-", storageClassName: "", which disables dynamic provisioning
152   ## If undefined (the default) or set to null, no storageClassName spec is
153   ##   set, choosing the default provisioner.  (gp2 on AWS, standard on
154   ##   GKE, AWS & OpenStack)
155   accessMode: ReadWriteOnce
156   size: 1Gi
157   mountPath: /dockerdata-nfs
158   mountSubPath: appc/mdsal
159   mdsalPath: /opt/opendaylight/current/daexim
160
161 ingress:
162   enabled: false
163
164 # Configure resource requests and limits
165 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
166 resources:
167   small:
168     limits:
169       cpu: 2
170       memory: 4Gi
171     requests:
172       cpu: 1
173       memory: 2Gi
174   large:
175     limits:
176       cpu: 4
177       memory: 8Gi
178     requests:
179       cpu: 2
180       memory: 4Gi
181   unlimited: {}