blob: 32938fa8f73b68c4d9de58975eee345771db7702 [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
Hyunsun Moon06f98552019-08-15 13:44:47 -060029 hss:
30 label: omec-cp
31 value: enabled
32 mme:
33 label: omec-cp
34 value: enabled
35 spgwc:
36 label: omec-cp
37 value: enabled
38 spgwu:
39 label: omec-dp
40 value: enabled
Wei-Yu Chen0f12b9c2019-04-18 11:12:59 -070041
Hyunsun Moon06f98552019-08-15 13:44:47 -060042resources:
43 enabled: true
Hyunsun Moon06f98552019-08-15 13:44:47 -060044 hss:
45 requests:
46 cpu: 2
47 memory: 1Gi
48 limits:
49 cpu: 2
50 memory: 1Gi
51 mme:
52 # Note that MME pod is composed of 4 containers
53 # Provide resources for a container, not a pod
54 requests:
55 cpu: 0.5
56 memory: 1Gi
57 limits:
58 cpu: 0.5
59 memory: 1Gi
60 spgwc:
61 requests:
62 cpu: 2
63 memory: 5Gi
64 limits:
65 cpu: 2
66 memory: 5Gi
67 spgwu:
68 requests:
69 cpu: 4
70 memory: 8Gi
71 limits:
72 cpu: 4
73 memory: 8Gi
Wei-Yu Chen0f12b9c2019-04-18 11:12:59 -070074
Hyunsun Moond8804b32019-08-18 00:31:43 -060075cassandra:
76 deploy: true
77 fullnameOverride: cassandra
78 image:
79 tag: 2.1.20
80 #selector:
81 # nodeSelector:
82 # cassandra: enabled
83 persistence:
84 enabled: false
85 config:
86 #cluster_size: 1
87 endpoint_snitch: GossipingPropertyFileSnitch
88 resources: {}
89 #requests:
90 # memory: 4Gi
91 # cpu: 2
92 #limits:
93 # memory: 4Gi
94 # cpu: 2
95
Hyunsun Moon06f98552019-08-15 13:44:47 -060096config:
Hyunsun Moon06f98552019-08-15 13:44:47 -060097 hss: {}
Hyunsun Moond8804b32019-08-18 00:31:43 -060098 # hssdb will be set to cassandra if unset
99 #hssdb:
Hyunsun Moon06f98552019-08-15 13:44:47 -0600100 mme:
Hyunsun Moon636e17d2019-07-03 12:52:15 -0500101 mme:
102 name: vmmestandalone
103 group_id: 1
104 code: 1
105 mcc:
106 dig1: 2
107 dig2: 0
108 dig3: 8
109 mnc:
110 dig1: 0
111 dig2: 1
112 dig3: -1
113 s1ap:
114 sctp_port: 36412
115 sctp_port_external: 36412
116 s11:
117 egtp_default_port: 2123
Hyunsun Moon06f98552019-08-15 13:44:47 -0600118 # sgw_addr and pgw_addr will be set dynamically if unset
119 #sgw_addr:
120 #pgw_addr:
Hyunsun Moon636e17d2019-07-03 12:52:15 -0500121 s6a:
122 host_type: freediameter
Hyunsun Moon06f98552019-08-15 13:44:47 -0600123 # host and realm will be set dynamically if unset
124 #host:
125 #realm:
126 spgwc: {}
127 spgwu:
Hyunsun Moona24d3f92019-06-19 03:04:58 -0500128 dp:
129 # s1u and sgi interfaces are fixed to "s1u-net" and "sgi-net"
Hyunsun Moon06f98552019-08-15 13:44:47 -0600130 # Note that s1uAfDev and sgiAfDev are valid only when sriov is disabled
Hyunsun Moona24d3f92019-06-19 03:04:58 -0500131 # setup-af-iface.sh script creates additional veth pair with the names here
Hyunsun Moon06f98552019-08-15 13:44:47 -0600132 s1uAfDev: s1u-veth
133 sgiAfDev: sgi-veth
134 # set "--no-pci --vdev eth_af_packet0,iface=s1u-net --vdev eth_af_packet1,iface=sgi-net"
Hyunsun Moona24d3f92019-06-19 03:04:58 -0500135 # when sriov is disabled
136 devices: ""
Hyunsun Moon06f98552019-08-15 13:44:47 -0600137 rtrSgiIp: 13.1.1.254
138 sgiMask: 255.255.255.0
Wei-Yu Chen0f12b9c2019-04-18 11:12:59 -0700139
Hyunsun Moon06f98552019-08-15 13:44:47 -0600140networks:
Hyunsun Moona24d3f92019-06-19 03:04:58 -0500141 sriov:
142 enabled: true
Hyunsun Moon06f98552019-08-15 13:44:47 -0600143 cniPlugin: vfioveth
144 ipam: centralip
145 # etcdurl is required only when centralip IPAM is used
146 etcdurl: http://localhost:32379
Hyunsun Moon159d1f72019-07-24 02:12:28 -0600147 s1u:
Hyunsun Moon159d1f72019-07-24 02:12:28 -0600148 subnet: 119.0.0.0/24
149 gateway: 119.0.0.254
Hyunsun Moon159d1f72019-07-24 02:12:28 -0600150 sgi:
Hyunsun Moon159d1f72019-07-24 02:12:28 -0600151 subnet: 13.1.1.0/24
152 gateway: 13.1.1.254