*** bobh has joined #openstack-mistral | 00:30 | |
*** bobh has quit IRC | 00:55 | |
*** bobh has joined #openstack-mistral | 00:58 | |
*** bobh has quit IRC | 01:20 | |
*** tung_doan has joined #openstack-mistral | 02:00 | |
*** tung_doan has quit IRC | 02:04 | |
*** tung_doan has joined #openstack-mistral | 03:03 | |
*** gkadam has joined #openstack-mistral | 03:44 | |
*** gkadam has quit IRC | 03:48 | |
*** Dinesh_Bhor has joined #openstack-mistral | 04:02 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/mistral master: Updated from global requirements https://review.openstack.org/477739 | 04:22 |
---|---|---|
*** FL1SK has quit IRC | 04:24 | |
*** gkadam has joined #openstack-mistral | 04:27 | |
*** livelace has joined #openstack-mistral | 05:04 | |
rakhmerov | fultonj, d0ugal: "target" is a task attribute to specify which executor should run its actions | 05:05 |
rakhmerov | "target: my_executor1" means that actions of this task will always go to the executor whose "host" property is "my_executor1" | 05:06 |
rakhmerov | although "host" is not the best choice we made, I have to admit.. Because it can be confused with a regular host name or IP | 05:07 |
rakhmerov | but the thing is that someone told me not long ago that this functionality is now broken | 05:07 |
rakhmerov | meaning that actions are processed by random executors regardless of this "target" and "host" properties | 05:08 |
*** breton has quit IRC | 05:13 | |
*** EmilienM has quit IRC | 05:13 | |
*** thrash|bbl has quit IRC | 05:14 | |
*** thrash has joined #openstack-mistral | 05:16 | |
*** thrash has quit IRC | 05:16 | |
*** thrash has joined #openstack-mistral | 05:16 | |
*** breton has joined #openstack-mistral | 05:19 | |
*** EmilienM has joined #openstack-mistral | 05:23 | |
*** joanna has quit IRC | 05:39 | |
*** mattybrennan has quit IRC | 05:39 | |
*** mattybrennan has joined #openstack-mistral | 05:39 | |
*** joanna has joined #openstack-mistral | 05:41 | |
*** FL1SK has joined #openstack-mistral | 06:34 | |
*** gkadam has left #openstack-mistral | 06:55 | |
*** amoralej|off is now known as amoralej | 07:08 | |
d0ugal | rakhmerov: ouch, we should try and test that. | 07:10 |
d0ugal | thanks | 07:10 |
*** jpich has joined #openstack-mistral | 07:17 | |
*** sharatss has joined #openstack-mistral | 07:20 | |
*** FL1SK has quit IRC | 07:27 | |
openstackgerrit | Sharat Sharma proposed openstack/python-mistralclient master: Add pagination options for workflows and actions https://review.openstack.org/458515 | 07:28 |
*** sharatss has quit IRC | 07:58 | |
*** sharatss has joined #openstack-mistral | 07:58 | |
openstackgerrit | Sharat Sharma proposed openstack/python-mistralclient master: Use keystoneauth plugins and session instead of keystoneclient https://review.openstack.org/455174 | 08:14 |
openstackgerrit | Sharat Sharma proposed openstack/python-mistralclient master: Use keystoneauth plugins and session instead of keystoneclient https://review.openstack.org/455174 | 08:17 |
openstackgerrit | Xavier Hardy proposed openstack/mistral master: Add YAQL engine options https://review.openstack.org/477816 | 08:25 |
*** brunograz has quit IRC | 08:53 | |
openstackgerrit | wangzhenyu proposed openstack/python-mistralclient master: Enable some off-by-default checks https://review.openstack.org/477837 | 08:55 |
*** d0ugal has quit IRC | 08:58 | |
*** d0ugal_ has joined #openstack-mistral | 08:59 | |
*** d0ugal_ has quit IRC | 08:59 | |
*** d0ugal has joined #openstack-mistral | 08:59 | |
openstackgerrit | Merged openstack/mistral master: Updated from global requirements https://review.openstack.org/477739 | 09:10 |
*** FL1SK has joined #openstack-mistral | 09:26 | |
*** d0ugal has quit IRC | 09:34 | |
*** apetrich has quit IRC | 09:34 | |
*** dtantsur|afk is now known as dtantsur | 09:35 | |
*** nd has joined #openstack-mistral | 09:35 | |
nd | Hi | 09:35 |
*** warface has joined #openstack-mistral | 09:36 | |
nd | I am facing some issues whiule deploying mistral on kubernetes | 09:36 |
rakhmerov | nd: hi, what issues? | 09:40 |
rakhmerov | stacktrace, logs? | 09:40 |
nd | wait | 09:40 |
nd | - I have careted a docker image of mistral and I am deplying the same on kubernetes. - For this I have careted a serive & replica-controller for mistral-service. This replica-controller have two pods one for mistral and other one for rabbitmq (so that mistral can coumnicate with rabbirmq locally). but mistral is not able to connect to Rabbitmq, error it is throeing is `AMQP server on rabbitmq:5672 is unreachable: [Errno -5] | 09:40 |
nd | Trying again in 16 seconds. Client port: None | 09:40 |
*** d0ugal has joined #openstack-mistral | 09:41 | |
*** apetrich has joined #openstack-mistral | 09:41 | |
openstackgerrit | Sharat Sharma proposed openstack/python-mistralclient master: Set the default value of --limit parameter https://review.openstack.org/476110 | 09:42 |
nd | I guess there are two ways mistral can couminate with Rabbitmq. | 09:44 |
nd | 1 ) host rabbitmq in same repica-controller (which I have already did, but its not working) | 09:44 |
nd | 2 )create a new service for Rabbitmq and somehow tell mistral to connect to that service (I ahve no idea how to do thisd) | 09:44 |
*** chlong has joined #openstack-mistral | 09:46 | |
*** shardy has joined #openstack-mistral | 10:09 | |
rakhmerov | nd: on the Mistral side you only need to take care of the "transport_url" property. It should be something like "rabbit://guest:guest@localhost:5672/" (the form of it) | 10:21 |
rakhmerov | the rest is up to your infrastructure, you need to make sure there's a network connectivity between Mistral and Rabbit | 10:22 |
nd | so if I'll change traspoprt url to something else where rabbitmq is accessible then mistral will conedted to taht right ? | 10:24 |
rakhmerov | yes | 10:32 |
nd | cool | 10:39 |
nd | thx | 10:39 |
*** jkilpatr has joined #openstack-mistral | 10:57 | |
*** chlong_ has joined #openstack-mistral | 11:04 | |
*** chlong has quit IRC | 11:04 | |
openstackgerrit | Andras Kovi proposed openstack/mistral master: Centralize session creation and authorization from OS clients https://review.openstack.org/447399 | 11:20 |
*** nd has quit IRC | 11:29 | |
*** shardy is now known as shardy_lunch | 11:55 | |
*** amoralej is now known as amoralej|lunch | 12:11 | |
openstackgerrit | Merged openstack/mistral-lib master: Updated from global requirements https://review.openstack.org/477957 | 12:34 |
*** hrybacki|trainin is now known as hrybacki | 12:38 | |
*** shardy_lunch is now known as shardy | 12:51 | |
*** sharatss has quit IRC | 13:03 | |
warface | hey guys, any idea why the mistral docker image uses ubuntu base image instead of debian ? thanks :) | 13:08 |
*** amoralej|lunch is now known as amoralej | 13:16 | |
*** bobh has joined #openstack-mistral | 13:21 | |
*** dtantsur is now known as dtantsur|brb | 13:41 | |
*** d0ugal has quit IRC | 14:32 | |
*** d0ugal has joined #openstack-mistral | 14:32 | |
*** d0ugal has quit IRC | 14:32 | |
*** d0ugal has joined #openstack-mistral | 14:32 | |
*** dtantsur|brb is now known as dtantsur | 15:05 | |
*** amoralej is now known as amoralej|brb | 15:05 | |
openstackgerrit | Merged openstack/mistral master: Updated from global requirements https://review.openstack.org/477956 | 15:09 |
*** amoralej|brb is now known as amoralej | 15:15 | |
*** wf has joined #openstack-mistral | 15:53 | |
*** wf is now known as Guest98952 | 15:54 | |
*** thrash is now known as thrash|biab | 16:04 | |
*** chlong has joined #openstack-mistral | 16:05 | |
*** chlong has quit IRC | 16:05 | |
*** jpich has quit IRC | 16:05 | |
*** warface has quit IRC | 16:07 | |
*** toure is now known as toure|food | 16:07 | |
*** Guest98952 has quit IRC | 16:23 | |
*** warface has joined #openstack-mistral | 16:37 | |
*** warface is now known as msgidentify26548 | 16:37 | |
*** msgidentify26548 is now known as warface | 16:38 | |
*** amoralej is now known as amoralej|off | 16:59 | |
*** toure|food is now known as toure | 17:15 | |
*** dtantsur is now known as dtantsur|afk | 17:47 | |
*** thrash|biab is now known as thrash | 17:50 | |
*** shardy has quit IRC | 18:14 | |
*** warface has quit IRC | 18:19 | |
openstackgerrit | Toure Dunnon proposed openstack/mistral master: Workflow Error Analysis https://review.openstack.org/455447 | 18:19 |
openstackgerrit | Toure Dunnon proposed openstack/mistral master: Workflow Error Analysis https://review.openstack.org/455447 | 18:20 |
openstackgerrit | Mike Fedosin proposed openstack/mistral master: Use recommended function to setup auth middleware in devstack https://review.openstack.org/473796 | 18:29 |
*** warface has joined #openstack-mistral | 18:32 | |
openstackgerrit | Toure Dunnon proposed openstack/mistral master: Workflow Error Analysis https://review.openstack.org/455447 | 18:36 |
*** warface has quit IRC | 19:10 | |
*** livelace has quit IRC | 19:22 | |
openstackgerrit | Mike Fedosin proposed openstack/mistral master: Use recommended function to setup auth middleware in devstack https://review.openstack.org/473796 | 19:27 |
*** rbrady has quit IRC | 19:43 | |
*** rbrady has joined #openstack-mistral | 19:43 | |
*** warface has joined #openstack-mistral | 20:06 | |
*** jkilpatr has quit IRC | 20:12 | |
*** jkilpatr has joined #openstack-mistral | 20:31 | |
openstackgerrit | Mike Fedosin proposed openstack/mistral master: Use recommended function to setup auth middleware in devstack https://review.openstack.org/473796 | 20:35 |
*** jkilpatr has quit IRC | 21:18 | |
*** thrash is now known as thrash|g0ne | 21:29 | |
*** jkilpatr has joined #openstack-mistral | 21:32 | |
openstackgerrit | Mike Fedosin proposed openstack/mistral master: Use recommended function to setup auth middleware in devstack https://review.openstack.org/473796 | 21:45 |
*** jkilpatr has quit IRC | 21:53 | |
*** jkilpatr has joined #openstack-mistral | 21:53 | |
*** bobh has quit IRC | 22:11 | |
openstackgerrit | Mike Fedosin proposed openstack/mistral master: Use recommended function to setup auth middleware in devstack https://review.openstack.org/473796 | 23:28 |
openstackgerrit | Mike Fedosin proposed openstack/mistral master: Use recommended function to setup auth middleware in devstack https://review.openstack.org/473796 | 23:33 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!