toshrajbhardwaj | f4fc1c6 | 2018-08-06 07:35:14 +0000 | [diff] [blame] | 1 | # Copyright © 2017 Amdocs, Bell Canada |
| 2 | # Modifications Copyright © 2018 AT&T, ZTE |
priyanshua | 1b06139 | 2018-05-29 12:50:14 +0530 | [diff] [blame] | 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 |
Mahendra Raghuwanshi | 35f83f5 | 2019-03-20 10:42:49 +0000 | [diff] [blame] | 22 | readinessImage: readiness-check:2.0.2 |
priyanshua | 1b06139 | 2018-05-29 12:50:14 +0530 | [diff] [blame] | 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 |
vasraz | ee9aaf2 | 2020-03-03 13:59:45 +0000 | [diff] [blame] | 31 | image: onap/sdc-workflow-backend:1.7.0 |
| 32 | configInitImage: onap/sdc-workflow-init:1.7.0 |
priyanshua | 1b06139 | 2018-05-29 12:50:14 +0530 | [diff] [blame] | 33 | pullPolicy: Always |
| 34 | |
priyanshu | 617e90b | 2019-03-14 12:56:55 +0530 | [diff] [blame] | 35 | initJob: |
| 36 | enabled: true |
| 37 | |
priyanshua | 1b06139 | 2018-05-29 12:50:14 +0530 | [diff] [blame] | 38 | config: |
r.bogacki | 00bd086 | 2019-09-03 09:22:43 +0200 | [diff] [blame] | 39 | javaOptions: "-Xmx1536m -Xms1536m" |
priyanshu | bd7fbe2 | 2019-03-20 12:45:21 +0530 | [diff] [blame] | 40 | cassandraAuthenticationEnabled: true |
priyanshu | 3af9db6 | 2018-08-16 16:23:52 +0530 | [diff] [blame] | 41 | cassandraClientPort: 9042 |
IlanaP | c80bff9 | 2019-11-18 21:10:08 +0200 | [diff] [blame] | 42 | |
r.bogacki | 08a72d6 | 2019-10-01 08:43:44 +0200 | [diff] [blame] | 43 | sdcProtocol: HTTPS |
| 44 | sdcEndpoint: sdc-be:8443 |
priyanshu | c00acbb | 2018-09-06 11:29:23 +0530 | [diff] [blame] | 45 | sdcExternalUser: workflow |
IlanaP | c80bff9 | 2019-11-18 21:10:08 +0200 | [diff] [blame] | 46 | |
| 47 | serverSSLEnabled: true |
| 48 | |
priyanshu | bd7fbe2 | 2019-03-20 12:45:21 +0530 | [diff] [blame] | 49 | serverSSLKeyStoreType: jks |
MichaelMorris | b137f7e | 2020-03-15 17:44:48 +0000 | [diff] [blame] | 50 | serverSSLKeyStorePath: /home/sdc/etc/keystore |
IlanaP | c80bff9 | 2019-11-18 21:10:08 +0200 | [diff] [blame] | 51 | |
| 52 | serverSSLTrustStoreType: jks |
MichaelMorris | b137f7e | 2020-03-15 17:44:48 +0000 | [diff] [blame] | 53 | serverSSLTrustStorePath: /home/sdc/etc/truststore |
IlanaP | c80bff9 | 2019-11-18 21:10:08 +0200 | [diff] [blame] | 54 | |
priyanshu | bd7fbe2 | 2019-03-20 12:45:21 +0530 | [diff] [blame] | 55 | cassandraSSLEnabled: false |
MichaelMorris | b137f7e | 2020-03-15 17:44:48 +0000 | [diff] [blame] | 56 | cassandraTrustStorePath: /home/sdc/etc/truststore |
priyanshua | 1b06139 | 2018-05-29 12:50:14 +0530 | [diff] [blame] | 57 | |
| 58 | # default number of instances |
| 59 | replicaCount: 1 |
| 60 | |
| 61 | nodeSelector: {} |
| 62 | |
| 63 | affinity: {} |
| 64 | |
| 65 | # probe configuration parameters |
| 66 | liveness: |
| 67 | initialDelaySeconds: 60 |
| 68 | periodSeconds: 10 |
| 69 | # necessary to disable liveness probe when setting breakpoints |
| 70 | # in debugger so K8s doesn't restart unresponsive container |
| 71 | enabled: true |
| 72 | |
| 73 | readiness: |
| 74 | initialDelaySeconds: 60 |
| 75 | periodSeconds: 10 |
| 76 | |
| 77 | service: |
| 78 | type: NodePort |
IlanaP | c80bff9 | 2019-11-18 21:10:08 +0200 | [diff] [blame] | 79 | portName: sdc-wfd-be |
priyanshua | 1b06139 | 2018-05-29 12:50:14 +0530 | [diff] [blame] | 80 | internalPort: 8080 |
| 81 | externalPort: 8080 |
priyanshu | bd7fbe2 | 2019-03-20 12:45:21 +0530 | [diff] [blame] | 82 | internalPort2: 8443 |
| 83 | externalPort2: 8443 |
IlanaP | c80bff9 | 2019-11-18 21:10:08 +0200 | [diff] [blame] | 84 | nodePort: "57" # only one node port. set to http or https port depending on isHttpsEnabled property |
| 85 | |
priyanshua | 1b06139 | 2018-05-29 12:50:14 +0530 | [diff] [blame] | 86 | |
| 87 | ingress: |
| 88 | enabled: false |
Lucjan Bryndza | a0abab1 | 2019-11-28 11:00:50 +0100 | [diff] [blame] | 89 | service: |
| 90 | - baseaddr: "sdcwfdbe" |
| 91 | name: "sdc-wfd-be" |
| 92 | port: 8443 |
| 93 | config: |
| 94 | ssl: "redirect" |
| 95 | |
priyanshua | 1b06139 | 2018-05-29 12:50:14 +0530 | [diff] [blame] | 96 | resources: {} |
| 97 | # We usually recommend not to specify default resources and to leave this as a conscious |
| 98 | # choice for the user. This also increases chances charts run on environments with little |
| 99 | # resources, such as Minikube. If you do want to specify resources, uncomment the following |
| 100 | # lines, adjust them as necessary, and remove the curly braces after 'resources:'. |
| 101 | # |
| 102 | # Example: |
| 103 | # Configure resource requests and limits |
| 104 | # ref: http://kubernetes.io/docs/user-guide/compute-resources/ |
| 105 | # Minimum memory for development is 2 CPU cores and 4GB memory |
| 106 | # Minimum memory for production is 4 CPU cores and 8GB memory |
| 107 | #resources: |
| 108 | # limits: |
| 109 | # cpu: 2 |
| 110 | # memory: 4Gi |
| 111 | # requests: |
| 112 | # cpu: 2 |
| 113 | # memory: 4Gi |