From 957416cc458b12c557027236e27568c62108782a Mon Sep 17 00:00:00 2001
From: Eesaan Atluri <atlurie@uab.edu>
Date: Thu, 31 Oct 2024 18:22:07 -0400
Subject: [PATCH] feat: Remove fixed IP assignment

Avoids error that the IP has already been assigned while trying multiple
proxy deploys
---
 .gitlab-ci.yml | 2 --
 1 file changed, 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 98fb237..65d92bb 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -159,7 +159,6 @@ deploy_http_proxy_node:
     - >
       export HTTP_PROXY_INSTANCE_PORT=$(openstack port create
       -c id -f value --network $INTERNALNET
-      --fixed-ip subnet=$INTERNALNET_SN,ip-address=$INTERNALNET_IP
       --disable-port-security
       ${HTTP_PROXY_INSTANCE_NAME}_internal_port)
     - >
@@ -208,7 +207,6 @@ deploy_ssh_proxy_node:
     - >
       export SSH_PROXY_INSTANCE_PORT=$(openstack port create
       -c id -f value --network $INTERNALNET
-      --fixed-ip subnet=$INTERNALNET_SN,ip-address=$INTERNALNET_IP
       --disable-port-security
       ${SSH_PROXY_INSTANCE_NAME}_internal_port)
     - >
-- 
GitLab