Hi Michael,

Thank you, I create with `services` because when I am trying to list the project, its give me `services`

[root@zu-controller0 ~(keystone_admin)]# openstack project list
| 27439cc0ba52421cad2426c980a0d0fa | admin    |
| 4020d4a5e7ad4d279fc3d1916d18ced1 | services |

Best Regards,
Zufar Dhiyaulhaq


On Wed, Dec 5, 2018 at 5:12 AM Michael Johnson <johnsomor@gmail.com> wrote:
Zufar,

Hi. Before I start with your questions I want to let you know that the
Octavia team will see your message sooner if you add the [octavia]
prefix to your e-mail subject line.

As for the questions:
1. Yes, that should work, but the services project is usually named
"service". It gives the Octavia service more permissions that it
really needs, but will work as a starting point.
2. This can be accomplished in many ways. The traffic on the
"lb-mgmt-net" is IP based, so can be routed if you need in your
deployment. Others will use a provider network. Devstack pops a port
off the neutron OVS.

It might be helpful for you to look at our devstack setup script:
https://github.com/openstack/octavia/blob/master/devstack/plugin.sh
and/or
the OpenStack Ansible role for Octavia:
https://github.com/openstack/openstack-ansible-os_octavia for
examples.

As always, we hang out in the #openstack-lbaas IRC channel if you
would like to chat about your deployment.

Michael

On Tue, Dec 4, 2018 at 8:21 AM Zufar Dhiyaulhaq
<zufardhiyaulhaq@gmail.com> wrote:
>
> Hi, I want to implement Octavia service in OpenStack Queens.
>
> I am stuck on two-step :
> 1. Create Octavia User
>
> I am trying to create Octavia user with this command, is this the right way?
>
> openstack user create octavia --domain default --password octavia
> openstack role add --user octavia --project services admin
>
> openstack service create --name octavia --description "OpenStack Octavia" load-balancer
> openstack endpoint create --region RegionOne octavia public http://10.60.60.10:9876
> openstack endpoint create --region RegionOne octavia internal http://10.60.60.10:9876
> openstack endpoint create --region RegionOne octavia admin http://10.60.60.10:9876
>
> 2. Load Balancer Network Configuration
> "Add appropriate routing to/from the ‘lb-mgmt-net’ such that egress is allowed, and the controller (to be created later) can talk to hosts on this network."
>
> I don't know how to route from controller host into a private network, is any specific command for doing that?
>
> following tutorial from https://docs.openstack.org/octavia/latest/contributor/guides/dev-quick-start.html#running-octavia-in-production.
>
> Thank You
> Best Regards,
> Zufar Dhiyaulhaq