Hyunsun Moon | 6ff622e | 2020-03-11 17:14:48 -0700 | [diff] [blame] | 1 | # Copyright 2020-present Open Networking Foundation |
| 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 | images: |
| 16 | tags: |
| 17 | init: docker.io/omecproject/pod-init:1.0.0 |
| 18 | bess: registry.central.aetherproject.net/upf-epc-bess:0.1.0-dev |
| 19 | cpiface: registry.central.aetherproject.net/upf-epc-cpiface:0.1.0-dev |
| 20 | pullPolicy: Always |
| 21 | |
| 22 | nodeSelectors: |
| 23 | enabled: false |
| 24 | spgwu: |
| 25 | label: omec-upf |
| 26 | value: enabled |
| 27 | |
| 28 | resources: |
| 29 | enabled: true |
| 30 | bess: |
| 31 | requests: |
| 32 | hugepages-1Gi: 2Gi |
| 33 | cpu: 2 |
| 34 | memory: 256Mi |
| 35 | limits: |
| 36 | hugepages-1Gi: 2Gi |
| 37 | cpu: 2 |
| 38 | memory: 256Mi |
| 39 | routectl: |
| 40 | requests: |
| 41 | cpu: 256m |
| 42 | memory: 128Mi |
| 43 | limits: |
| 44 | cpu: 256m |
| 45 | memory: 128Mi |
| 46 | web: |
| 47 | requests: |
| 48 | cpu: 256m |
| 49 | memory: 128Mi |
| 50 | limits: |
| 51 | cpu: 256m |
| 52 | memory: 128Mi |
| 53 | cpiface: |
| 54 | requests: |
| 55 | cpu: 256m |
| 56 | memory: 128Mi |
| 57 | limits: |
| 58 | cpu: 256m |
| 59 | memory: 128Mi |
| 60 | |
| 61 | config: |
| 62 | coreDump: |
| 63 | enabled: false |
| 64 | path: /tmp/coredump |
| 65 | # Provide UPF interface driver. |
| 66 | # Available options are dpdk, af_xdp, af_packet. |
| 67 | mode: "dpdk" |
| 68 | spgwu: |
| 69 | name: "dp-staging" |
| 70 | workers: 1 |
| 71 | maxSessions: 50000 |
| 72 | # Provide the S1U and SGI networks facing device name and IP address |
| 73 | s1u: |
| 74 | device: s1u |
| 75 | ip: 192.168.252.7/24 |
| 76 | sgi: |
| 77 | device: sgi |
| 78 | ip: 192.168.250.7/24 |
| 79 | zmq: |
| 80 | recvPort: 20 |
| 81 | spgwc: |
| 82 | addr: spgwc-headless.omec.svc.staging.central |
| 83 | port: 21 |
| 84 | bess: |
| 85 | web: |
| 86 | nodePort: 36000 |
| 87 | |
| 88 | networks: |
| 89 | sriov: |
| 90 | enabled: true |
| 91 | cniPlugin: vfioveth |
| 92 | # Dynamic IP allocation is not supported for the user plane interfaces |
| 93 | ipam: static |
| 94 | enb: |
| 95 | subnet: 192.168.251.0/24 |
| 96 | ue: |
| 97 | subnet: 10.250.0.0/16 |
| 98 | sgi: |
| 99 | subnet: 192.168.250.0/24 |
| 100 | gateway: 192.168.250.1 |
| 101 | s1u: |
| 102 | subnet: 192.168.252.0/24 |
| 103 | gateway: 192.168.252.1 |