Mandeep Khinda | b1f9efe | 2018-03-28 19:01:55 +0000 | [diff] [blame] | 1 | # Copyright © 2017 Amdocs, Bell Canada |
toshrajbhardwaj | f4fc1c6 | 2018-08-06 07:35:14 +0000 | [diff] [blame] | 2 | # Modifications Copyright © 2018 AT&T, ZTE |
Mandeep Khinda | b1f9efe | 2018-03-28 19:01:55 +0000 | [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 | |
Mandeep Khinda | a1047f4 | 2018-03-22 02:12:15 +0000 | [diff] [blame] | 16 | ################################################################# |
| 17 | # Global configuration defaults. |
| 18 | ################################################################# |
| 19 | global: |
| 20 | nodePortPrefix: 302 |
Mandeep Khinda | a1047f4 | 2018-03-22 02:12:15 +0000 | [diff] [blame] | 21 | readinessRepository: oomk8s |
Mahendra Raghuwanshi | 35f83f5 | 2019-03-20 10:42:49 +0000 | [diff] [blame] | 22 | readinessImage: readiness-check:2.0.2 |
Mandeep Khinda | a1047f4 | 2018-03-22 02:12:15 +0000 | [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 |
k.kedron | c784bbd | 2019-09-05 18:28:16 +0200 | [diff] [blame] | 31 | image: onap/sdc-frontend:1.5.2 |
Mandeep Khinda | a1047f4 | 2018-03-22 02:12:15 +0000 | [diff] [blame] | 32 | pullPolicy: Always |
| 33 | |
Mandeep Khinda | 403c1c1 | 2018-04-19 23:15:43 +0000 | [diff] [blame] | 34 | config: |
r.bogacki | c535c93 | 2019-09-03 10:34:12 +0200 | [diff] [blame] | 35 | javaOptions: "-Xmx256m -Xms256m" |
shrikantawachar | 0c84bc3 | 2019-01-16 13:12:21 +0530 | [diff] [blame] | 36 | plugins: |
k.kedron | c784bbd | 2019-09-05 18:28:16 +0200 | [diff] [blame] | 37 | dcae_discovery_url: "https://sdc-dcae-fe:9444/dcaed/#/home" |
| 38 | dcae_source_url: "https://sdc.dcae.plugin.simpledemo.onap.org:30264/dcaed/#/home" |
| 39 | dcae_dt_discovery_url: "https://sdc-dcae-dt:9446/dcae/#/dcae/home" |
| 40 | dcae_dt_source_url: "https://sdc.dcae.plugin.simpledemo.onap.org:30266/dcae/#/dcae/home" |
shrikantawachar | 40aeadf | 2019-02-19 18:28:54 +0530 | [diff] [blame] | 41 | workflow_discovery_url: "http://sdc-wfd-fe:8080/workflows" |
dfx1971 | e8246b5 | 2019-05-23 12:07:39 +0300 | [diff] [blame] | 42 | workflow_source_url: "https://sdc.workflow.plugin.simpledemo.onap.org:30431/workflows/" |
Mandeep Khinda | a1047f4 | 2018-03-22 02:12:15 +0000 | [diff] [blame] | 43 | |
| 44 | # default number of instances |
| 45 | replicaCount: 1 |
| 46 | |
| 47 | nodeSelector: {} |
| 48 | |
| 49 | affinity: {} |
| 50 | |
| 51 | # probe configuration parameters |
| 52 | liveness: |
| 53 | initialDelaySeconds: 10 |
Brian Freeman | 6142d94 | 2019-10-02 09:50:19 -0500 | [diff] [blame] | 54 | periodSeconds: 60 |
| 55 | timeoutSeconds: 15 |
Mandeep Khinda | a1047f4 | 2018-03-22 02:12:15 +0000 | [diff] [blame] | 56 | # necessary to disable liveness probe when setting breakpoints |
| 57 | # in debugger so K8s doesn't restart unresponsive container |
| 58 | enabled: true |
| 59 | |
| 60 | readiness: |
| 61 | initialDelaySeconds: 10 |
Brian Freeman | 6142d94 | 2019-10-02 09:50:19 -0500 | [diff] [blame] | 62 | periodSeconds: 60 |
| 63 | timeoutSeconds: 15 |
Mandeep Khinda | a1047f4 | 2018-03-22 02:12:15 +0000 | [diff] [blame] | 64 | |
| 65 | service: |
| 66 | #Example service definition with external, internal and node ports. |
| 67 | #Services may use any combination of ports depending on the 'type' of |
| 68 | #service being defined. |
| 69 | type: NodePort |
| 70 | name: sdc-fe |
BorislavG | 1ffbd99 | 2018-04-24 07:56:27 +0000 | [diff] [blame] | 71 | portName: sdc-fe |
Mandeep Khinda | a1047f4 | 2018-03-22 02:12:15 +0000 | [diff] [blame] | 72 | nodePort: "06" |
| 73 | internalPort: 8181 |
Mandeep Khinda | fe527eb | 2018-10-16 09:56:34 -0400 | [diff] [blame] | 74 | externalPort: 8181 |
Mandeep Khinda | a1047f4 | 2018-03-22 02:12:15 +0000 | [diff] [blame] | 75 | nodePort2: "07" |
| 76 | internalPort2: 9443 |
Mandeep Khinda | fe527eb | 2018-10-16 09:56:34 -0400 | [diff] [blame] | 77 | externalPort2: 9443 |
Mandeep Khinda | a1047f4 | 2018-03-22 02:12:15 +0000 | [diff] [blame] | 78 | |
| 79 | |
| 80 | |
| 81 | ingress: |
| 82 | enabled: false |
| 83 | |
Mukul | a93baa8 | 2018-09-19 15:56:58 +0000 | [diff] [blame] | 84 | # Resource Limit flavor -By Default using small |
| 85 | flavor: small |
| 86 | # Segregation for Different environment (Small and Large) |
| 87 | resources: |
| 88 | small: |
| 89 | limits: |
| 90 | cpu: 1 |
| 91 | memory: 4Gi |
| 92 | requests: |
| 93 | cpu: 10m |
| 94 | memory: 1Gi |
| 95 | large: |
| 96 | limits: |
| 97 | cpu: 2 |
| 98 | memory: 8Gi |
| 99 | requests: |
| 100 | cpu: 20m |
| 101 | memory: 2Gi |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 102 | unlimited: {} |