Skip to content

Commit

Permalink
GitBook: [#119] Document how to add stitchable VLANs
Browse files Browse the repository at this point in the history
  • Loading branch information
msherman64 authored and gitbook-bot committed Sep 28, 2022
1 parent 1e8c9ae commit c8c601c
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions docs/reference/resource-reservation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,17 @@ openstack reservation host create

### Devices

```
openstack reservation device create
```

### Networks

#### Create a Reservable Network

This creates an entry in Blazar, allowing a user to reserve a vlan on a physical network. When their lease starts, a neutron network will be created using that vlan and physnet.

Make sure that the segment ID + physnets you add here are **outside** the range of ad-hoc vlans defined for neutron (in your defaults.yml file). Otherwise, blazar's reservable vlans and neutron's ad-hoc ones may conflict.\
Make sure that the segment ID + physnets you add here are **outside** the range of ad-hoc vlans defined for neutron (in your `defaults.yml` file). Otherwise, Blazar's reservable vlans and neutron's ad-hoc ones may conflict.\


Usage:
Expand Down Expand Up @@ -64,12 +68,28 @@ openstack reservation network create \
--extra mykey=myvalue
```

#### Add a capability to a Reservable Network
#### Add or update capability to a Reservable Network

```shell-session
openstack reservation network set --extra key=value NETWORK_ID
```

Example, change the physical network:

```
openstack reservation network set --extra physical_network=physnet1
```

#### Convention for Stitch-able Networks

To indicate that a network can be connected to other sites at L2, we use the key `stitch_provider`

For example, if you have plumbed VLANs from your dataplane switch to a FABRIC facility port, indicate these with:

```
openstack reservation network set --extra stitch_provider=fabric
```

### Floating IPs

Create a new reservable floating IP
Expand Down

0 comments on commit c8c601c

Please sign in to comment.