blob: 876dcc70dcbf6774df20fce76cff61fee093602a [file] [log] [blame]
Wei-Yu Chen0f12b9c2019-04-18 11:12:59 -07001# Copyright 2018-present Open Networking Foundation
2# Copyright 2018 Intel Corporation
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
Hyunsun Moon06f98552019-08-15 13:44:47 -060016images:
17 tags:
18 init: docker.io/omecproject/pod-init:0.1.0-dev
19 hssdb: docker.io/omecproject/c3po-hssdb:0.1.0-dev
20 hss: docker.io/omecproject/c3po-hss:0.1.0-dev
21 mme: docker.io/omecproject/openmme:0.1.0-dev
22 spgwc: docker.io/omecproject/ngic-cp:0.1.0-dev
23 spgwu: docker.io/omecproject/ngic-dp:0.1.0-dev
24 depCheck: quay.io/stackanetes/kubernetes-entrypoint:v0.3.1
25 pullPolicy: IfNotPresent
Wei-Yu Chen0f12b9c2019-04-18 11:12:59 -070026
Hyunsun Moon06f98552019-08-15 13:44:47 -060027nodeSelectors:
28 enabled: false
29 hssdb:
30 label: omec-cp
31 value: enabled
32 hss:
33 label: omec-cp
34 value: enabled
35 mme:
36 label: omec-cp
37 value: enabled
38 spgwc:
39 label: omec-cp
40 value: enabled
41 spgwu:
42 label: omec-dp
43 value: enabled
Wei-Yu Chen0f12b9c2019-04-18 11:12:59 -070044
Hyunsun Moon06f98552019-08-15 13:44:47 -060045resources:
46 enabled: true
47 hssdb:
48 requests:
49 cpu: 2
50 memory: 4Gi
51 limits:
52 cpu: 2
53 memory: 4Gi
54 hss:
55 requests:
56 cpu: 2
57 memory: 1Gi
58 limits:
59 cpu: 2
60 memory: 1Gi
61 mme:
62 # Note that MME pod is composed of 4 containers
63 # Provide resources for a container, not a pod
64 requests:
65 cpu: 0.5
66 memory: 1Gi
67 limits:
68 cpu: 0.5
69 memory: 1Gi
70 spgwc:
71 requests:
72 cpu: 2
73 memory: 5Gi
74 limits:
75 cpu: 2
76 memory: 5Gi
77 spgwu:
78 requests:
79 cpu: 4
80 memory: 8Gi
81 limits:
82 cpu: 4
83 memory: 8Gi
Wei-Yu Chen0f12b9c2019-04-18 11:12:59 -070084
Hyunsun Moon06f98552019-08-15 13:44:47 -060085config:
86 hssdb: {}
87 hss: {}
88 mme:
Hyunsun Moon636e17d2019-07-03 12:52:15 -050089 mme:
90 name: vmmestandalone
91 group_id: 1
92 code: 1
93 mcc:
94 dig1: 2
95 dig2: 0
96 dig3: 8
97 mnc:
98 dig1: 0
99 dig2: 1
100 dig3: -1
101 s1ap:
102 sctp_port: 36412
103 sctp_port_external: 36412
104 s11:
105 egtp_default_port: 2123
Hyunsun Moon06f98552019-08-15 13:44:47 -0600106 # sgw_addr and pgw_addr will be set dynamically if unset
107 #sgw_addr:
108 #pgw_addr:
Hyunsun Moon636e17d2019-07-03 12:52:15 -0500109 s6a:
110 host_type: freediameter
Hyunsun Moon06f98552019-08-15 13:44:47 -0600111 # host and realm will be set dynamically if unset
112 #host:
113 #realm:
114 spgwc: {}
115 spgwu:
Hyunsun Moona24d3f92019-06-19 03:04:58 -0500116 dp:
117 # s1u and sgi interfaces are fixed to "s1u-net" and "sgi-net"
Hyunsun Moon06f98552019-08-15 13:44:47 -0600118 # Note that s1uAfDev and sgiAfDev are valid only when sriov is disabled
Hyunsun Moona24d3f92019-06-19 03:04:58 -0500119 # setup-af-iface.sh script creates additional veth pair with the names here
Hyunsun Moon06f98552019-08-15 13:44:47 -0600120 s1uAfDev: s1u-veth
121 sgiAfDev: sgi-veth
122 # set "--no-pci --vdev eth_af_packet0,iface=s1u-net --vdev eth_af_packet1,iface=sgi-net"
Hyunsun Moona24d3f92019-06-19 03:04:58 -0500123 # when sriov is disabled
124 devices: ""
Hyunsun Moon06f98552019-08-15 13:44:47 -0600125 rtrSgiIp: 13.1.1.254
126 sgiMask: 255.255.255.0
Wei-Yu Chen0f12b9c2019-04-18 11:12:59 -0700127
Hyunsun Moon06f98552019-08-15 13:44:47 -0600128networks:
Hyunsun Moona24d3f92019-06-19 03:04:58 -0500129 sriov:
130 enabled: true
Hyunsun Moon06f98552019-08-15 13:44:47 -0600131 cniPlugin: vfioveth
132 ipam: centralip
133 # etcdurl is required only when centralip IPAM is used
134 etcdurl: http://localhost:32379
Hyunsun Moon159d1f72019-07-24 02:12:28 -0600135 s1u:
Hyunsun Moon159d1f72019-07-24 02:12:28 -0600136 subnet: 119.0.0.0/24
137 gateway: 119.0.0.254
Hyunsun Moon159d1f72019-07-24 02:12:28 -0600138 sgi:
Hyunsun Moon159d1f72019-07-24 02:12:28 -0600139 subnet: 13.1.1.0/24
140 gateway: 13.1.1.254