*** diga has quit IRC | 00:23 | |
*** lulei has quit IRC | 00:35 | |
*** lulei has joined #tacker | 00:35 | |
*** gongysh has joined #tacker | 00:49 | |
gongysh | s3wong, hi | 00:50 |
---|---|---|
s3wong | gongysh: hello | 00:50 |
gongysh | I am trying networking-sfc, but I am unlucky | 00:50 |
*** gongysh_ has joined #tacker | 00:51 | |
s3wong | gongysh: what seems to be the problem? | 00:51 |
gongysh | s3wong, let me find the codes | 00:51 |
* gongysh is opening eclipse | 00:51 | |
gongysh_ | s3wong, https://github.com/openstack/networking-sfc/blob/master/networking_sfc/services/sfc/drivers/ovs/driver.py#L241 | 00:55 |
gongysh_ | s3wong, src_pd_filter = dict( | 00:55 |
gongysh_ | egress=fc['logical_source_port'], | 00:55 |
gongysh_ | tenant_id=tenant_id | 00:55 |
gongysh_ | ) | 00:55 |
gongysh_ | what is logical_source_port, my fc has no this kind of thing. | 00:56 |
gongysh_ | it is none. | 00:56 |
s3wong | gongysh: logical_source_port is the Neutron source port | 00:57 |
s3wong | gongysh: it is one of the arguments of python-client | 00:58 |
gongysh_ | s3wong, I created it as this: | 00:58 |
gongysh_ | neutron flow-classifier-create \ | 00:58 |
gongysh_ | --ethertype IPv4 \ | 00:58 |
gongysh_ | --source-ip-prefix 22.1.20.1/32 \ | 00:58 |
gongysh_ | --destination-ip-prefix 172.4.5.6/32 \ | 00:58 |
gongysh_ | --protocol tcp \ | 00:58 |
s3wong | gongysh: not sure about horizon | 00:58 |
gongysh_ | --source-port 23:23 \ | 00:58 |
gongysh_ | --destination-port 100:100 FC1 | 00:58 |
gongysh_ | so the fc has no logical_source_port at all. | 00:59 |
s3wong | gongysh: really? | 00:59 |
s3wong | gongysh: from the code (networking-sfc/networking-sfc/cli/flow_classifier.py), I see this: | 01:00 |
s3wong | class FlowClassifierCreate(extension.ClientExtensionCreate, | 01:00 |
s3wong | FlowClassifier): | 01:00 |
s3wong | """Create a Flow Classifier.""" | 01:00 |
s3wong | shell_command = 'flow-classifier-create' | 01:00 |
s3wong | def add_known_arguments(self, parser): | 01:00 |
s3wong | parser.add_argument( | 01:00 |
s3wong | '--logical-source-port', | 01:00 |
s3wong | help=_('ID or name of the neutron source port.')) | 01:00 |
s3wong | parser.add_argument( | 01:00 |
s3wong | '--logical-destination-port', | 01:00 |
s3wong | help=_('ID or name of the neutron destination port.')) | 01:00 |
s3wong | gongysh: seems to be part of the argument... was it not added? | 01:01 |
gongysh_ | but it is not mandantory. | 01:02 |
s3wong | gongysh_: oh well... | 01:02 |
s3wong | gongysh_: you can add it and try it out to see if that works :-) | 01:03 |
gongysh_ | s3wong, so what about the case: I need a flowclassifiler to say: a flow from outside my openstack to one of my VM in openstack will match? | 01:04 |
gongysh_ | s3wong, it has definitely no logical source port. | 01:04 |
s3wong | gongysh_: really? external network / provider router doesn't have a port to Neutron network? | 01:05 |
s3wong | gongysh_: we need logical_source_port to know where and which inport to set the OVS rules | 01:06 |
*** KanagarajM has joined #tacker | 01:07 | |
gongysh_ | s3wong, for a chain [{p1,p2},{p3,p4}], how can I create the flow classifier? | 01:10 |
gongysh_ | s3wong, the logic source port is 'p1'? | 01:10 |
s3wong | gongysh_: no, the logical source port is the source Neutron port where this flow classifier would match against | 01:11 |
gongysh_ | s3wong, p0 -> [{p1,p2},{p3,p4}] -> p5, p0 is the logical source port, p5 is the logic dest port? | 01:12 |
s3wong | gongysh_: yes | 01:12 |
gongysh_ | so the flow classifier is matching the outbound flow from p0 and direct it into [{p1,p2},{p3,p4}], and back to p5? | 01:14 |
s3wong | gongysh_: yes, unless any one of the network functions with {p1.p2} or {p3,p4} drop the packet | 01:15 |
gongysh_ | s3wong, make sense. | 01:15 |
s3wong | gongysh_: this is really a set of low level APIs, not something fancy like GBP :-) | 01:16 |
s3wong | gongysh_: but fits with Neutron level of abstraction :-) | 01:16 |
gongysh_ | s3wong, so what is confusing is: logic source and destination ports are not mandatory on cli and API side, but they are in logics. | 01:17 |
s3wong | gongysh_: time to file a bug :-) | 01:18 |
gongysh_ | s3wong, the doc is not clear about the logic source and dest ports too. | 01:18 |
s3wong | gongysh_: yes, I believe despite the initial effort, we are a bit weak there | 01:18 |
*** KanagarajM has quit IRC | 01:19 | |
gongysh_ | s3wong, yeah. Do you want me to do the bug report? | 01:19 |
s3wong | gongysh_: luckily, we have new requirement to strengthen our docs as a mandatory task for staying in Neutron stadium | 01:19 |
s3wong | gongysh_: certainly. Please go ahead | 01:19 |
gongysh_ | s3wong, what is the plan to do odl sfc driver? | 01:20 |
gongysh | s3wong, https://review.openstack.org/#/c/349335/ needs your nodding. | 01:24 |
s3wong | gongysh: OK. taking a look | 01:27 |
s3wong | gongysh: all SFC drivers are developed within the respective SDN solutions' repo | 01:27 |
s3wong | gongysh: so I have no idea what the progress is :-) the guy doing ODL SFC driver hasn't attended the weekly networking-sfc meeting for a while | 01:28 |
s3wong | gongysh: the OVN SFC driver is a bit more high profile so far | 01:28 |
openstackgerrit | Merged openstack/tacker: Remove proxy related db tables https://review.openstack.org/349335 | 01:33 |
*** manikanta_tadi has joined #tacker | 01:44 | |
*** bobh has joined #tacker | 01:44 | |
*** KanagarajM has joined #tacker | 02:00 | |
*** s3wong has quit IRC | 02:05 | |
*** bobh has quit IRC | 02:09 | |
*** KanagarajM has quit IRC | 02:12 | |
*** manikanta_tadi has quit IRC | 02:17 | |
openstackgerrit | KaiLi proposed openstack/tacker: Tosca tacker_defs.yaml flie updates https://review.openstack.org/349767 | 02:20 |
*** vishnoianil has quit IRC | 02:20 | |
*** kikas has joined #tacker | 03:08 | |
*** gongysh has quit IRC | 03:14 | |
*** vishnoianil has joined #tacker | 03:15 | |
*** KanagarajM has joined #tacker | 03:49 | |
*** diga has joined #tacker | 03:55 | |
*** diga has quit IRC | 04:03 | |
*** links has joined #tacker | 04:10 | |
*** _achatterjee_ has joined #tacker | 04:19 | |
*** amotoki has joined #tacker | 04:20 | |
*** achatterjee has quit IRC | 04:21 | |
*** _achatterjee_ has quit IRC | 04:24 | |
*** achatterjee has joined #tacker | 04:24 | |
openstackgerrit | vishwanath jayaraman proposed openstack/tacker: Adds audit support for VIM, VNFD and VNF https://review.openstack.org/325169 | 04:30 |
openstackgerrit | vishwanath jayaraman proposed openstack/tacker: Adds audit support for VIM, VNFD and VNF https://review.openstack.org/325169 | 04:34 |
openstackgerrit | Sripriya Seetharam proposed openstack/tacker-horizon: Add domain name field for VIM register https://review.openstack.org/349065 | 05:00 |
*** kikas1 has joined #tacker | 05:10 | |
*** kikas has quit IRC | 05:10 | |
openstackgerrit | vishwanath jayaraman proposed openstack/tacker: Adds audit support for VIM, VNFD and VNF https://review.openstack.org/325169 | 05:11 |
*** KanagarajM has quit IRC | 05:13 | |
*** mbound has joined #tacker | 05:16 | |
*** mbound has quit IRC | 05:21 | |
*** kikas1 has quit IRC | 05:22 | |
*** kikas has joined #tacker | 05:22 | |
*** kikas has quit IRC | 05:22 | |
*** diga has joined #tacker | 05:28 | |
*** lamt_ has quit IRC | 05:31 | |
diga | sridhar_ram: priya : Hi | 05:32 |
sridhar_ram | diga: pong | 05:44 |
sridhar_ram | diga: hi, what's up? | 05:44 |
diga | sridhar_ram: I am planning to start work on VNFM distributed architecture | 05:53 |
sridhar_ram | diga: sounds good... register a Tacker blueprint and start writing a spec in tacker-specs repo | 05:55 |
diga | sridhar_ram: sure | 05:56 |
diga | sridhar_ram: one more thing, who is working on VNF Forwarding Graph | 05:56 |
diga | because I am reviewing the code on that | 05:57 |
diga | sridhar_ram: I dont know the person's nick name on irc so that I can work with him | 05:57 |
sridhar_ram | trozet and s3wong have the main patchsets... | 05:57 |
diga | okay | 05:58 |
diga | will talk to them | 05:58 |
sridhar_ram | Others like xu-haiwei and janki are so helping out with client and other supplemental patchsets... a truly collaborative effort :) | 05:59 |
*** KanagarajM has joined #tacker | 06:00 | |
diga | yes :) | 06:01 |
sridhar_ram | diga: look for vnffg patchsets here https://review.openstack.org/#/q/topic:bp/tacker-vnffg | 06:01 |
sridhar_ram | KanagarajM: ping | 06:01 |
diga | sridhar_ram: okay | 06:02 |
diga | sridhar_ram: need +1 +2 on this patch - https://review.openstack.org/#/c/347582/ | 06:02 |
sridhar_ram | KanagarajM: can u resolve merge conflicts in ur scaling patchsets so that we can merge them. | 06:02 |
sridhar_ram | diga: will add it to my review queue | 06:03 |
sridhar_ram | diga: done | 06:06 |
veena_ | Hi, I have an issue using user_data in templates. if I send a script as user_data and keep the user_data_format as RAW, I don't see the script being run after the VM comes up. | 06:07 |
veena_ | there's no error also in any of the logs | 06:08 |
veena_ | did anybody face this issue? What am I missing? I think user_data_format should be RAW. | 06:10 |
*** janki has joined #tacker | 06:23 | |
diga | sridhar_ram: thank you | 06:26 |
priya | diga, hi | 06:33 |
openstackgerrit | Janki Chhatbar proposed openstack/python-tackerclient: VNFD legacy template deprecation warning https://review.openstack.org/334581 | 06:46 |
veena_ | Hi, could anybody please help me in specifying user_data in the template. My requirement is to execute a script after a VNF comes up | 07:06 |
*** dazuko has joined #tacker | 07:11 | |
*** links has quit IRC | 07:23 | |
*** dazuko has quit IRC | 07:24 | |
*** dazuko has joined #tacker | 07:24 | |
gongysh_ | sridhar_ram, hi | 07:24 |
sridhar_ram | gongysh_: hi | 07:29 |
gongysh_ | sridhar_ram, do u have time for this patch? https://review.openstack.org/#/c/342227/ | 07:30 |
gongysh_ | sridhar_ram, it is blocking installation on ubuntu 16 system. | 07:30 |
sridhar_ram | veena_: take a look at https://github.com/openstack/tacker/blob/master/samples/tosca-templates/vnfd/tosca_openwrt_userdata.yaml | 07:31 |
sridhar_ram | gongysh_: let me check.. | 07:31 |
gongysh_ | sridhar_ram, also, without this patch, the db model is changed. for example, some foreign key id can be nullable. | 07:32 |
veena_ | sridhar_ram, That example works fine, but if my script is big and if I want to send it as a file, then how do I do? | 07:32 |
sridhar_ram | gongysh_: we had bunch of uuid related changes recently, particularly for RHEL/CentOS mariadb version. Is this patchset undoing any of that change ? | 07:35 |
sridhar_ram | Also, what u mean by Ubuntu 16 system ? | 07:35 |
*** links has joined #tacker | 07:36 | |
gongysh_ | sridhar_ram, ubuntu 16.x version | 07:36 |
gongysh_ | sridhar_ram, it is not. it is patching old mistakes. | 07:36 |
gongysh_ | sridhar_ram, those patches were changing nullable properties of columns. | 07:37 |
sridhar_ram | gongysh_: okay, change looks reasonable... will do few quick check tomorrow morning and sign off. | 07:38 |
gongysh_ | sridhar_ram, and on ubuntu 16.x, the nullable cannot be changed at all. | 07:38 |
sridhar_ram | gongysh_: okay ... we need gate jobs for diff distros to catch this earlier | 07:40 |
gongysh_ | sridhar_ram, Do openstack ci provides ubuntu 16 distro, centos 7.x? | 07:41 |
sridhar_ram | veena_: no other choice, one slightly better variation is to echo the big script into a local file and run... something like https://github.com/openstack/tacker/blob/master/tacker/tests/etc/samples/sample-tosca-vnfd-http-monitor.yaml | 07:41 |
sridhar_ram | gongysh_: centos, yes...no sure abt specific version support | 07:42 |
* sridhar_ram signing off for the evening | 07:45 | |
openstackgerrit | gongysh proposed openstack/tacker: Rename device db name into vnf name https://review.openstack.org/349776 | 07:46 |
openstackgerrit | gongysh proposed openstack/tacker: Don't change existing nullable property https://review.openstack.org/342227 | 07:46 |
*** saju_m has joined #tacker | 07:48 | |
kluka_ | Hi, guys can you review https://review.openstack.org/#/c/347184/ | 07:59 |
*** amotoki has quit IRC | 08:00 | |
kluka_ | It is a simple fix that should be merged as quickly as possible :) | 08:00 |
*** amotoki has joined #tacker | 08:04 | |
*** amotoki has quit IRC | 08:05 | |
veena_ | sridhar_ram, okay. Thank you :) | 08:08 |
openstackgerrit | Shaik Apsar proposed openstack/tacker: Implement tacker workflows https://review.openstack.org/341164 | 08:10 |
*** amotoki has joined #tacker | 08:17 | |
*** amotoki_ has joined #tacker | 08:18 | |
*** Ravikiran_K has joined #tacker | 08:18 | |
openstackgerrit | Tung Doan proposed openstack/tacker: Update policy definition in tacker-def.yaml https://review.openstack.org/350436 | 08:19 |
openstackgerrit | qinchunhua proposed openstack/tacker: Remove execute permission on one file https://review.openstack.org/346296 | 08:20 |
*** amotoki has quit IRC | 08:21 | |
dkushwaha | sridhar_ram, KanagarajM gongysh_ kindly respond to https://review.openstack.org/#/c/304667/ | 08:23 |
*** amotoki_ has quit IRC | 08:29 | |
openstackgerrit | gongysh proposed openstack/tacker: Remove keystone reconfiguration in devstack script https://review.openstack.org/350451 | 08:33 |
*** amotoki has joined #tacker | 08:45 | |
*** amotoki has quit IRC | 08:53 | |
openstackgerrit | Tung Doan proposed openstack/tacker: Alarm monitor: Update Heat driver Implements bp: #alarm-based-monitoring-driver https://review.openstack.org/347721 | 09:01 |
*** amotoki has joined #tacker | 09:02 | |
openstackgerrit | gongysh proposed openstack/tacker: Use plugin aware extension manager to load extensions https://review.openstack.org/344765 | 09:02 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/tacker: Updated from global requirements https://review.openstack.org/348692 | 09:08 |
*** Qiming has quit IRC | 09:46 | |
*** Qiming has joined #tacker | 09:50 | |
*** _rex_ has joined #tacker | 09:58 | |
*** Jaison has joined #tacker | 09:58 | |
*** links has quit IRC | 09:59 | |
*** _rex_ has quit IRC | 10:00 | |
*** _rex_ has joined #tacker | 10:07 | |
*** _rex_ is now known as rex | 10:08 | |
*** dazuko has quit IRC | 10:09 | |
*** amit213 has quit IRC | 10:10 | |
*** tbh has joined #tacker | 10:11 | |
*** amit213 has joined #tacker | 10:12 | |
*** Qiming has quit IRC | 10:12 | |
*** Qiming has joined #tacker | 10:17 | |
*** lulei has quit IRC | 10:22 | |
*** tbh has quit IRC | 10:27 | |
*** amotoki has quit IRC | 10:30 | |
*** amotoki has joined #tacker | 10:39 | |
*** amotoki has quit IRC | 10:41 | |
*** lulei has joined #tacker | 10:46 | |
*** Jaison has quit IRC | 10:49 | |
*** gongysh_ has quit IRC | 10:52 | |
*** links has joined #tacker | 10:53 | |
*** john has joined #tacker | 10:55 | |
*** john is now known as Guest87682 | 10:56 | |
*** Ravikiran_K has quit IRC | 10:56 | |
*** lulei has quit IRC | 11:06 | |
*** lulei has joined #tacker | 11:08 | |
*** diga has quit IRC | 11:14 | |
*** Guest87682 has quit IRC | 11:38 | |
janki | sridhar_ram, ping | 12:36 |
*** lulei has quit IRC | 12:39 | |
openstackgerrit | KaiLi proposed openstack/tacker: Tosca tacker_defs.yaml flie updates https://review.openstack.org/349767 | 12:50 |
*** john has joined #tacker | 12:51 | |
*** john is now known as Guest26361 | 12:51 | |
*** dazuko has joined #tacker | 13:06 | |
*** Guest26361 is now known as tbh | 13:09 | |
*** lamt_ has joined #tacker | 13:10 | |
*** tbh has quit IRC | 13:17 | |
*** tbh has joined #tacker | 13:20 | |
*** Ravikiran_K has joined #tacker | 13:33 | |
*** kikas has joined #tacker | 14:07 | |
*** janki has quit IRC | 14:11 | |
*** amotoki has joined #tacker | 14:18 | |
*** links has quit IRC | 14:23 | |
*** tbh has quit IRC | 14:32 | |
*** janki has joined #tacker | 14:34 | |
*** veena has joined #tacker | 14:39 | |
*** amotoki has quit IRC | 14:40 | |
*** kikas has quit IRC | 14:42 | |
*** bobh has joined #tacker | 14:43 | |
*** amotoki has joined #tacker | 14:45 | |
*** bobh has quit IRC | 14:49 | |
*** tbh_ has joined #tacker | 14:59 | |
*** tbh_ has quit IRC | 15:01 | |
*** saju_m has quit IRC | 15:02 | |
vishwanathj | Trying to figure out why jenkins pep8 failed for patchset http://logs.openstack.org/69/325169/....logs at http://logs.openstack.org/69/325169/17/check/gate-tacker-pep8-ubuntu-xenial/22bae39/console.html ....do not understand what importError failed Error message...would appreciate guidance from someone who understands this better | 15:06 |
*** amotoki has quit IRC | 15:06 | |
*** saju_m has joined #tacker | 15:14 | |
janki | vishwanathj: I think it is failing because of 2 HEADs during DB migration | 15:19 |
vishwanathj | 2016-08-03 07:20:17.851380 | d4f265e8eb9d (branchpoint) | 15:20 |
vishwanathj | 2016-08-03 07:20:17.851476 | -> 2ff0a0e360f1 (head) | 15:20 |
vishwanathj | 2016-08-03 07:20:17.851502 | -> 22f5385a3d4f (head) | 15:20 |
vishwanathj | janki are you referring to this | 15:20 |
vishwanathj | ^^^ | 15:20 |
janki | vishwanathj: yes the same | 15:21 |
janki | because of this the migration is not happening and it i sfailing | 15:21 |
*** amotoki has joined #tacker | 15:22 | |
vishwanathj | not sure why the base patch file has 22f5385a3d4f in the HEAD instead of d4f265e8eb9d? | 15:23 |
janki | a patch was merged today morning which chnaged the HEAD | 15:23 |
janki | so now repo has 22f... HEAD and your patch has d4f.. HEAD | 15:24 |
janki | your patch's new HEAD must be 2ff... | 15:24 |
janki | so it is thorwing error | 15:24 |
janki | trying rebasing | 15:24 |
janki | that might help | 15:24 |
janki | vishwanathj, ^^ | 15:25 |
vishwanathj | that's what I did yesterday and the HEAdD was d4f265e8eb9d....Hhmm | 15:25 |
janki | the merge happened some 12 hours age | 15:26 |
vishwanathj | janki...looks like after sripriya patchset there was a patchset from gongysh that changed the head again | 15:26 |
vishwanathj | janki appreciate your response | 15:27 |
janki | vishwanathj: yes, the very same patch "Remove proxy related db tables" | 15:27 |
janki | vishwanathj: happy I could help :) | 15:28 |
*** saju_m has quit IRC | 15:42 | |
openstackgerrit | vishwanath jayaraman proposed openstack/tacker: Adds audit support for VIM, VNFD and VNF https://review.openstack.org/325169 | 15:44 |
*** dazuko has quit IRC | 15:47 | |
*** kikas has joined #tacker | 16:10 | |
*** janki has quit IRC | 16:12 | |
*** kikas has quit IRC | 16:17 | |
*** veena has quit IRC | 16:31 | |
*** bobh has joined #tacker | 16:46 | |
*** bobh has quit IRC | 16:51 | |
*** kikas has joined #tacker | 16:53 | |
*** openstackgerrit_ has joined #tacker | 17:07 | |
*** openstackgerrit_ has quit IRC | 17:08 | |
*** vishnoianil has quit IRC | 17:15 | |
*** KanagarajM has quit IRC | 17:21 | |
*** s3wong has joined #tacker | 17:38 | |
*** sripriya has joined #tacker | 17:44 | |
sripriya | s3wong: can you please review https://review.openstack.org/#/c/349065 | 17:45 |
s3wong | sripriya: OK | 17:45 |
*** bobh has joined #tacker | 17:47 | |
*** KanagarajM has joined #tacker | 17:49 | |
*** bobh has quit IRC | 17:52 | |
openstackgerrit | Merged openstack/tacker-horizon: Add domain name field for VIM register https://review.openstack.org/349065 | 17:54 |
openstackgerrit | Sripriya Seetharam proposed openstack/tacker-horizon: Add domain name field for VIM register https://review.openstack.org/350718 | 18:01 |
*** bobh has joined #tacker | 18:11 | |
sridhar_ram | KanagarajM: can u take care of the merge conflicts in the scaling patchsets, so that we can merge them ? | 18:18 |
*** vishnoianil has joined #tacker | 18:20 | |
*** amotoki has quit IRC | 18:37 | |
*** santoshk has joined #tacker | 18:42 | |
openstackgerrit | Kanagaraj Manickam proposed openstack/tacker: VNF scaling: Infra (heat) driver update https://review.openstack.org/330666 | 18:53 |
openstackgerrit | Kanagaraj Manickam proposed openstack/tacker: VNF scaling: REST API https://review.openstack.org/330667 | 18:53 |
*** santoshk has quit IRC | 19:01 | |
*** sripriya has quit IRC | 19:10 | |
*** santoshk has joined #tacker | 19:23 | |
sridhar_ram | tacker-cores: couple of openstack-stack wide administrative shoo-ins: please review / merge https://review.openstack.org/345233 and https://review.openstack.org/345782 | 19:32 |
sridhar_ram | tacker-cores: bobh: s3wong: couple of openstack-stack wide administrative shoo-ins: please review / merge https://review.openstack.org/345233 and https://review.openstack.org/345782 | 19:42 |
*** sripriya has joined #tacker | 19:43 | |
bobh | sridhar_ram: done | 19:52 |
sridhar_ram | bobh: thanks! | 19:53 |
openstackgerrit | Merged openstack/tacker: Updated from global requirements https://review.openstack.org/348692 | 19:57 |
*** Ravikiran_K has quit IRC | 19:57 | |
openstackgerrit | Tim Rozet proposed openstack/tacker: [WIP] Implements VNFFG into NFVO https://review.openstack.org/344522 | 20:01 |
openstackgerrit | Merged openstack/tacker: Remove discover from test-requirements https://review.openstack.org/345233 | 20:01 |
openstackgerrit | Merged openstack/python-tackerclient: Remove discover from test-requirements https://review.openstack.org/345782 | 20:04 |
*** ShaikApsar has joined #tacker | 20:13 | |
*** sripriya has quit IRC | 20:13 | |
ShaikApsar | sridhar_ram: Hi, I will work on the documentation for mistral usage for tacker | 20:13 |
sridhar_ram | ShaikApsar: great, excited about Mistral related things in tacker... we are exploring to use more of Mistral for Tacker features | 20:14 |
ShaikApsar | sridhar_ram: Initial i thought to add action same as nova. | 20:14 |
ShaikApsar | sridhar_ram: but i don;t think we have that capability in tacker client as of now. | 20:15 |
sridhar_ram | ShaikApsar: hmm, what tacker client capability are you referring to here ? | 20:15 |
sridhar_ram | ShaikApsar: tacker client will report status=ACTIVE when the vnf goes ACTIVE, isn't that not sufficient ? | 20:16 |
ShaikApsar | sridhar_ram: getting the resource information based on the status. just like list all the vnf which are in error state | 20:16 |
sridhar_ram | ShaikApsar: I see, is that required for Mistral wait_for_xyz tasks ? I didn't realize that .. | 20:17 |
ShaikApsar | sridhar_ram: if we look at Nova action -- action: nova.servers_find id=<% $.vm_id %> status='ACTIVE, | 20:19 |
sridhar_ram | can't we try -- action:tacker.vnf_find id=<% $vnf_id %> status=ACTIVE | 20:20 |
ShaikApsar | sridhar_ram: let me try | 20:20 |
sridhar_ram | ShaikApsar: this shd call the equivalent of 'tacker vnf-show <vnf id>' | 20:21 |
ShaikApsar | sridhar_ram: 'tacker.show_vnf' is equivalent to 'tacker vnf-show <vnf id>' | 20:23 |
ShaikApsar | sridhar_ram: 'nova.servers.get' is not same as 'nova.servers_find' | 20:25 |
*** kikas has quit IRC | 20:25 | |
sridhar_ram | ShaikApsar: I see | 20:26 |
sridhar_ram | ShaikApsar: then, can't we use tacker.show_vnf vnf=<% $.vnf_id %> with parameter like status=ACTIVE ? | 20:27 |
*** sripriya has joined #tacker | 20:27 | |
ShaikApsar | sridhar_ram: validating that | 20:27 |
sridhar_ram | ShaikApsar: like this "action: tacker.show_vnf vnf=<% $.vnf_id %> status=ACTIVE" | 20:27 |
sridhar_ram | ShaikApsar: sounds good.. | 20:27 |
*** lamt_ is now known as help | 20:29 | |
*** help is now known as Guest23344 | 20:29 | |
*** Guest23344 has quit IRC | 20:31 | |
*** Guest23344 has joined #tacker | 20:32 | |
ShaikApsar | sridhar_ram: unrecognized arguments: status=ACTIVE, getting this error | 20:34 |
*** Guest23344 is now known as LamT | 20:34 | |
ShaikApsar | sridhar_ram: stack@ubuntu:~/devstack$ mistral run-action tacker.show_vnf '{"vnf": "705c8b8d-fa0f-44b7-9535-2b8a18b504c6"}' {"result": {"vnf": {"status": "ACTIVE", "description": "Demo example", "tenant_id": "bde60e557de840a8a837733aaa96e42e", "vim_id": "22ac5ce6-1415-460c-badf-40ffc5091f94", "instance_id": "b83ef4b7-fcd5-438f-b2bf-2910bb4c3bed", "mgmt_url": "{\"VDU1\": \"192.168.120.11\"}", "placement_attr": {"vim_name": "VIM0"}, | 20:35 |
ShaikApsar | sridhar_ram: but it;s failing while executing mistral run-action tacker.show_vnf '{"vnf": "705c8b8d-fa0f-44b7-9535-2b8a18b504c6"}' status=ACTIVE | 20:36 |
sridhar_ram | ShaikApsar: I suspect the way we return "status" within "vnf" dict attr might be the issue | 20:43 |
sridhar_ram | ShaikApsar: can u try something like this ""action: tacker.show_vnf vnf=<% $.vnf_id %> vnf.status=ACTIVE" | 20:43 |
*** KanagarajM has quit IRC | 20:49 | |
ShaikApsar | sridhar_ram: no luck with action: tacker.show_vnf vnf=<% $.vnf_id %> vnf.status=ACTIVE, it;s not checking for status active | 20:54 |
*** sripriya has quit IRC | 21:11 | |
*** sripriya has joined #tacker | 21:25 | |
*** Qiming has quit IRC | 21:37 | |
*** Qiming has joined #tacker | 21:39 | |
openstackgerrit | Shaik Apsar proposed openstack/tacker: Password Mask for debug logs. https://review.openstack.org/348480 | 22:03 |
*** ShaikApsar has quit IRC | 22:17 | |
*** saju_m has joined #tacker | 22:18 | |
*** bobh has quit IRC | 22:47 | |
*** sripriya has quit IRC | 22:52 | |
*** sripriya has joined #tacker | 23:02 | |
*** sripriya has quit IRC | 23:37 | |
*** bobh has joined #tacker | 23:52 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!