Merge "[GENERAL] Add Fiachra and Dan as Committers"
[oom.git] / kubernetes / policy / components / policy-clamp-fe / 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   centralizedLoggingEnabled: true
22   #AAF service
23   aafEnabled: true
24
25 #################################################################
26 # AAF part
27 #################################################################
28 certInitializer:
29   permission_user: 1000
30   permission_group: 999
31   addconfig: true
32   keystoreFile: "org.onap.clamp.p12"
33   truststoreFile: "org.onap.clamp.trust.jks"
34   keyFile: "org.onap.clamp.keyfile"
35   truststoreFileONAP: "truststoreONAPall.jks"
36   clamp_key: "clamp.key"
37   clamp_pem: "clamp.pem"
38   clamp_ca_certs_pem: "clamp-ca-certs.pem"
39   nameOverride: clamp-cert-initializer
40   aafDeployFqi: deployer@people.osaaf.org
41   aafDeployPass: demo123456!
42   # aafDeployCredsExternalSecret: some secret
43   fqdn: clamp
44   fqi: clamp@clamp.onap.org
45   public_fqdn: clamp.onap.org
46   cadi_longitude: "0.0"
47   cadi_latitude: "0.0"
48   app_ns: org.osaaf.aaf
49   credsPath: /opt/app/osaaf/local
50   aaf_add_config: >
51     cd {{ .Values.credsPath }};
52     openssl pkcs12 -in {{ .Values.keystoreFile }} -nocerts -nodes -passin pass:$cadi_keystore_password_p12 > {{ .Values.clamp_key }};
53     openssl pkcs12 -in {{ .Values.keystoreFile }} -clcerts -nokeys -passin pass:$cadi_keystore_password_p12 > {{ .Values.clamp_pem }};
54     openssl pkcs12 -in {{ .Values.keystoreFile }} -cacerts -nokeys -chain -passin pass:$cadi_keystore_password_p12 > {{ .Values.clamp_ca_certs_pem }};
55     chmod a+rx *;
56
57 subChartsOnly:
58   enabled: true
59
60 flavor: small
61
62 # application image
63 image: onap/policy-clamp-frontend:6.2.0
64 pullPolicy: Always
65
66 # flag to enable debugging - application support required
67 debugEnabled: false
68
69 # log configuration
70 log:
71   path: /var/log/nginx/
72
73 #################################################################
74 # Application configuration defaults.
75 #################################################################
76 config:
77   log:
78     logstashServiceName: log-ls
79     logstashPort: 5044
80   dataRootDir: /dockerdata-nfs
81
82 # default number of instances
83 replicaCount: 1
84
85 nodeSelector: {}
86
87 affinity: {}
88
89 # probe configuration parameters
90 liveness:
91   initialDelaySeconds: 120
92   periodSeconds: 10
93   timeoutSeconds: 3
94   # necessary to disable liveness probe when setting breakpoints
95   # in debugger so K8s doesn't restart unresponsive container
96   enabled: true
97
98 readiness:
99   initialDelaySeconds: 10
100   periodSeconds: 10
101   timeoutSeconds: 3
102
103 service:
104   type: NodePort
105   name: policy-clamp-fe
106   portName: policy-clamp-fe
107   internalPort: 2443
108   nodePort: 58
109
110   # as of 20180904 port 58 is reserved for clamp from log/logdemonode
111   # see https://wiki.onap.org/display/DW/OOM+NodePort+List
112
113 ingress:
114   enabled: false
115   service:
116     - baseaddr: "clamp.api"
117       name: "clamp"
118       port: 2443
119   config:
120     ssl: "redirect"
121
122 #resources: {}
123   # We usually recommend not to specify default resources and to leave this as a conscious
124   # choice for the user. This also increases chances charts run on environments with little
125   # resources, such as Minikube. If you do want to specify resources, uncomment the following
126   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
127   #
128   # Example:
129   # Configure resource requests and limits
130   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
131   # Minimum memory for development is 2 CPU cores and 4GB memory
132   # Minimum memory for production is 4 CPU cores and 8GB memory
133 resources:
134   small:
135     limits:
136       cpu: 1
137       memory: 200Mi
138     requests:
139       cpu: 1m
140       memory: 50Mi
141   large:
142     limits:
143       cpu: 1
144       memory: 500Mi
145     requests:
146       cpu: 10m
147       memory: 50Mi
148   unlimited: {}
149
150 #Pods Service Account
151 serviceAccount:
152   nameOverride: policy-clamp-fe
153   roles:
154     - read