From 54ce6e00b542be915f552bbf2e680c85f33ed86b Mon Sep 17 00:00:00 2001 From: gifrerenom <lluis.gifre@cttc.es> Date: Fri, 7 Oct 2022 11:19:56 +0200 Subject: [PATCH] Tutorial: - updated code repository to clone from --- tutorial/1-3-deploy-tfs.md | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/tutorial/1-3-deploy-tfs.md b/tutorial/1-3-deploy-tfs.md index 9b2da4fc1..b1f86c718 100644 --- a/tutorial/1-3-deploy-tfs.md +++ b/tutorial/1-3-deploy-tfs.md @@ -11,25 +11,15 @@ sudo apt-get install -y git curl jq ## 1.3.2. Clone the Git repository of the TeraFlowSDN controller -__Important__: Right now, we have two repositories hosting the code of TeraFlowSDN: GitLab.com and ETSI owned GitLab - repository. Nowadays, only GitLab.com repository accepts code contributions that are periodically - mirrored to ETSI labs. In the near future, we plan to swap the repository roles and new contributions - will be accepted only at ETSI labs, while GitLab.com will probably be kept as a mirror of ETSI. If you - plan to contribute code to the TeraFlowSDN controller, by now, clone from GitLab.com. We will update the - tutorial as soon as roles of repositories are swapped. - -Clone from GitLab (if you want to contribute code to TeraFlowSDN): -```bash -mkdir ~/tfs-ctrl -git clone https://gitlab.com/teraflow-h2020/controller.git ~/tfs-ctrl -``` - -Clone from ETSI owned GitLab (if you do not plan to contribute code): +Clone from ETSI-hosted GitLab code repository: ```bash mkdir ~/tfs-ctrl git clone https://labs.etsi.org/rep/tfs/controller.git ~/tfs-ctrl ``` +__Important__: Original H2020-TeraFlow project hosted on GitLab.com has been archieved and will not receive further + contributions/updates. Please, clone from ETSI-hosted GitLab code repository. + ## 1.3.3. Checkout the appropriate Git branch By default 'master' branch is checked out. If you want to deploy 'develop' that incorporates the most up-to-date code -- GitLab