EDGEPOD-155 Replace public IPs to private IPs in OMEC charts default values

Change-Id: Ic1ae9683083ca006d9b05bfdcf06cdc3d2269b7e
diff --git a/omec/omec-control-plane/Chart.yaml b/omec/omec-control-plane/Chart.yaml
index 4de8a4e..7e2589c 100644
--- a/omec/omec-control-plane/Chart.yaml
+++ b/omec/omec-control-plane/Chart.yaml
@@ -19,4 +19,4 @@
 name: omec-control-plane
 icon: https://guide.opencord.org/logos/cord.svg
 
-version: 0.1.19
+version: 0.1.20
diff --git a/omec/omec-control-plane/values.yaml b/omec/omec-control-plane/values.yaml
index 09bfdee..0762fc0 100644
--- a/omec/omec-control-plane/values.yaml
+++ b/omec/omec-control-plane/values.yaml
@@ -226,10 +226,10 @@
   spgwc:
     apn: apn1
     ueIpPool:
-      ip: 16.0.0.0
-      mask: 255.0.0.0
+      ip: 10.250.0.0
+      mask: 255.255.0.0
     # This address must match to S1U IP address configured in omec-data-plane
-    s1uAddr: 119.0.0.3
+    s1uAddr: 192.168.251.3
     s11:
       nodePort:
         enabled: false
diff --git a/omec/omec-data-plane/Chart.yaml b/omec/omec-data-plane/Chart.yaml
index 5b334b1..8476ef9 100644
--- a/omec/omec-data-plane/Chart.yaml
+++ b/omec/omec-data-plane/Chart.yaml
@@ -19,4 +19,4 @@
 name: omec-data-plane
 icon: https://guide.opencord.org/logos/cord.svg
 
-version: 0.1.11
+version: 0.1.12
diff --git a/omec/omec-data-plane/values.yaml b/omec/omec-data-plane/values.yaml
index 7c0a8b8..fe2cf44 100644
--- a/omec/omec-data-plane/values.yaml
+++ b/omec/omec-data-plane/values.yaml
@@ -47,10 +47,10 @@
     # Provide the S1U and SGI networks facing device name and IP address
     s1u:
       device: s1u-net
-      ip: 119.0.0.3/24
+      ip: 192.168.251.3/24
     sgi:
       device: sgi-net
-      ip: 13.1.1.3/24
+      ip: 192.168.250.3/24
     # Note that zmq is used for cp-dp commmunication when multiple UPFs is set
     # Otherwise, direct UDP communication is used
     # TODO: unify cp-dp comm to ZMQ for both multi and single UPF scenario
@@ -77,10 +77,10 @@
   # Currently, we do not support dynamic IP allocation
   ipam: static
   s1u:
-    subnet: 119.0.0.0/24
+    subnet: 192.168.251.0/24
     mask: 255.255.255.0
-    gateway: 119.0.0.254
+    gateway: 192.168.251.254
   sgi:
-    subnet: 13.1.1.0/24
+    subnet: 192.168.250.0/24
     mask: 255.255.255.0
-    gateway: 13.1.1.254
+    gateway: 192.168.250.250