User Tools

Site Tools


sfc_reference_materials

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
sfc_reference_materials [2015/07/15 21:55]
Reinaldo Penno [Links to Materials]
sfc_reference_materials [2016/02/03 17:19] (current)
Brady Johnson [SFC Brahmaputra Information]
Line 3: Line 3:
 This page is intended to be a place that we can post up information,​ documents, links and other useful stuff with regards to the evolution of the SFC project within OPNFV. ​  There are no real rules for posting, but rather if we see a item of information that is being passed around within the mailing lists, links that we are referring to over and over again, lets add it in here and then point people to this page for reference.  ​ This page is intended to be a place that we can post up information,​ documents, links and other useful stuff with regards to the evolution of the SFC project within OPNFV. ​  There are no real rules for posting, but rather if we see a item of information that is being passed around within the mailing lists, links that we are referring to over and over again, lets add it in here and then point people to this page for reference.  ​
  
-Hopefully ​saves down on some of the clutter!+Hopefully ​cuts down on some of the clutter!
  
 +===== SFC Brahmaputra Information =====
 +
 +[[http://​lists.opnfv.org/​pipermail/​opnfv-tech-discuss/​2015-September/​005415.html | Milestone C]]
 +
 +[[https://​wiki.opnfv.org/​releases/​brahmaputra/​release_plan/​sfc_milestone_d_report | Milestone D]]
 +
 +[[https://​wiki.opnfv.org/​releases/​brahmaputra/​release_plan/​sfc_milestone_e_report | Milestone E]]
 +
 +OPNFV SFC design doc: [[http://​artifacts.opnfv.org/​sfc/​brahmaputra/​docs/​design/​index.html | HTML]] [[http://​artifacts.opnfv.org/​sfc/​brahmaputra/​docs/​design/​design.pdf | PDF]]
 ===== Links to Materials ===== ===== Links to Materials =====
 +
 +[[https://​docs.google.com/​document/​d/​1aoKYiExPtzyt3whETszeGh9neSKk2FpqxhgbGa0dkG0/​edit?​usp=sharing | OPNFV SFC Architecture overview]]
  
 [[ https://​docs.google.com/​document/​d/​1CQ6HODjk-sa5jSdZm9l6ygxc3TWTE8Zpgq3_NFbK1mc/​edit?​usp=sharing | SFC Hitchhiker'​s Guide a.k.a SFC Hackathon ]] [[ https://​docs.google.com/​document/​d/​1CQ6HODjk-sa5jSdZm9l6ygxc3TWTE8Zpgq3_NFbK1mc/​edit?​usp=sharing | SFC Hitchhiker'​s Guide a.k.a SFC Hackathon ]]
Line 22: Line 33:
  
 [[ https://​tools.ietf.org/​html/​draft-song-sfc-legacy-sf-mapping-05 | SFC Header Mapping for Legacy SF - Challenges ]] [[ https://​tools.ietf.org/​html/​draft-song-sfc-legacy-sf-mapping-05 | SFC Header Mapping for Legacy SF - Challenges ]]
 +
 +[[ https://​wiki.opendaylight.org/​view/​Service_Function_Chaining:​Main#​The_SFC_Configuration_in_a_nutshell | SFC Configuration in a Nutshell ]]
  
 ===== Links to Videos / Presentations Specific to SFC ===== ===== Links to Videos / Presentations Specific to SFC =====
Line 27: Line 40:
 [[ https://​wiki.opendaylight.org/​view/​Group_Based_Policy_(GBP)/​Consumability/​Demo | Opendaylight Group Based Policy Demos ]] [[ https://​wiki.opendaylight.org/​view/​Group_Based_Policy_(GBP)/​Consumability/​Demo | Opendaylight Group Based Policy Demos ]]
  
 +[[ https://​meetings.webex.com/​collabs/​meetings/​playRecording?​recordID=16840181&​meetingInstanceID=I3IVC3XFH19P5XGGKDIN5LLG14-9VIB | Video Of SFC Demo ]]
 +
 +[[ https://​docs.google.com/​presentation/​d/​1VYaL2lDV4HGj0qIfUHWXbRDUbXx-0z0RYlKmQ6lpq3U/​edit?​usp=sharing | Opendaylight Service Function Chaining Demo Presentation ]]
  
  
Line 44: Line 60:
 [[ https://​wiki.opnfv.org/​requirements_projects/​openstack_based_vnf_forwarding_graph | Link to Openstack VNF Forwarding Graph Requirement Project Page ]] [[ https://​wiki.opnfv.org/​requirements_projects/​openstack_based_vnf_forwarding_graph | Link to Openstack VNF Forwarding Graph Requirement Project Page ]]
  
 +
 +==== Using GIT in the SFC project ====
 +
 +More info available here:
 +
 +  * https://​wiki.opnfv.org/​developer
 +  * https://​wiki.opnfv.org/​developer/​getting_started
 +  * https://​wiki.opnfv.org/​git
 +
 +
 +  # Getting started
 +  sudo apt-get install git-review
 +  # More git review details: https://​www.mediawiki.org/​wiki/​Gerrit/​git-review
 +  ​
 +  # Sign the OPNFV Gerrit Agreement
 +  https://​gerrit.opnfv.org/​gerrit/#/​settings/​agreements
 +  ​
 +  git clone ssh://<​username>​@gerrit.opnfv.org:​29418/​sfc
 +  git remote add gerrit ssh://<​username>​@gerrit.opnfv.org:​29418/​sfc.git
 +  scp -p -P 29418 <​username>​@git.opendaylight.org:​hooks/​commit-msg .git/​hooks/;​chmod 755 .git/​hooks/​commit-msg;​
 +
 +  # Normal steps to create and commit changes from a topic branch
 +  git checkout -b topic/​your_topic_branch
 +  <... Modify the code ...>
 +  git add <the modified files>
 +  git commit --signoff
 +  git review # This will provide the Gerrit link
 +
 +  # Rebasing a topic branch with master
 +  git checkout master
 +  git pull --rebase
 +  git checkout topic/​your_topic_branch
 +  git rebase origin/​master
 +
 +  # Add a patch-set to an existing commit
 +  git checkout topic/​your_topic_branch
 +  <... Modify the code ..>
 +  git add <the modified files>
 +  git commit --amend
 +  git review # This will provide the Gerrit link
sfc_reference_materials.1436997328.txt.gz ยท Last modified: 2015/07/15 21:55 by Reinaldo Penno