Merge "[DCAEMOD] Uses new tpls for repos / images"
[oom.git] / kubernetes / clamp / components / clamp-backend / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018-2019 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: # global defaults
20   nodePortPrefix: 302
21   persistence: {}
22   centralizedLoggingEnabled: true
23   #AAF service
24   aafEnabled: true
25
26 #################################################################
27 # AAF part
28 #################################################################
29 certInitializer:
30   permission_user: 1000
31   permission_group: 999
32   keystoreFile: 'org.onap.clamp.p12'
33   truststoreFile: 'org.onap.clamp.trust.jks'
34   keyFile: 'org.onap.clamp.keyfile'
35   truststoreFileONAP: 'truststoreONAPall.jks'
36   nameOverride: clamp-backend-cert-initializer
37   aafDeployFqi: deployer@people.osaaf.org
38   aafDeployPass: demo123456!
39   fqdn: clamp
40   fqi: clamp@clamp.onap.org
41   public_fqdn: clamp.onap.org
42   cadi_longitude: '-72.0'
43   cadi_latitude: '38.0'
44   app_ns: org.osaaf.aaf
45   credsPath: /opt/app/osaaf/local
46   aaf_add_config: >
47     /opt/app/aaf_config/bin/agent.sh local showpass {{.Values.fqi}} {{ .Values.fqdn }} > {{ .Values.credsPath }}/mycreds.prop;
48     grep '^cadi' {{ .Values.credsPath }}/mycreds.prop | awk -v FS="cadi_truststore_password=" 'NF>1{print $2}' > {{ .Values.credsPath }}/cadi_truststore_password.pwd;
49     grep '^cadi' {{ .Values.credsPath }}/mycreds.prop | awk -v FS="cadi_key_password=" 'NF>1{print $2}' > {{ .Values.credsPath }}/cadi_key_password.pwd;
50     grep '^cadi' {{ .Values.credsPath }}/mycreds.prop | awk -v FS="cadi_keystore_password=" 'NF>1{print $2}' > {{ .Values.credsPath }}/cadi_keystore_password.pwd;
51     grep '^cadi' {{ .Values.credsPath }}/mycreds.prop | awk -v FS="cadi_keystore_password_p12=" 'NF>1{print $2}' > {{ .Values.credsPath }}/cadi_keystore_password_p12.pwd;
52     cd {{ .Values.credsPath }};
53     chmod a+rx *;
54
55 secrets:
56   - uid: db-secret
57     type: basicAuth
58     externalSecret: '{{ tpl (default "" .Values.db.userCredsExternalSecret) . }}'
59     login: '{{ .Values.db.user }}'
60     password: '{{ .Values.db.password }}'
61     passwordPolicy: required
62
63 flavor: small
64
65 # application image
66 image: onap/clamp-backend:5.1.5
67 pullPolicy: Always
68
69 # flag to enable debugging - application support required
70 debugEnabled: false
71
72 # log configuration
73 log:
74   path: /var/log/onap
75
76 #################################################################
77 # Application configuration defaults.
78 #################################################################
79
80 #####dummy values for db user and password to pass lint!!!#######
81
82 db:
83   user: dummyclds
84   password: dummysidnnd83K
85   databaseName: dummycldsdb4
86
87 config:
88   log:
89     logstashServiceName: log-ls
90     logstashPort: 5044
91   mysqlPassword: strong_pitchou
92   dataRootDir: /dockerdata-nfs
93
94 # default number of instances
95 replicaCount: 1
96
97 nodeSelector: {}
98
99 affinity: {}
100
101 # probe configuration parameters
102 liveness:
103   initialDelaySeconds: 120
104   periodSeconds: 10
105   timeoutSeconds: 3
106   # necessary to disable liveness probe when setting breakpoints
107   # in debugger so K8s doesn't restart unresponsive container
108   enabled: true
109
110 readiness:
111   initialDelaySeconds: 10
112   periodSeconds: 10
113   timeoutSeconds: 3
114
115 service:
116   type: ClusterIP
117   name: clamp-backend
118   portName: clamp-backend
119   internalPort: 8443
120   externalPort: 443
121
122 ingress:
123   enabled: false
124
125 #resources: {}
126 # We usually recommend not to specify default resources and to leave this as a conscious
127 # choice for the user. This also increases chances charts run on environments with little
128 # resources, such as Minikube. If you do want to specify resources, uncomment the following
129 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
130 #
131 # Example:
132 # Configure resource requests and limits
133 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
134 # Minimum memory for development is 2 CPU cores and 4GB memory
135 # Minimum memory for production is 4 CPU cores and 8GB memory
136 resources:
137   small:
138     limits:
139       cpu: 1
140       memory: 1Gi
141     requests:
142       cpu: 1m
143       memory: 1Gi
144   large:
145     limits:
146       cpu: 1
147       memory: 3Gi
148     requests:
149       cpu: 10m
150       memory: 3Gi
151   unlimited: {}