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