Badhrinath Pa | 3a3088a | 2020-07-28 18:37:16 -0700 | [diff] [blame] | 1 | # Copyright 2020-present Open Networking Foundation |
| 2 | # |
| 3 | # SPDX-License-Identifier: Apache-2.0 |
| 4 | # SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0 |
| 5 | |
| 6 | images: |
| 7 | tags: |
| 8 | init: docker.io/omecproject/pod-init:1.0.0 |
| 9 | omecCni: docker.io/omecproject/omec-cni:1.0.0 |
| 10 | pfcpAgent: docker.io/omecproject/pfcp-agent:master-latest |
| 11 | depCheck: quay.io/stackanetes/kubernetes-entrypoint:v0.3.1 |
| 12 | pullPolicy: IfNotPresent |
| 13 | |
| 14 | nodeSelectors: |
| 15 | enabled: false |
| 16 | pfcpAgent: |
| 17 | label: node-role.aetherproject.org |
| 18 | value: connectivity |
| 19 | |
| 20 | resources: |
| 21 | enabled: true |
| 22 | pfcpAgent: |
| 23 | requests: |
| 24 | cpu: 4 |
| 25 | memory: 8Gi |
| 26 | limits: |
| 27 | cpu: 4 |
| 28 | memory: 8Gi |
| 29 | |
| 30 | config: |
| 31 | coreDump: |
| 32 | enabled: false |
| 33 | path: /tmp/coredump |
| 34 | sriov: |
| 35 | enabled: true |
| 36 | pfcpAgent: |
| 37 | ueIpPool: |
| 38 | ip: 10.250.0.0 |
| 39 | mask: 255.255.0.0 |
| 40 | s1u_mask: 255.255.255.255 |
| 41 | p4rtc_service: |
| 42 | name: onos |
| 43 | port: 51001 |
| 44 | # Provide the S1U and SGI networks facing device name and IP address |
| 45 | s1u: |
| 46 | device: s1u-net |
| 47 | ip: 192.168.252.1/24 |
| 48 | sgi: |
| 49 | device: sgi-net |
| 50 | ip: 192.168.250.3/24 |
| 51 | # Note that zmq is used for cp-dp commmunication when multiple UPFs is set |
| 52 | # Otherwise, direct UDP communication is used |
| 53 | # TODO: unify cp-dp comm to ZMQ for both multi and single UPF scenario |
| 54 | multiUpfs: false |
| 55 | cpComm: |
| 56 | # IMPORTANT: when you deploy CP and DP to separate clusters, enable nodePort |
| 57 | # from both cpComm(omec-control-plane) and dpComm(omec-data-plane) and |
| 58 | # set "addr" to remote cluster's entry node IP and |
| 59 | # "port" to cpComm.nodePort.port value configured in omec-control-plane. |
| 60 | addr: 192.168.0.20 |
| 61 | port: 21 |
| 62 | dpComm: |
| 63 | nodePort: |
| 64 | enabled: false |
| 65 | port: 30020 |
| 66 | port: 20 |
| 67 | # Set "--no-pci --vdev eth_af_packet0,iface=s1u-net --vdev eth_af_packet1,iface=sgi-net" |
| 68 | # when sriov is disabled |
| 69 | devices: "" |
| 70 | pci: "--no-pci" |
| 71 | dpName: "onf-menlo" |
| 72 | |
| 73 | networks: |
| 74 | cniPlugin: vfioveth |
| 75 | # Currently, we do not support dynamic IP allocation |
| 76 | ipam: static |
| 77 | s1u: |
| 78 | subnet: 192.168.251.0/24 |
| 79 | mask: 255.255.255.0 |
| 80 | gateway: 192.168.251.254 |
| 81 | sgi: |
| 82 | subnet: 192.168.250.0/24 |
| 83 | mask: 255.255.255.0 |
| 84 | gateway: 192.168.250.250 |