Wei-Yu Chen | 0f12b9c | 2019-04-18 11:12:59 -0700 | [diff] [blame] | 1 | --- |
| 2 | # Copyright 2018-present Open Networking Foundation |
| 3 | # Copyright 2018 Intel Corporation |
| 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | |
| 17 | # Default values for M-CORD Services |
| 18 | # This is a YAML-formatted file. |
| 19 | # Declare variables to be passed into your templates. |
| 20 | |
| 21 | |
| 22 | # Global Block defines shared variables for all Kubernetes objects |
| 23 | # etcdurl: the etcd connection peer for centralIP network plugin |
| 24 | global: |
| 25 | namespace: default |
| 26 | fqdn: svc.cluster.local |
| 27 | imagepullpolicy: IfNotPresent |
| 28 | etcdurl: http://node1:32379 |
| 29 | |
| 30 | hssdb: |
| 31 | name: hssdb |
| 32 | image: krsna1729/c3po-hssdb |
| 33 | cpu: 3 |
| 34 | memory: 4Gi |
| 35 | |
| 36 | hss: |
| 37 | name: hss |
| 38 | initimage: krsna1729/c3po-hssdb |
| 39 | image: krsna1729/c3po-hss |
| 40 | cpu: 3 |
| 41 | memory: 1Gi |
| 42 | |
| 43 | mme: |
| 44 | name: mme |
| 45 | initimage: ngick8stesting/c3po-mmeinit |
| 46 | image: ngick8stesting/c3po-mme:5e2eaf6 |
| 47 | cpu: 3 |
| 48 | memory: 1Gi |
| 49 | |
| 50 | spgwc: |
| 51 | name: spgwc |
| 52 | initimage: ngick8stesting/kubectl |
| 53 | image: krsna1729/ngic-cp |
| 54 | cpu: 3 |
| 55 | memory: 5Gi |
| 56 | |
| 57 | spgwu: |
| 58 | name: spgwu |
| 59 | image: krsna1729/ngic-dp |
| 60 | cpu: 4 |
| 61 | memory: 8Gi |
| 62 | |
| 63 | enb: |
| 64 | host: 10.1.11.3 |
| 65 | port: 36412 |
| 66 | |
| 67 | # Network block defines the network used by SR-IOV pods |
| 68 | # ipamtype: defined the prefered IP management plugin (only support host-local or centralip) |
| 69 | # subnet: defined the customized network subnet range |
| 70 | # gateway: defined the default gateway for pod which attaches to current network |
| 71 | # this option will be ignored when using centralip as ipam plugin |
| 72 | networks: |
| 73 | - name: s1u-net |
| 74 | sriovtype: vfioveth |
| 75 | ipamtype: centralip |
| 76 | subnet: 119.0.0.0/24 |
| 77 | gateway: 119.0.0.254 |
| 78 | - name: sgi-net |
| 79 | sriovtype: vfioveth |
| 80 | ipamtype: centralip |
| 81 | subnet: 13.1.1.0/24 |
| 82 | gateway: 13.1.1.254 |