~bbaqar/charms/trusty/plumgrid-edge/charmstore-sync

« back to all changes in this revision

Viewing changes to README.ex

  • Committer: bbaqar at plumgrid
  • Date: 2015-07-02 09:20:34 UTC
  • Revision ID: bbaqar@plumgrid.com-20150702092034-u4z0dnhpo3p1v50q
Changing Description and README

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Overview
 
2
 
 
3
This charm is responsible for configuring a Compute node as a PLUMgrid Edge.
 
4
 
 
5
Once deployed, the charm configures the IO Visor kernel module as a PLUMgrid Edge. The charm also triggers the services essential for a PLUMgrid Edge.
 
6
 
 
7
# Usage
 
8
 
 
9
Step by step instructions on using the charm:
 
10
 
 
11
    juju deploy neutron-api
 
12
    juju deploy neutron-plumgrid-plugin neutron-api
 
13
    juju deploy neutron-iovisor
 
14
    juju deploy plumgrid-director --to <Machince No of neutron-iovisor>
 
15
    juju add-unit neutron-iovisor
 
16
    juju deploy plumgrid-edge --to <Machice No of 2nd unit of neutron-iovisor>
 
17
 
 
18
    juju add-relation neutron-api neutron-plumgrid-plugin
 
19
    juju add-relation neutron-plumgrid-plugin neutron-iovisor
 
20
    juju add-relation neutron-iovisor plumgrid-director
 
21
    juju add-relation neutron-iovisor plumgrid-edge
 
22
    juju add-relation plumgrid-director plumgrid-edge
 
23
 
 
24
For plumgrid-edge to work make the configuration in the neutron-api, neutron-plumgrid-plugin, neutron-iovisor and plumgrid-director charms as specified in the configuration section below.
 
25
 
 
26
# Known Limitations and Issues
 
27
 
 
28
This is an early access version of the PLUMgrid Edge charm and it is not meant for production deployments. The charm currently only supports JUNO. This charm needs to be deployed on a node where a unit of neutron-iovisor charm exists. Also plumgrid-director and plumgrid-gateway charms should not be deployed on the same node.
 
29
 
 
30
# Configuration
 
31
 
 
32
plumgrid-edge charm does not require any configuration itself but the following config is required in the other charms.
 
33
 
 
34
Example Config
 
35
 
 
36
    plumgrid-director:
 
37
        plumgrid-virtual-ip: "192.168.100.250"
 
38
    neutron-iovisor:
 
39
        install_sources: 'ppa:plumgrid-team/stable'
 
40
        install_keys: 'null'
 
41
    neutron-plumgrid-plugin:
 
42
        install_sources: 'ppa:plumgrid-team/stable'
 
43
        install_keys: 'null'
 
44
        enable-metadata: False
 
45
    neutron-api:
 
46
        neutron-plugin: "plumgrid"
 
47
        plumgrid-virtual-ip: "192.168.100.250"
 
48
 
 
49
The virtual IP passed on in the neutron-api charm has to be same as the one passed in the plumgrid-director charm.
 
50
 
 
51
# Contact Information
 
52
 
 
53
Bilal Baqar <bbaqar@plumgrid.com>
 
54
Bilal Ahmad <bilal@plumgrid.com>