[SDNC] Simplify cert retrieval script
[oom.git] / kubernetes / sdnc / components / sdnc-web / values.yaml
1 # Copyright © 2020 highstreet technologies GmbH
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   aafEnabled: true
20   nodePortPrefix: 322
21   k8scluster: svc.cluster.local
22 #################################################################
23 # Application configuration defaults.
24 #################################################################
25 # application image
26 image: "onap/sdnc-web-image:2.4.1"
27 pullPolicy: Always
28
29 config:
30   sdncChartName: sdnc
31   webProtocol: HTTPS
32   webPlainProtocol: HTTP
33   webPort: 8443
34   webPlainPort: 8080
35   sdnrProtocol: https
36   sdnrPlainProtocol: http
37   sdnrHost: "sdnc"
38   sdnrPlainHost: "sdnc"
39   sdnrPort: "8443"
40   sdnrPlainPort : "8080"
41   sslCertDir: "/opt/app/osaaf/local/certs"
42   sslCertiticate: "cert.pem"
43   sslCertKey: "key.pem"
44   oauth:
45     enabled: false
46     odluxRbac:
47       enabled: false
48   transportpce:
49     enabled: false
50     transportpceUrl: http://transportpce.transportpce:8181
51   topologyserver:
52     enabled: false
53     topologyserverUrl: http://toplogy-api-service.topology:3001
54     tileserverUrl: https://tile.openstreetmap.org
55
56
57 #################################################################
58 # aaf configuration defaults.
59 #################################################################
60 certInitializer:
61   nameOverride: sdnc-web-cert-initializer
62   fqdn: "sdnc"
63   app_ns: "org.osaaf.aaf"
64   fqi: "sdnc@sdnc.onap.org"
65   fqi_namespace: "org.onap.sdnc"
66   public_fqdn: "sdnc.onap.org"
67   aafDeployFqi: "deployer@people.osaaf.org"
68   aafDeployPass: demo123456!
69   cadi_latitude: "38.0"
70   cadi_longitude: "-72.0"
71   credsPath: /opt/app/osaaf/local
72   aaf_add_config: |
73     cd /opt/app/osaaf/local
74     mkdir -p certs
75     keytool -exportcert -rfc -file certs/cacert.pem -keystore {{ .Values.fqi_namespace }}.trust.jks -alias ca_local_0 -storepass $cadi_truststore_password
76     openssl pkcs12 -in {{ .Values.fqi_namespace }}.p12 -out certs/cert.pem -passin pass:$cadi_keystore_password_p12 -passout pass:$cadi_keystore_password_p12
77     cp {{ .Values.fqi_namespace }}.key certs/key.pem
78     chmod -R 755 certs
79
80 # default number of instances
81 replicaCount: 1
82
83 nodeSelector: {}
84
85 affinity: {}
86
87 # probe configuration parameters
88 liveness:
89   initialDelaySeconds: 180
90   periodSeconds: 10
91   # necessary to disable liveness probe when setting breakpoints
92   # in debugger so K8s doesn't restart unresponsive container
93   enabled: true
94
95 readiness:
96   initialDelaySeconds: 60
97   periodSeconds: 10
98
99 service:
100   name: sdnc-web
101   suffix: service
102   type: NodePort
103   sessionAffinity: ClientIP
104   # for liveness and readiness probe only
105   # internalPort:
106   internalPort: 8443
107   internalPlainPort: 8080
108   ports:
109   - name: http-sdnc-web
110     port: "8443"
111     plain_port: "8080"
112     port_protocol: http
113     nodePort: "05"
114
115 #ingress:
116 #  enabled: false
117
118 #Resource limit flavor -By default using small
119 flavor: small
120 #segregation for different environment (small and large)
121 resources:
122   small:
123     limits:
124       cpu: 1
125       memory: 1Gi
126     requests:
127       cpu: 0.5
128       memory: 500Mi
129   large:
130     limits:
131       cpu: 2
132       memory: 2Gi
133     requests:
134       cpu: 1
135       memory: 1Gi
136   unlimited: {}
137
138 #Pods Service Account
139 serviceAccount:
140   nameOverride: sdnc-web
141   roles:
142     - read