Skip to content

Commit bb41490

Browse files
committed
change links to opensdn-io project
Depends-on: I7e986d058609041a5509d1af91b59bbe9ff1d332 Change-Id: I6d0d4222a65fe6d769962b93e59dbbc606e72237 Signed-off-by: tikitavi <rtikitavi@gmail.com>
1 parent 470d1dd commit bb41490

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

INFO.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ meetings:
3131
repeats: ''
3232
time: ''
3333
repositories:
34-
- tungstenfabric/tf-dev-env
34+
- opensdn-io/tf-dev-env
3535
committers:
3636
- <<: *tungstenfabric_tf-dev-env_ptl
3737
- name: 'Alexandre Levine'

README.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Create a WORKSPACE directory (build artifacts will be put there) and ```export W
5050
### 2. Download tf-dev-env and fetch sources
5151

5252
``` bash
53-
git clone http://github.com/tungstenfabric/tf-dev-env
53+
git clone http://github.com/opensdn-io/tf-dev-env
5454
```
5555

5656
Prepare the build container and fetch TF sources:
@@ -61,15 +61,15 @@ tf-dev-env/run.sh
6161

6262
Note: The sources are fetched into the directory $WORKSPACE/contrail.
6363
The [repo tool](https://storage.googleapis.com/git-repo-downloads/repo) is used for fetching.
64-
The directory structure corresponds to [default.xml](https://github.com/tungstenfabric/tf-vnc/blob/master/default.xml)
64+
The directory structure corresponds to [default.xml](https://github.com/opensdn-io/tf-vnc/blob/master/default.xml)
6565

6666
### 3. Make changes (if any needed)
6767

6868
Make required changes in sources fetched to contrail directory. For example, fetch particular review for controller (you can find download link in the gerrit review):
6969

7070
``` bash
7171
cd contrail/controller
72-
git fetch "https://gerrit.tungsten.io/tungstenfabric/tf-controller" refs/changes/..... && git checkout FETCH_HEAD
72+
git fetch "https://gerrit.tungsten.io/opensdn-io/tf-controller" refs/changes/..... && git checkout FETCH_HEAD
7373
cd ../../
7474
```
7575

@@ -301,9 +301,9 @@ IMPORTANT: some of the parts and pieces are still under construction
301301

302302
Full TF dev suite consists of:
303303

304-
- [tf-dev-env](https://github.com/tungstenfabric/tf-dev-env) - develop and build TF
305-
- [tf-devstack](https://github.com/tungstenfabric/tf-devstack) - deploy TF
306-
- [tf-dev-test](https://github.com/tungstenfabric/tf-dev-test) - test deployed TF
304+
- [tf-dev-env](https://github.com/opensdn-io/tf-dev-env) - develop and build TF
305+
- [tf-devstack](https://github.com/opensdn-io/tf-devstack) - deploy TF
306+
- [tf-dev-test](https://github.com/opensdn-io/tf-dev-test) - test deployed TF
307307

308308
Each of these tools can be used separately or in conjunction with the other two. They are supposed to be invoked in the sequence they were listed and produce environment (conf files and variables) seamlessly consumable by the next tool.
309309

@@ -338,7 +338,7 @@ sudo yum install -y git
338338
Clone tf-dev-env:
339339

340340
``` bash
341-
git clone http://github.com/tungstenfabric/tf-dev-env
341+
git clone http://github.com/opensdn-io/tf-dev-env
342342
```
343343
Switch to a branch other than master (if necessary):
344344

@@ -356,7 +356,7 @@ Make required changes in sources fetched to contrail directory. For example, fet
356356

357357
``` bash
358358
cd contrail/controller
359-
git fetch "https://gerrit.tungsten.io/tungstenfabric/tf-controller" refs/changes/..... && git checkout FETCH_HEAD
359+
git fetch "https://gerrit.tungsten.io/opensdn-io/tf-controller" refs/changes/..... && git checkout FETCH_HEAD
360360
cd ../../
361361
```
362362

@@ -371,7 +371,7 @@ tf-dev-env/run.sh build
371371
Clone tf-devstack:
372372

373373
``` bash
374-
git clone http://github.com/tungstenfabric/tf-devstack
374+
git clone http://github.com/opensdn-io/tf-devstack
375375
```
376376

377377
Deploy TF by means of k8s manifests, for example:
@@ -405,7 +405,7 @@ tf-devstack/k8s_manifests/cleanup.sh tf
405405
Clone tf-dev-test:
406406

407407
``` bash
408-
git clone http://github.com/tungstenfabric/tf-dev-test
408+
git clone http://github.com/opensdn-io/tf-dev-test
409409
```
410410

411411
Test the deployment by smoke tests, for example:
@@ -436,7 +436,7 @@ sudo yum install -y git
436436
Clone tf-devstack:
437437

438438
``` bash
439-
git clone http://github.com/tungstenfabric/tf-devstack
439+
git clone http://github.com/opensdn-io/tf-devstack
440440
```
441441

442442
Deploy TF by means of k8s manifests, for example:

Vagrantfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ USER = "root"
66
GROUP = "root"
77
HOME_DIR = "/root"
88
DEV_ENV_DIR = "#{HOME_DIR}/tf-dev-env"
9-
REPOS_DIR = "#{HOME_DIR}/src/gerrit.tungsten.io/tungstenfabric/"
9+
REPOS_DIR = "#{HOME_DIR}/src/gerrit.tungsten.io/opensdn-io/"
1010

1111
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
1212

scripts/sync-sources.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ repo_init_defauilts='--repo-branch=repo-1'
2222
repo_sync_defauilts='--no-tags --no-clone-bundle -q '
2323
[ -n "$DEBUG" ] && repo_init_defauilts+=' -q' && repo_sync_defauilts+=' -q'
2424

25-
REPO_INIT_MANIFEST_URL=${REPO_INIT_MANIFEST_URL:-"https://github.com/tungstenfabric/tf-vnc"}
26-
VNC_ORGANIZATION=${VNC_ORGANIZATION:-"tungstenfabric"}
25+
REPO_INIT_MANIFEST_URL=${REPO_INIT_MANIFEST_URL:-"https://github.com/opensdn-io/tf-vnc"}
26+
VNC_ORGANIZATION=${VNC_ORGANIZATION:-"opensdn"}
2727
VNC_REPO="tf-vnc"
2828
if [[ -n "$CONTRAIL_BRANCH" ]] ; then
2929
echo "INFO: CONTRAIL_BRANCH is not empty - $CONTRAIL_BRANCH"
3030
# check branch in tf-vnc, then in contrail-vnc and then fallback to master branch in tf-vnc
31-
if [[ $(curl -s https://api.github.com/repos/tungstenfabric/tf-vnc/branches/${CONTRAIL_BRANCH} | jq -r '.name') != "${CONTRAIL_BRANCH}" ]]; then
31+
if [[ $(curl -s https://api.github.com/repos/opensdn-io/tf-vnc/branches/${CONTRAIL_BRANCH} | jq -r '.name') != "${CONTRAIL_BRANCH}" ]]; then
3232
if [[ $(curl -s https://api.github.com/repos/Juniper/contrail-vnc/branches/${CONTRAIL_BRANCH} | jq -r '.name') == "${CONTRAIL_BRANCH}" ]]; then
3333
echo "INFO: using Juniper/contrail-vnc"
3434
REPO_INIT_MANIFEST_URL="https://github.com/Juniper/contrail-vnc"
@@ -39,8 +39,8 @@ if [[ -n "$CONTRAIL_BRANCH" ]] ; then
3939
# contrail-tripleo-puppet, contrail-trieplo-heat-templates do not
4040
# depend on contrail branch and they are openstack depended.
4141
echo "INFO: There is no $CONTRAIL_BRANCH branch in tf-vnc or in contrail-vnc, use master for tf-vnc"
42-
echo "INFO: tungstenfabric/tf-vnc answer"
43-
curl -s https://api.github.com/repos/tungstenfabric/tf-vnc/branches/${CONTRAIL_BRANCH}
42+
echo "INFO: opensdn-io/tf-vnc answer"
43+
curl -s https://api.github.com/repos/opensdn-io/tf-vnc/branches/${CONTRAIL_BRANCH}
4444
echo "INFO: Juniper/contrail-vnc asnwer"
4545
curl -s https://api.github.com/repos/Juniper/contrail-vnc/branches/${CONTRAIL_BRANCH}
4646
CONTRAIL_BRANCH="master"

0 commit comments

Comments
 (0)