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

Change-Id: Ic1ae9683083ca006d9b05bfdcf06cdc3d2269b7e
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