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