Merge "Add ingress controler support to APPC"
[oom.git] / kubernetes / sdc / charts / sdc-wfd-be / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018 AT&T, ZTE
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:
20   nodePortPrefix: 302
21   readinessRepository: oomk8s
22   readinessImage: readiness-check:2.0.2
23   loggingRepository: docker.elastic.co
24   loggingImage: beats/filebeat:5.5.0
25
26 #################################################################
27 # Application configuration defaults.
28 #################################################################
29 # application image
30 repository: nexus3.onap.org:10001
31 image: onap/workflow-backend:1.6.0
32 configInitImage: onap/workflow-init:1.6.0
33 pullPolicy: Always
34
35 initJob:
36   enabled: true
37
38 config:
39   javaOptions: "-Xmx1536m -Xms1536m"
40   cassandraAuthenticationEnabled: true
41   cassandraThriftClientPort: 9160
42   cassandraClientPort: 9042
43
44   sdcProtocol: HTTPS
45   sdcEndpoint: sdc-be:8443
46   sdcExternalUser: workflow
47
48   serverSSLEnabled: true
49
50   serverSSLKeyStoreType: jks
51   serverSSLKeyStorePath: /etc/keystore
52
53   serverSSLTrustStoreType: jks
54   serverSSLTrustStorePath: /etc/truststore
55
56   cassandraSSLEnabled: false
57   cassandraTrustStorePath: /etc/truststore
58
59 # default number of instances
60 replicaCount: 1
61
62 nodeSelector: {}
63
64 affinity: {}
65
66 # probe configuration parameters
67 liveness:
68   initialDelaySeconds: 60
69   periodSeconds: 10
70   # necessary to disable liveness probe when setting breakpoints
71   # in debugger so K8s doesn't restart unresponsive container
72   enabled: true
73
74 readiness:
75   initialDelaySeconds: 60
76   periodSeconds: 10
77
78 service:
79   type: NodePort
80   portName: sdc-wfd-be
81   internalPort: 8080
82   externalPort: 8080
83   internalPort2: 8443
84   externalPort2: 8443
85   nodePort: "57" # only one node port. set to http or https port depending on isHttpsEnabled property
86
87
88 ingress:
89   enabled: false
90   service:
91     - baseaddr: "sdcwfdbe"
92       name: "sdc-wfd-be"
93       port: 8443
94   config:
95     ssl: "redirect"
96     
97 resources: {}
98   # We usually recommend not to specify default resources and to leave this as a conscious
99   # choice for the user. This also increases chances charts run on environments with little
100   # resources, such as Minikube. If you do want to specify resources, uncomment the following
101   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
102   #
103   # Example:
104   # Configure resource requests and limits
105   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
106   # Minimum memory for development is 2 CPU cores and 4GB memory
107   # Minimum memory for production is 4 CPU cores and 8GB memory
108 #resources:
109 #  limits:
110 #    cpu: 2
111 #    memory: 4Gi
112 #  requests:
113 #    cpu: 2
114 #    memory: 4Gi