Merge "[DCAEGEN2] Update datafile-app-server to 1.6.0"
[oom.git] / kubernetes / policy / components / policy-clamp-be / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018-2021 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     cd {{ .Values.credsPath }};
49     chmod a+rx *;
50
51 secrets:
52   - uid: db-creds
53     type: basicAuth
54     externalSecret: '{{ tpl (default "" .Values.db.credsExternalSecret) . }}'
55     login: '{{ .Values.db.user }}'
56     password: '{{ .Values.db.password }}'
57     passwordPolicy: required
58   - uid: sdc-creds
59     type: password
60     externalSecret: '{{ tpl (default "" .Values.sdc.sdcClientExternalSecret) . }}'
61     password: '{{ .Values.sdc.clientPassword }}'
62     passwordPolicy: required
63
64 flavor: small
65
66 # application image
67 image: onap/policy-clamp-backend:6.1.1
68 pullPolicy: Always
69
70 # flag to enable debugging - application support required
71 debugEnabled: false
72
73 # log configuration
74 log:
75   path: /var/log/onap
76
77 #################################################################
78 # Application configuration defaults.
79 #################################################################
80
81 #####dummy values for db user and password to pass lint!!!#######
82
83 sdc:
84   clientPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
85
86 db:
87   user: policy_user
88   password: policy_user
89   image: mariadb:10.5.8
90   service:
91     name: policy-mariadb
92     internalPort: 3306
93
94 config:
95   log:
96     logstashServiceName: log-ls
97     logstashPort: 5044
98   mysqlPassword: strong_pitchou
99   dataRootDir: /dockerdata-nfs
100
101 # default number of instances
102 replicaCount: 1
103
104 nodeSelector: {}
105
106 affinity: {}
107
108 # probe configuration parameters
109 liveness:
110   initialDelaySeconds: 120
111   periodSeconds: 10
112   timeoutSeconds: 3
113   # necessary to disable liveness probe when setting breakpoints
114   # in debugger so K8s doesn't restart unresponsive container
115   enabled: true
116
117 readiness:
118   initialDelaySeconds: 10
119   periodSeconds: 10
120   timeoutSeconds: 3
121
122 service:
123   type: ClusterIP
124   name: policy-clamp-be
125   portName: policy-clamp-be
126   internalPort: 8443
127   externalPort: 8443
128
129 ingress:
130   enabled: false
131
132 #resources: {}
133 # We usually recommend not to specify default resources and to leave this as a conscious
134 # choice for the user. This also increases chances charts run on environments with little
135 # resources, such as Minikube. If you do want to specify resources, uncomment the following
136 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
137 #
138 # Example:
139 # Configure resource requests and limits
140 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
141 # Minimum memory for development is 2 CPU cores and 4GB memory
142 # Minimum memory for production is 4 CPU cores and 8GB memory
143 resources:
144   small:
145     limits:
146       cpu: 1
147       memory: 1Gi
148     requests:
149       cpu: 1m
150       memory: 1Gi
151   large:
152     limits:
153       cpu: 1
154       memory: 3Gi
155     requests:
156       cpu: 10m
157       memory: 3Gi
158   unlimited: {}
159
160 #Pods Service Account
161 serviceAccount:
162   nameOverride: policy-clamp-be
163   roles:
164     - read