*** gouthamr has joined #openstack-sdks | 00:12 | |
*** markvoelker has quit IRC | 00:30 | |
*** dave-mccowan has quit IRC | 00:38 | |
*** rajathagasthya has quit IRC | 00:41 | |
*** gouthamr has quit IRC | 01:13 | |
*** dave-mccowan has joined #openstack-sdks | 01:28 | |
*** gouthamr has joined #openstack-sdks | 01:30 | |
*** dave-mcc_ has joined #openstack-sdks | 01:37 | |
*** dave-mccowan has quit IRC | 01:39 | |
*** lbragstad has quit IRC | 01:44 | |
*** markvoelker has joined #openstack-sdks | 02:31 | |
*** gouthamr has quit IRC | 02:34 | |
*** annp has joined #openstack-sdks | 02:36 | |
openstackgerrit | liyi proposed openstack/python-openstacksdk master: Fix stack_file function return body https://review.openstack.org/493786 | 02:40 |
---|---|---|
*** markvoelker has quit IRC | 03:04 | |
*** dave-mcc_ has quit IRC | 03:21 | |
*** rajathagasthya has joined #openstack-sdks | 03:46 | |
*** markvoelker has joined #openstack-sdks | 04:01 | |
*** ldl has joined #openstack-sdks | 04:04 | |
ldl | hi every friends | 04:04 |
*** rajathagasthya has quit IRC | 04:06 | |
*** markvoelker has quit IRC | 04:34 | |
*** _heena_py__ has quit IRC | 05:11 | |
*** knikolla has quit IRC | 05:22 | |
*** reedip has quit IRC | 05:23 | |
*** markvoelker has joined #openstack-sdks | 05:32 | |
*** reedip has joined #openstack-sdks | 05:37 | |
*** markvoelker has quit IRC | 06:05 | |
openstackgerrit | liyi proposed openstack/python-openstacksdk master: Add profile type ops cli https://review.openstack.org/492048 | 06:09 |
*** markvoelker has joined #openstack-sdks | 07:02 | |
*** jpich has joined #openstack-sdks | 07:28 | |
*** markvoelker has quit IRC | 07:36 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/python-openstackclient master: Imported Translations from Zanata https://review.openstack.org/494105 | 07:50 |
*** e0ne has joined #openstack-sdks | 08:01 | |
*** ralonsoh has joined #openstack-sdks | 08:04 | |
*** ralonsoh has quit IRC | 08:12 | |
*** ralonsoh has joined #openstack-sdks | 08:12 | |
*** markvoelker has joined #openstack-sdks | 08:33 | |
ldl | Hi, every friend here, how can I develop a new dashboard for our company? | 08:34 |
ldl | where to invoke the api? | 08:34 |
seanhandley | ldl: What programming language are you most comfortable with? | 08:35 |
ldl | pyhton | 08:35 |
ldl | python djangp | 08:35 |
ldl | django | 08:36 |
seanhandley | Ok, cool. You'll want to pick up one of the OpenStack SDKs | 08:36 |
seanhandley | I recommend you start with Shade https://pypi.python.org/pypi/shade/ | 08:36 |
seanhandley | if you need anything more advanced, check out https://pypi.python.org/pypi/python-openstackclient | 08:37 |
seanhandley | and then if you want to get even more advanced, each OpenStack project has its own python library i.e. Nova, the compute project, has a client here: https://pypi.python.org/pypi/python-novaclient | 08:38 |
ldl | if use the shade, it can satisfy all of the official dashboard's functions ? | 08:38 |
seanhandley | So you want to build your own version of Horizon? | 08:38 |
ldl | yes | 08:38 |
ldl | p | 08:38 |
seanhandley | probably skip shade then, and go straight to https://pypi.python.org/pypi/python-openstackclient | 08:38 |
ldl | Can I develop my website on my mac? | 08:39 |
seanhandley | ldl: Yeah, of course | 08:39 |
seanhandley | OSX is a Unix variant | 08:39 |
ldl | I have installed the HA openstack on my Windows Server2008' 3 VMs. | 08:40 |
seanhandley | Sorry, the link I gave you is for the command line client | 08:42 |
seanhandley | I believe the library you actually want is https://pypi.python.org/pypi/openstacksdk | 08:42 |
ldl | do you mean I only should install the shade (or python-openstackclient) on my Mac, then I can develop it | 08:42 |
seanhandley | (which the command line client uses itself) | 08:42 |
seanhandley | Well, the OpenStack SDK does the hard work for you regarding talking to the OpenStack APIs | 08:42 |
seanhandley | You can write your own code to talk HTTP directly etc | 08:43 |
seanhandley | but that's a big job | 08:43 |
seanhandley | and the SDK turns those request/response commands into Python methods | 08:43 |
seanhandley | so you can call a method and it'll return a list of instances, for example | 08:43 |
ldl | greate | 08:43 |
seanhandley | and then you can iterate over that and display it within your Django templates | 08:43 |
seanhandley | I'd start here ldl: https://developer.openstack.org/sdks/python/openstacksdk/users/index.html | 08:44 |
ldl | I have a question | 08:44 |
ldl | I installed the HA openstack on a remote windows server's 3 MVs( created by VMware workstation ) | 08:45 |
seanhandley | ok | 08:45 |
ldl | so If I develop my new dashboard , if should connect something to the 3VMs? | 08:45 |
seanhandley | Ok | 08:46 |
seanhandley | You should be able to connect to the existing Horizon dashboard on your HA openstack install | 08:46 |
ldl | 3VM as controllers, and computes nodes | 08:46 |
seanhandley | and hopefully you have credentials to log in as an admin user | 08:46 |
seanhandley | OpenStack's identity service (Keystone) has a service catalog that explains to a client where it should connect for various services. So all you need to do is find out where Keystone is running, authenticate with it, and then the SDK will know the correct endpoints to send different commands to | 08:47 |
seanhandley | can you log into Horizon? | 08:47 |
ldl | do you mean such as the keystone api ? in the config file? | 08:48 |
ldl | I can log into the dashboard in the `192.168.8.168/dashboard/` | 08:49 |
ldl | do you mean this> | 08:49 |
seanhandley | Yeah, that'll be it | 08:50 |
seanhandley | once you're logged in, there's an item in the menu on the left called "API Access" | 08:51 |
seanhandley | though it might appear in different places depending on the version of Horizon | 08:51 |
ldl | wow | 08:51 |
ldl | thank you very much, my friend | 08:52 |
seanhandley | No worries - good luck with your work and do please ask in here if you need anything | 08:54 |
*** markvoelker has quit IRC | 09:06 | |
*** markvoelker has joined #openstack-sdks | 10:03 | |
*** dtantsur|afk is now known as dtantsur | 10:06 | |
*** annp has quit IRC | 10:09 | |
*** markvoelker has quit IRC | 10:38 | |
*** ralonsoh has quit IRC | 10:44 | |
*** ralonsoh_ has joined #openstack-sdks | 10:44 | |
*** jkilpatr has quit IRC | 10:54 | |
*** cdent has joined #openstack-sdks | 11:19 | |
*** jkilpatr has joined #openstack-sdks | 11:29 | |
*** markvoelker has joined #openstack-sdks | 11:35 | |
ldl | :seanhandley Hi, friend, how can I test the openstack api in postman? | 11:48 |
ldl | https://ask.openstack.org/en/question/109668/how-to-use-the-postman-invoke-the-openstack-api/ | 11:48 |
*** markvoelker has quit IRC | 12:08 | |
openstackgerrit | Akihiro Motoki proposed openstack/python-openstackclient feature/osc4: Use cliff formattable columns in network commands https://review.openstack.org/494181 | 12:24 |
openstackgerrit | Akihiro Motoki proposed openstack/python-openstackclient feature/osc4: Use cliff formattable columns in image commands https://review.openstack.org/494182 | 12:24 |
openstackgerrit | Akihiro Motoki proposed openstack/python-openstackclient feature/osc4: Use cliff formattable columns in volume v1 commands https://review.openstack.org/494183 | 12:24 |
openstackgerrit | Akihiro Motoki proposed openstack/python-openstackclient feature/osc4: Use cliff formattable columns in volume v2 commands https://review.openstack.org/494184 | 12:24 |
openstackgerrit | Akihiro Motoki proposed openstack/python-openstackclient feature/osc4: Use cliff formattable columns in object storage commands https://review.openstack.org/494185 | 12:24 |
openstackgerrit | Akihiro Motoki proposed openstack/python-openstackclient feature/osc4: Use cliff formattable columns in identity commands https://review.openstack.org/494186 | 12:24 |
*** chenyb4_ has joined #openstack-sdks | 12:36 | |
*** ldl has quit IRC | 12:42 | |
openstackgerrit | Akihiro Motoki proposed openstack/python-openstackclient master: Replace six.iteritems() with .items() https://review.openstack.org/481407 | 12:43 |
*** chenyb4_ has quit IRC | 12:56 | |
*** chenyb4_ has joined #openstack-sdks | 12:56 | |
*** markvoelker has joined #openstack-sdks | 12:59 | |
*** chenyb4_ has quit IRC | 13:00 | |
openstackgerrit | Monty Taylor proposed openstack/keystoneauth master: Add method to get the api version https://review.openstack.org/494193 | 13:01 |
openstackgerrit | Monty Taylor proposed openstack/keystoneauth master: Update discovery url normalization with catalog info https://review.openstack.org/494194 | 13:01 |
openstackgerrit | Monty Taylor proposed openstack/keystoneauth master: Allow kwargs to be passed to adapter.get_endpoint_data https://review.openstack.org/494195 | 13:01 |
*** gouthamr has joined #openstack-sdks | 13:15 | |
*** dave-mccowan has joined #openstack-sdks | 13:30 | |
*** chlong_ has joined #openstack-sdks | 13:31 | |
*** cleong has joined #openstack-sdks | 13:41 | |
openstackgerrit | Merged openstack/service-types-authority master: Add placement service https://review.openstack.org/462140 | 13:42 |
openstackgerrit | Merged openstack/service-types-authority master: Only run json.dump once https://review.openstack.org/493363 | 13:42 |
openstackgerrit | Merged openstack/service-types-authority master: Add three more transformations https://review.openstack.org/493364 | 13:43 |
*** chlong_ has quit IRC | 13:59 | |
*** dtantsur is now known as dtantsur|bbl | 14:10 | |
*** lbragstad has joined #openstack-sdks | 14:13 | |
*** ralonsoh_ has quit IRC | 14:16 | |
*** dtantsur|bbl is now known as dtantsur | 14:58 | |
*** marst has joined #openstack-sdks | 15:19 | |
openstackgerrit | Merged openstack/python-openstackclient master: Imported Translations from Zanata https://review.openstack.org/494105 | 15:21 |
*** reedip_ has joined #openstack-sdks | 15:21 | |
openstackgerrit | Eric Fried proposed openstack/service-types-authority master: Historical services can violate naming rules https://review.openstack.org/494241 | 15:23 |
openstackgerrit | Eric Fried proposed openstack/service-types-authority master: Use 'clustering' as senlin's official service_type https://review.openstack.org/484011 | 15:27 |
openstackgerrit | Eric Fried proposed openstack/service-types-authority master: Historical services can violate naming rules https://review.openstack.org/494241 | 15:29 |
openstackgerrit | Eric Fried proposed openstack/service-types-authority master: Historical services can violate naming rules https://review.openstack.org/494241 | 15:38 |
*** reedip_ has quit IRC | 15:42 | |
*** dave-mcc_ has joined #openstack-sdks | 15:45 | |
*** dave-mccowan has quit IRC | 15:47 | |
openstackgerrit | Akihiro Motoki proposed openstack/python-openstackclient feature/osc4: Use cliff formattable columns in object storage commands https://review.openstack.org/494185 | 15:48 |
openstackgerrit | Akihiro Motoki proposed openstack/python-openstackclient feature/osc4: Use cliff formattable columns in volume v2 commands https://review.openstack.org/494184 | 15:48 |
openstackgerrit | Akihiro Motoki proposed openstack/python-openstackclient feature/osc4: Use cliff formattable columns in identity commands https://review.openstack.org/494186 | 15:48 |
openstackgerrit | Akihiro Motoki proposed openstack/python-openstackclient feature/osc4: Use cliff formattable columns in network commands https://review.openstack.org/494181 | 15:48 |
openstackgerrit | Akihiro Motoki proposed openstack/python-openstackclient feature/osc4: Use cliff formattable columns in volume v1 commands https://review.openstack.org/494183 | 15:48 |
openstackgerrit | Akihiro Motoki proposed openstack/python-openstackclient feature/osc4: Use cliff formattable columns in image commands https://review.openstack.org/494182 | 15:48 |
*** dave-mccowan has joined #openstack-sdks | 15:50 | |
*** dave-mcc_ has quit IRC | 15:52 | |
*** e0ne has quit IRC | 16:33 | |
*** jpich has quit IRC | 16:51 | |
openstackgerrit | Monty Taylor proposed openstack/keystoneauth master: Add method to get the api major version https://review.openstack.org/494193 | 17:16 |
openstackgerrit | Monty Taylor proposed openstack/keystoneauth master: Update discovery url normalization with catalog info https://review.openstack.org/494194 | 17:16 |
*** dtantsur is now known as dtantsur|afk | 17:19 | |
*** e0ne has joined #openstack-sdks | 17:21 | |
openstackgerrit | Merged openstack/service-types-authority master: Historical services can violate naming rules https://review.openstack.org/494241 | 17:33 |
*** e0ne has quit IRC | 17:34 | |
*** e0ne has joined #openstack-sdks | 17:57 | |
*** dave-mccowan has quit IRC | 18:05 | |
*** e0ne has quit IRC | 18:07 | |
*** e0ne has joined #openstack-sdks | 18:08 | |
*** e0ne has quit IRC | 18:08 | |
*** dave-mcc_ has joined #openstack-sdks | 18:09 | |
*** rajathagasthya has joined #openstack-sdks | 18:33 | |
*** marst_ has joined #openstack-sdks | 18:34 | |
*** marst has quit IRC | 18:37 | |
*** e0ne has joined #openstack-sdks | 18:54 | |
openstackgerrit | Morgan Fainberg proposed openstack/keystoneauth master: Add method to get the api major version https://review.openstack.org/494193 | 18:57 |
openstackgerrit | Morgan Fainberg proposed openstack/keystoneauth master: Add method to get the api major version https://review.openstack.org/494193 | 18:58 |
openstackgerrit | Merged openstack/keystoneauth master: Remove use of positional decorator https://review.openstack.org/491632 | 18:59 |
*** rajathagasthya has quit IRC | 19:02 | |
openstackgerrit | Morgan Fainberg proposed openstack/keystoneauth master: Add method to get the api major version https://review.openstack.org/494193 | 19:35 |
*** cdent has quit IRC | 20:03 | |
*** rajathagasthya has joined #openstack-sdks | 20:34 | |
*** e0ne has quit IRC | 20:36 | |
openstackgerrit | Monty Taylor proposed openstack/keystoneauth master: Update discovery url normalization with catalog info https://review.openstack.org/494194 | 20:38 |
openstackgerrit | Monty Taylor proposed openstack/keystoneauth master: Don't use mutable defaults in allow arguments https://review.openstack.org/494320 | 20:38 |
*** gouthamr has quit IRC | 20:46 | |
*** cleong has quit IRC | 20:51 | |
openstackgerrit | Merged openstack/python-openstackclient feature/osc4: Use cliff formattable columns in network commands https://review.openstack.org/494181 | 21:11 |
openstackgerrit | Merged openstack/python-openstackclient feature/osc4: Use cliff formattable columns in image commands https://review.openstack.org/494182 | 21:16 |
openstackgerrit | Dean Troyer proposed openstack/python-openstackclient feature/osc4: Use cliff formattable columns in object storage commands https://review.openstack.org/494185 | 21:26 |
openstackgerrit | Dean Troyer proposed openstack/python-openstackclient feature/osc4: Use cliff formattable columns in identity commands https://review.openstack.org/494186 | 21:28 |
*** bobh has joined #openstack-sdks | 21:40 | |
*** jkilpatr has quit IRC | 22:09 | |
*** bobh has quit IRC | 22:43 | |
*** bobh has joined #openstack-sdks | 22:43 | |
*** bobh has quit IRC | 22:48 | |
*** jkilpatr has joined #openstack-sdks | 22:48 | |
openstackgerrit | Merged openstack/python-openstackclient feature/osc4: Use cliff formattable columns in volume v1 commands https://review.openstack.org/494183 | 22:48 |
*** marst_ has quit IRC | 23:06 | |
*** gouthamr has joined #openstack-sdks | 23:27 | |
openstackgerrit | Merged openstack/service-types-authority master: Use 'clustering' as senlin's official service_type https://review.openstack.org/484011 | 23:49 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!