X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2Fvim-emu.git;a=blobdiff_plain;f=src%2Femuvim%2Fapi%2Fopenstack%2Fcompute.py;h=39ce04df45ce8d17f1127e0f77f81bc035f6c42b;hp=6ec1d9f104c85392b33620e5b3eeb117c69027b8;hb=22ca76fed5440b326786c4b1f708599f4f5b084f;hpb=6e354f1000b822884944ae474df28e0def77d8eb diff --git a/src/emuvim/api/openstack/compute.py b/src/emuvim/api/openstack/compute.py index 6ec1d9f..39ce04d 100755 --- a/src/emuvim/api/openstack/compute.py +++ b/src/emuvim/api/openstack/compute.py @@ -526,10 +526,19 @@ class OpenstackCompute(object): Docker does not like too long instance names. This function provides a shorter name if needed """ + # fix for NetSoft'17 demo + # TODO remove this after the demo + if "http" in name or "apache" in name: + return "http" + elif "l4fw" in name or "socat" in name: + return "l4fw" + elif "proxy" in name or "squid" in name: + return "proxy" # this is a ugly fix, but we cannot do better for now (interface names are to long) if len(name) > char_limit: LOG.info("Long server name: {}".format(name)) # construct a short name + name = name.strip("-_ .") name = name.replace("_vnf", "") p = name.split("_") if len(p) > 0: