blob: 79991f51a4c3d964f54b5d556bab5d3ba45fadc1 [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# 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
Mike Elliott13fed112018-02-28 08:33:33 -050015#################################################################
16# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefix: 302
Mike Elliott13fed112018-02-28 08:33:33 -050020 readinessRepository: oomk8s
BorislavG3d6f9372018-04-15 11:55:39 +000021 readinessImage: readiness-check:2.0.0
Mike Elliott13fed112018-02-28 08:33:33 -050022 loggingRepository: docker.elastic.co
23 loggingImage: beats/filebeat:5.5.0
jmac99ff3972018-03-29 01:02:42 +000024 persistence:
25 mountPath: /dockerdata-nfs
Mike Elliott13fed112018-02-28 08:33:33 -050026
27#################################################################
28# Application configuration defaults.
29#################################################################
30# application image
31repository: nexus3.onap.org:10001
32image: onap/appc-image:1.3.0-SNAPSHOT-latest
kerenj6ca15a72017-08-23 12:05:23 +000033pullPolicy: Always
Mike Elliott13fed112018-02-28 08:33:33 -050034
35# flag to enable debugging - application support required
36debugEnabled: false
37
38# application configuration
39config:
40 dbRootPassword: openECOMP1.0
41 enableClustering: true
42 configDir: /opt/onap/appc/data/properties
43 dmaapTopic: SUCCESS
BorislavG5f3b6192018-03-25 18:12:38 +030044 logstashServiceName: log-ls
45 logstashPort: 5044
Aaron Hayef1a0ec2018-04-30 01:25:41 -040046 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
Mike Elliott13fed112018-02-28 08:33:33 -050053
54mysql:
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
65dgbuilder:
66 nameOverride: appc-dgbuilder
jmac99ff3972018-03-29 01:02:42 +000067 config:
68 dbPodName: appc-db
69 dbServiceName: appc-dbhost
BorislavG1ffbd992018-04-24 07:56:27 +000070 service:
71 name: appc-dgbuilder
Mike Elliott13fed112018-02-28 08:33:33 -050072
73# default number of instances
Roger Maitland6a069972018-05-09 18:23:58 -040074replicaCount: 1
Mike Elliott13fed112018-02-28 08:33:33 -050075
76nodeSelector: {}
77
78affinity: {}
79
80# probe configuration parameters
81liveness:
82 initialDelaySeconds: 10
83 periodSeconds: 10
84 # necessary to disable liveness probe when setting breakpoints
85 # in debugger so K8s doesn't restart unresponsive container
86 enabled: true
87
88readiness:
89 initialDelaySeconds: 10
90 periodSeconds: 10
91
92service:
93 type: NodePort
94 name: appc
BorislavG1ffbd992018-04-24 07:56:27 +000095 portName: appc
Mike Elliott13fed112018-02-28 08:33:33 -050096 #targetPort
97 internalPort: 8181
98 #port
99 externalPort: 8282
100 nodePort: 30
101
102 externalPort2: 1830
103 nodePort2: 31
104 clusterPort: 2550
105
BorislavG3dad2f42018-04-16 10:19:45 +0000106## Persist data to a persitent volume
107persistence:
108 enabled: true
109
110 ## A manually managed Persistent Volume and Claim
111 ## Requires persistence.enabled: true
112 ## If defined, PVC must be created manually before volume will be bound
113 # existingClaim:
114 volumeReclaimPolicy: Retain
115
116 ## database data Persistent Volume Storage Class
117 ## If defined, storageClassName: <storageClass>
118 ## If set to "-", storageClassName: "", which disables dynamic provisioning
119 ## If undefined (the default) or set to null, no storageClassName spec is
120 ## set, choosing the default provisioner. (gp2 on AWS, standard on
121 ## GKE, AWS & OpenStack)
122 accessMode: ReadWriteOnce
123 size: 1Gi
124 mountPath: /dockerdata-nfs
125 mountSubPath: appc/mdsal
126 mdsalPath: /opt/opendaylight/current/daexim
127
Mike Elliott13fed112018-02-28 08:33:33 -0500128ingress:
129 enabled: false
130
131resources: {}
132 # We usually recommend not to specify default resources and to leave this as a conscious
133 # choice for the user. This also increases chances charts run on environments with little
134 # resources, such as Minikube. If you do want to specify resources, uncomment the following
135 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
136 #
137 # Example:
138 # Configure resource requests and limits
139 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
140 # Minimum memory for development is 2 CPU cores and 4GB memory
141 # Minimum memory for production is 4 CPU cores and 8GB memory
142#resources:
143# limits:
144# cpu: 2
145# memory: 4Gi
146# requests:
147# cpu: 2
148# memory: 4Gi