Wei-Yu Chen | 450a98a | 2019-01-15 16:56:30 -0800 | [diff] [blame] | 1 | --- |
Wei-Yu Chen | 53aec36 | 2019-01-18 16:30:33 -0800 | [diff] [blame] | 2 | # Copyright 2018-present Open Networking Foundation |
| 3 | # Copyright 2018 Intel Corporation |
Wei-Yu Chen | 450a98a | 2019-01-15 16:56:30 -0800 | [diff] [blame] | 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 mcord-vepc-helm. |
| 18 | # This is a YAML-formatted file. |
| 19 | # Declare variables to be passed into your templates. |
| 20 | |
Wei-Yu Chen | da76c32 | 2019-01-18 13:31:55 -0800 | [diff] [blame] | 21 | hssdb_hostname: "cassandra" |
| 22 | hss_hostname: "hss" |
| 23 | mme_hostname: "mme" |
| 24 | spgwc_hostname: "ngic-cp" |
Matteo Scandolo | dec3f27 | 2019-02-04 13:57:35 -0800 | [diff] [blame] | 25 | # If the control plane is installed in a separate cluster, this value needs to be overridden |
Wei-Yu Chen | ec8a2d7 | 2019-02-12 14:36:10 -0800 | [diff] [blame] | 26 | # DP installed on LOCAL node3 |
| 27 | spgwu_s11_ip: "10.90.0.133" |
Matteo Scandolo | dec3f27 | 2019-02-04 13:57:35 -0800 | [diff] [blame] | 28 | # The spgwu_s1u_ip changes everytime, you can get it with this command: |
| 29 | # ngic_sriov=$(kubectl exec -n epc ngic-dp-0 ifconfig s1u-net | grep 'inet addr' | cut -d: -f2 | awk '{print $1}') |
| 30 | # and use it in the chart with --set spgwu_s1u_ip=$ngic_sriov |
Pingping Lin | 79f8470 | 2019-02-05 18:38:40 -0800 | [diff] [blame] | 31 | spgwu_s1u_ip: "119.0.0.45" |
Wei-Yu Chen | ec8a2d7 | 2019-02-12 14:36:10 -0800 | [diff] [blame] | 32 | spgwu_port: 31310 |
| 33 | # BBU is allocated on LOCAL's node2, use node2's IP |
| 34 | accelleran_hostname: "10.90.0.132" |
| 35 | accelleran_port: 31412 |
Wei-Yu Chen | b3409b8 | 2019-01-17 15:34:23 -0800 | [diff] [blame] | 36 | |
Wei-Yu Chen | 9f533ef | 2019-02-18 11:39:17 -0800 | [diff] [blame] | 37 | hssdb_node_selector: node3 |
| 38 | hss_node_selector: node3 |
| 39 | mme_node_selector: node2 |
| 40 | spgwc_node_selector: node2 |
| 41 | |
| 42 | |
Wei-Yu Chen | 450a98a | 2019-01-15 16:56:30 -0800 | [diff] [blame] | 43 | hss: |
| 44 | # TODO: init UE's IMEI to DB? |
| 45 | images: |
Wei-Yu Chen | b4ae01e | 2019-02-11 13:11:44 -0800 | [diff] [blame] | 46 | init: "node1:30500/ngick8stesting/c3po-cassandra:5e2eaf6" |
| 47 | hss: "node1:30500/ngick8stesting/c3po-hss:5e2eaf6" |
Wei-Yu Chen | 450a98a | 2019-01-15 16:56:30 -0800 | [diff] [blame] | 48 | ports: |
| 49 | s6a: 3868 |
| 50 | secs6a: 5868 |
| 51 | replicas: 1 |
| 52 | resources: |
| 53 | cpu: 3 |
| 54 | mem: "1Gi" |
| 55 | |
| 56 | mme: |
| 57 | images: |
Wei-Yu Chen | ec8a2d7 | 2019-02-12 14:36:10 -0800 | [diff] [blame] | 58 | init: "ngick8stesting/c3po-mmeinit" |
Pingping Lin | 79f8470 | 2019-02-05 18:38:40 -0800 | [diff] [blame] | 59 | mme: "ngick8stesting/c3po-mme:mwca-mme-debug" |
Wei-Yu Chen | 450a98a | 2019-01-15 16:56:30 -0800 | [diff] [blame] | 60 | ports: |
| 61 | s11: 2123 |
| 62 | s1ap: 36412 |
| 63 | s6a: 3868 |
Pingping Lin | 79f8470 | 2019-02-05 18:38:40 -0800 | [diff] [blame] | 64 | s1ap_external: 31412 |
Wei-Yu Chen | 450a98a | 2019-01-15 16:56:30 -0800 | [diff] [blame] | 65 | replicas: 1 |
| 66 | enb_s1ap_ip: "119.0.0.10" |
| 67 | resources: |
| 68 | cpu: 3 |
| 69 | mem: "1Gi" |
| 70 | |
| 71 | ngic_cp: |
| 72 | images: |
| 73 | init: "ngick8stesting/c3po-mmeinit" |
Wei-Yu Chen | b4ae01e | 2019-02-11 13:11:44 -0800 | [diff] [blame] | 74 | cp: "node1:30500/ngick8stesting/ngic-cp:690f418" |
Wei-Yu Chen | 450a98a | 2019-01-15 16:56:30 -0800 | [diff] [blame] | 75 | replicas: 1 |
| 76 | ports: |
| 77 | s11: 2123 |
| 78 | sx: 21 |
Wei-Yu Chen | ec8a2d7 | 2019-02-12 14:36:10 -0800 | [diff] [blame] | 79 | sx_external: 31311 |
Wei-Yu Chen | 450a98a | 2019-01-15 16:56:30 -0800 | [diff] [blame] | 80 | config: |
| 81 | apn: "apn1" |
| 82 | ue_ip_pool: "16.0.0.0" |
| 83 | ue_ip_pool_mask: "255.240.0.0" |
| 84 | resources: |
| 85 | cpu: 3 |
| 86 | mem: "5Gi" |
| 87 | |
| 88 | namespace: epc |