*** gyee has quit IRC | 00:18 | |
*** weifan has joined #openstack-ansible | 00:19 | |
*** schwicht has quit IRC | 00:29 | |
*** strobelight has quit IRC | 00:44 | |
*** hamzy__ has joined #openstack-ansible | 00:51 | |
*** hamzy_ has quit IRC | 00:53 | |
*** schwicht has joined #openstack-ansible | 01:06 | |
*** weifan has quit IRC | 01:11 | |
*** macz has joined #openstack-ansible | 01:17 | |
*** strobelight has joined #openstack-ansible | 01:19 | |
*** schwicht has joined #openstack-ansible | 01:19 | |
*** toanster has joined #openstack-ansible | 01:46 | |
*** goldyfruit has joined #openstack-ansible | 02:25 | |
*** macz has quit IRC | 02:32 | |
*** macz has joined #openstack-ansible | 02:34 | |
*** macz has quit IRC | 02:37 | |
*** macz has joined #openstack-ansible | 02:38 | |
*** markvoelker has quit IRC | 02:45 | |
*** spsurya has joined #openstack-ansible | 02:52 | |
*** toanster has left #openstack-ansible | 03:09 | |
*** macz has quit IRC | 03:18 | |
*** radeks_ has joined #openstack-ansible | 03:36 | |
*** radeks_ has quit IRC | 03:41 | |
*** radeks has joined #openstack-ansible | 03:42 | |
*** macz has joined #openstack-ansible | 04:11 | |
*** strobelight has quit IRC | 04:37 | |
snadge | im guessing not a lot of people are using cent/rhel? | 04:45 |
---|---|---|
snadge | im seeing "Cannot find a valid baseurl for repo: base/7/x86_64" .. probably because it defaults to using a mirrorlist | 04:46 |
snadge | im just wondering if this is a known issue or what the fix is | 04:46 |
*** markvoelker has joined #openstack-ansible | 04:46 | |
*** markvoelker has quit IRC | 04:51 | |
*** macz has quit IRC | 04:52 | |
snadge | googling tells me its most likely a networking error.. when i attach to the container and run "yum update" it tries to connect to mirrorlist.centos.org which resolves to an unroutable ipv6 address | 05:01 |
snadge | im trying to figure out how that is even possible, and why it doesn't just automatically fall back to ipv4.. bizarre | 05:02 |
snadge | i see.. we require use of "http_proxy" environment variable.. but it calls lxc-attach with --clear-env for some reason on centos | 05:32 |
snadge | when adjusting the yum repos | 05:32 |
*** andyzon has joined #openstack-ansible | 05:35 | |
*** andyzon has quit IRC | 06:16 | |
snadge | it also calls su - .. which clobbers the env | 06:27 |
*** shyamb has joined #openstack-ansible | 06:28 | |
jrosser | snadge: is your cloud behind an http proxy? | 06:31 |
snadge | unfortunately yes, which seemed to work OK for ubuntu, but not centos | 06:32 |
jrosser | where is su clobbering the env, so you have a link to the task? | 06:33 |
jrosser | fwiw I am similarly behind proxies but on Ubuntu | 06:34 |
snadge | thats right.. i have tested that works too.. digging a little deeper the command that gets stuck is like so: | 06:34 |
snadge | lxc-attach --clear-env --name aio1_horizon_container-00a91785 -- su - root -c (etc) | 06:35 |
snadge | if I change it to: | 06:35 |
snadge | lxc-attach --name aio1_horizon_container-00a91785 -- su root -c (etc) | 06:35 |
snadge | then it should work.. since that removes the --clear-env paramater and the - from the su command which also clears env | 06:35 |
jrosser | how have you told osa about your proxy | 06:36 |
snadge | yes.. so, there's two ways you can achieve that | 06:36 |
snadge | you can manually add the proxy variables to user_variables.yml in the /etc/openstack_deploy | 06:37 |
snadge | the bootstrap-aio.sh creates a user_variables_proxy.yml which seems to achieve the same effect .. but does not quite work on centos | 06:38 |
jrosser | I have no issues at all with env being clobbered using deployment_environment_variables | 06:39 |
*** lkoranda has joined #openstack-ansible | 06:39 | |
snadge | it would seem that nobody has tested centos support in a proxy only environment | 06:39 |
snadge | oh okay, i don't remember having to do anything for ubuntu though.. it just worked | 06:39 |
jrosser | so i am not convinced that the lxc attach is the issue as the mechanism is the same between centos/Ubuntu | 06:40 |
snadge | ahh.. im using "global_environment_variables" | 06:40 |
jrosser | for a production cloud I would be very wary of thatcher | 06:41 |
jrosser | *that | 06:41 |
jrosser | like pretty much don’t do that :) | 06:41 |
openstackgerrit | Andreas Jaeger proposed openstack/openstack-ansible-pip_install master: Switch to opensuse-15 https://review.opendev.org/689468 | 06:41 |
jrosser | two reasons | 06:42 |
snadge | well thats interesting.. the AIO defaults to using "global_environment_variables" for the proxy, which works for ubuntu but not centos | 06:43 |
*** andyzon has joined #openstack-ansible | 06:43 | |
jrosser | unless you are very careful internal traffic between services will get caught by the proxy rather than going to the loadbalancer direct | 06:43 |
snadge | right the no proxy should contain a huge list of internal addresses which includes those services | 06:44 |
jrosser | and second env vars are limited to 1024 chars by pam_env so the size of your cloud is limited by no_proxy getting to that size | 06:45 |
jrosser | I hit that easily in a modest osa POC lab setup | 06:45 |
jrosser | and then things break very wierdly | 06:46 |
snadge | i wonder if our existing production setup has that problem and we just haven't noticed | 06:46 |
jrosser | maybe, it’s silent fail, as pam_env truncates the vars to 1024 | 06:47 |
*** markvoelker has joined #openstack-ansible | 06:48 | |
*** andyzon has quit IRC | 06:48 | |
jrosser | so they appear fine, but at ansible run time are shortened | 06:48 |
*** andyzon_ has joined #openstack-ansible | 06:48 | |
snadge | production system of course has direct web access with no proxy.. so this must be just a test lab thing | 06:49 |
snadge | or it applies to the instances but not the servers.. or its just the vsphere vms.. who knows, will have to clarify that with other sysadmin | 06:49 |
*** andyzon has joined #openstack-ansible | 06:49 | |
jrosser | so AIO on centos doesn’t work with proxy? | 06:50 |
snadge | apparently not no, it would be nice if it would, but since this doesn't reflect our production setup and that's ultimately what im going to be caring about the most.. im not hugely concerned about that | 06:51 |
snadge | the requirement to use the proxy appears to be specific to the vsphere vm environment which is what im doing the testing with | 06:51 |
jrosser | I will see if I can test it | 06:52 |
*** markvoelker has quit IRC | 06:53 | |
*** andyzon_ has quit IRC | 06:53 | |
snadge | its with the 19.0.4 branch if that makes any difference | 06:54 |
*** JoyBoy7 has joined #openstack-ansible | 06:55 | |
*** trident has quit IRC | 06:55 | |
*** cshen has joined #openstack-ansible | 06:59 | |
*** arbrandes has quit IRC | 07:00 | |
*** trident has joined #openstack-ansible | 07:00 | |
*** arbrandes has joined #openstack-ansible | 07:01 | |
*** jtro has quit IRC | 07:06 | |
snadge | i am trying with "deployment_environment_variables" filled out to see if that makes a difference, but I may have to blow everything away and start again.. deleting the lxc containers doesn't seem to be enough | 07:08 |
*** JoyBoy7 has quit IRC | 07:08 | |
*** tosky has joined #openstack-ansible | 07:14 | |
*** shyamb has quit IRC | 07:15 | |
*** jbadiapa has joined #openstack-ansible | 07:16 | |
*** lkoranda has quit IRC | 07:36 | |
*** lkoranda_ has joined #openstack-ansible | 07:36 | |
*** lkoranda_ has quit IRC | 07:37 | |
*** ivve has joined #openstack-ansible | 07:39 | |
*** shyamb has joined #openstack-ansible | 07:39 | |
*** JoyBoy7 has joined #openstack-ansible | 07:44 | |
*** cshen has quit IRC | 07:50 | |
JoyBoy7 | Hello team, can somebody help me with some issues with OSA deployment i have and cant solve? | 07:51 |
*** DanyC has joined #openstack-ansible | 07:54 | |
*** cshen has joined #openstack-ansible | 07:54 | |
*** DanyC has quit IRC | 07:55 | |
*** kopecmartin|off is now known as kopecmartin | 07:56 | |
*** yolanda has joined #openstack-ansible | 07:58 | |
*** DanyC has joined #openstack-ansible | 07:59 | |
*** DanyC has quit IRC | 07:59 | |
jrosser | JoyBoy7: just ask :) | 07:59 |
*** DanyC has joined #openstack-ansible | 08:00 | |
JoyBoy7 | I am trying to deploy OSA into 4 servers , were 2 of them act as controller nodes (with HAProxy) and 2 as nodes act as compute. But when i run setup-infrastructure.yml I encounere fatal error in ; TASK [python_venv_build : Upgrade pip/setuptools/wheel to the versions we want] | 08:01 |
JoyBoy7 | fatal: [controller1_utility_container-e851bb9a]: FAILED! => {"attempts": 5, "changed": false, "cmd": ["/openstack/venvs/utility-19.0.2/bin/pip2", "install", "-U", "--constraint", "/openstack/venvs/utility-19.0.2/global-constraints.txt", "--constraint", "/openstack/venvs/utility-19.0.2/constraints.txt", "--log", "/var/log/python_venv_build.log", | 08:04 |
JoyBoy7 | "--find-links", "http://10.1.110.10:8181/os-releases/19.0.2/ubuntu-16.04-x86_64", "--trusted-host", "10.1.110.10", "pip", "setuptools", "wheel"], "msg": "stdout: Collecting pip==19.1 (from -c /openstack/venvs/utility-19.0.2/global-constraints.txt (line 3))\n\n:stderr: Exception:\nTraceback (most recent call last):\n File | 08:04 |
JoyBoy7 | \"/openstack/venvs/utility-19.0.2/lib/python2.7/site-packages/pip/basecommand.py\", line 209, in main\n status = self.run(options, args)\n File \"/openstack/venvs/utility-19.0.2/lib/python2.7/site-packages/pip/commands/install.py\", line 328, in run\n wb.build(autobuilding=True)\n File | 08:04 |
JoyBoy7 | \"/openstack/venvs/utility-19.0.2/lib/python2.7/site-packages/pip/wheel.py\", line 748, in build\n self.requirement_set.prepare_files(self.finder)\n File \"/openstack/venvs/utility-19.0.2/lib/python2.7/site-packages/pip/req/req_set.py\", line 360, in prepare_files\n ignore_dependencies=self.ignore_dependencies))\n File | 08:04 |
JoyBoy7 | \"/openstack/venvs/utility-19.0.2/lib/python2.7/site-packages/pip/req/req_set.py\", line 512, in _prepare_file\n finder, self.upgrade, require_hashes)\n File \"/openstack/venvs/utility-19.0.2/lib/python2.7/site-packages/pip/req/req_install.py\", line 273, in populate_link\n self.link = finder.find_requirement(self, upgrade)\n File | 08:04 |
JoyBoy7 | \"/openstack/venvs/utility-19.0.2/lib/python2.7/site-packages/pip/index.py\", line 442, in find_requirement\n all_candidates = self.find_all_candidates(req.name)\n File \"/openstack/venvs/utility-19.0.2/lib/python2.7/site-packages/pip/index.py\", line 400, in find_all_candidates\n for page in self._get_pages(url_locations, project_name):\n | 08:04 |
JoyBoy7 | File \"/openstack/venvs/utility-19.0.2/lib/python2.7/site-packages/pip/index.py\", line 545, in _get_pages\n page = self._get_page(location)\n File \"/openstack/venvs/utility-19.0.2/lib/python2.7/site-packages/pip/index.py\", line 648, in _get_page\n return HTMLPage.get_page(link, session=self.session)\n File | 08:04 |
JoyBoy7 | \"/openstack/venvs/utility-19.0.2/lib/python2.7/site-packages/pip/index.py\", line 757, in get_page\n \"Cache-Control\": \"max-age=600\",\n File \"/openstack/venvs/utility-19.0.2/share/python-wheels/requests-2.9.1-py2.py3-none-any.whl/requests/sessions.py\", line 480, in get\n return self.request('GET', url, **kwargs)\n File | 08:04 |
JoyBoy7 | \"/openstack/venvs/utility-19.0.2/lib/python2.7/site-packages/pip/download.py\", line 378, in request\n return super(PipSession, self).request(method, url, *args, **kwargs)\n File \"/openstack/venvs/utility-19.0.2/share/python-wheels/requests-2.9.1-py2.py3-none-any.whl/requests/sessions.py\", line 468, in request\n resp = self.send(prep, | 08:04 |
JoyBoy7 | **send_kwargs)\n File \"/openstack/venvs/utility-19.0.2/share/python-wheels/requests-2.9.1-py2.py3-none-any.whl/requests/sessions.py\", line 576, in send\n r = adapter.send(request, **kwargs)\n File \"/openstack/venvs/utility-19.0.2/share/python-wheels/requests-2.9.1-py2.py3-none-any.whl/requests/adapters.py\", line 376, in send\n | 08:04 |
JoyBoy7 | timeout=timeout\n File \"/openstack/venvs/utility-19.0.2/share/python-wheels/urllib3-1.13.1-py2.py3-none-any.whl/urllib3/connectionpool.py\", line 610, in urlopen\n _stacktrace=sys.exc_info()[2])\n File \"/openstack/venvs/utility-19.0.2/share/python-wheels/urllib3-1.13.1-py2.py3-none-any.whl/urllib3/util/retry.py\", line 228, in increment\n | 08:04 |
JoyBoy7 | total -= 1\nTypeError: unsupported operand type(s) for -=: 'Retry' and 'int'\nYou are using pip version 8.1.1, however version 19.3.1 is available.\nYou should consider upgrading via the 'pip install --upgrade pip' command.\n"} | 08:04 |
JoyBoy7 | This sis hte error and the same is for controller 2 | 08:05 |
jrosser | paste.openstack.org please :) | 08:05 |
jrosser | you are deploying stein? | 08:05 |
JoyBoy7 | yes | 08:06 |
jrosser | it looks like Ubuntu 16.04, which is not a supported combination | 08:06 |
jrosser | rocky was the last release of OSA which supported xenial | 08:07 |
*** rpittau|afk is now known as rpittau | 08:07 | |
JoyBoy7 | i have followed the documentation and here https://docs.openstack.org/project-deploy-guide/openstack-ansible/stein/targethosts.html | 08:07 |
JoyBoy7 | target hosts supports 16.0.4 | 08:07 |
JoyBoy7 | 16.04* | 08:08 |
jrosser | oh dear, sadly that is needing to be fixed | 08:08 |
jrosser | we don’t test or support xenial beyond rocky, sorry that the docs seem out of date | 08:09 |
JoyBoy7 | i am having a stroke eight now... | 08:10 |
JoyBoy7 | ong | 08:11 |
JoyBoy7 | thata was unexpected | 08:11 |
JoyBoy7 | ok so if i installed OSA with Ubuntu 18.04 then the problem will be solved right? | 08:12 |
jrosser | for the stein release, yes | 08:12 |
jrosser | rocky was the trasition release where is was necessary to upgrade the OS 16.04->18.04 before the cloud could be upgraded to stein | 08:13 |
openstackgerrit | Jonathan Rosser proposed openstack/openstack-ansible stable/stein: Drop support for Ubuntu Xenial https://review.opendev.org/690508 | 08:19 |
jrosser | JoyBoy7: ^ | 08:20 |
JoyBoy7 | jrosser (y) | 08:24 |
JoyBoy7 | 1 last question. the deployment server must also be 18.04 ubuntu also ? | 08:25 |
openstackgerrit | Jonathan Rosser proposed openstack/openstack-ansible stable/stein: Fix OS requirments https://review.opendev.org/690512 | 08:29 |
jrosser | noonedeadpunk: ^ not quite sure about mentioning opensuse 15 in that backport, stein doesnt seem to currently test that in the integrated repo | 08:30 |
jrosser | JoyBoy7: you may be able to use 16.04 - but again there is no testing of the deploy host being 16.04 so you may run into difficulty | 08:31 |
*** cshen has quit IRC | 08:39 | |
JoyBoy7 | Ok so i will build my deployment and target hosts on Ubuntu 18.04 | 08:41 |
*** aedc has quit IRC | 08:42 | |
*** aedc has joined #openstack-ansible | 08:42 | |
JoyBoy7 | Ty for the guidance! | 08:42 |
jrosser | JoyBoy7: no worries - if you find anything else odd please let us know | 08:42 |
*** cshen has joined #openstack-ansible | 08:44 | |
*** shyamb has quit IRC | 08:45 | |
admin0 | morning \o | 08:45 |
*** shyamb has joined #openstack-ansible | 08:46 | |
*** markvoelker has joined #openstack-ansible | 08:49 | |
*** gillesMo has quit IRC | 08:52 | |
*** gillesMo has joined #openstack-ansible | 08:52 | |
*** markvoelker has quit IRC | 08:53 | |
*** pcaruana has joined #openstack-ansible | 09:02 | |
*** shyam89 has joined #openstack-ansible | 09:30 | |
*** shyam89 has quit IRC | 09:34 | |
*** shyamb has quit IRC | 09:35 | |
*** yolanda__ has joined #openstack-ansible | 09:41 | |
*** yolanda has quit IRC | 09:43 | |
*** CeeMac has quit IRC | 09:58 | |
*** hamzaachi has joined #openstack-ansible | 10:02 | |
*** shyamb has joined #openstack-ansible | 10:03 | |
*** yolanda__ is now known as yolanda | 10:03 | |
*** sshnaidm is now known as sshnaidm|afk | 10:11 | |
*** shyam89 has joined #openstack-ansible | 10:17 | |
noonedeadpunk | mornings | 10:18 |
jrosser | o/ | 10:19 |
*** macz has joined #openstack-ansible | 10:19 | |
noonedeadpunk | jrosser: iirc we do support it for stein as we already added 15 into rocky (at least for some of the jobs) | 10:19 |
jrosser | ok, yes, i was a bit surprised that there wasnt an opensuse job on the integrated repo for stein | 10:20 |
jrosser | and, umm, we branched the roles for stable/train it seems? | 10:20 |
*** shyamb has quit IRC | 10:20 | |
noonedeadpunk | yep, that's true:) | 10:20 |
jrosser | so i left a comment on here https://review.opendev.org/#/c/686573/ | 10:21 |
noonedeadpunk | oh, I see | 10:21 |
jrosser | i figure we need to redo that patch with the SHA that are actually now making train, rather than the ones we wanted to use | 10:22 |
*** toanster has joined #openstack-ansible | 10:23 | |
*** macz has quit IRC | 10:24 | |
*** toanster has left #openstack-ansible | 10:24 | |
noonedeadpunk | do we still have that cirros mirror problem? | 10:27 |
openstackgerrit | Dmitriy Rabotyagov (noonedeadpunk) proposed openstack/openstack-ansible-os_tempest stable/train: Don't download image when it's already there https://review.opendev.org/690538 | 10:27 |
noonedeadpunk | Or, we can backport ^ and update sha in arr to that one | 10:28 |
*** cshen has quit IRC | 10:30 | |
openstackgerrit | Dmitriy Rabotyagov (noonedeadpunk) proposed openstack/openstack-ansible master: Create Train https://review.opendev.org/686573 | 10:30 |
jrosser | is it actually possible to backport anything to train yet? | 10:30 |
jrosser | becasue we don't have a train branch for the openstack-ansible repo | 10:30 |
noonedeadpunk | in terms of CI not sure... | 10:31 |
jrosser | i think this is why the ordering was soooooo important :/ | 10:31 |
noonedeadpunk | so I've rolled back that tempest bump and hope that cirros repos are ok now | 10:32 |
noonedeadpunk | but we can just recheck all backports | 10:33 |
noonedeadpunk | once will branch main repo | 10:33 |
jrosser | it looks like cirros might still be broken for http | 10:33 |
jrosser | https is working though, but that doesnt help | 10:34 |
noonedeadpunk | ok, let me temporary fix that | 10:35 |
ioni | sorry for the offtopic but i was looking to see what do you guys use as core/edge routers into your infrascture? | 10:35 |
openstackgerrit | Dmitriy Rabotyagov (noonedeadpunk) proposed openstack/openstack-ansible-os_tempest master: Set cirros to be downloaded via https https://review.opendev.org/690541 | 10:38 |
openstackgerrit | Dmitriy Rabotyagov (noonedeadpunk) proposed openstack/openstack-ansible master: Create Train https://review.opendev.org/686573 | 10:39 |
*** pcaruana has quit IRC | 10:41 | |
jrosser | ioni: "it depends" :) | 10:41 |
ioni | jrosser, can i pm you? | 10:41 |
jrosser | sure | 10:42 |
noonedeadpunk | jrosser: so I think that https can help. As we're landing freeze on master, we can fix tempest on master only with https links | 10:42 |
noonedeadpunk | and once we will branch - we will land backport for tempest | 10:43 |
noonedeadpunk | yes, that means that tempest is not really working on rc1, but it's rc1... | 10:43 |
jrosser | i see the http works eventually - there is a huuuge delay for me | 10:44 |
noonedeadpunk | that was yestarday as well. And tasks were randomly failing | 10:44 |
noonedeadpunk | and tempest will be not working due to infra stuff, as role actually valid | 10:45 |
*** cshen has joined #openstack-ansible | 10:46 | |
*** shyam89 has quit IRC | 10:50 | |
*** cshen has quit IRC | 10:50 | |
*** shyamb has joined #openstack-ansible | 10:52 | |
*** shyam89 has joined #openstack-ansible | 11:03 | |
*** shyamb has quit IRC | 11:07 | |
*** DanyC has quit IRC | 11:09 | |
*** cshen has joined #openstack-ansible | 11:13 | |
*** lkoranda has joined #openstack-ansible | 11:16 | |
*** cshen has quit IRC | 11:19 | |
*** cshen has joined #openstack-ansible | 11:19 | |
*** macz has joined #openstack-ansible | 11:23 | |
*** DanyC has joined #openstack-ansible | 11:27 | |
*** macz has quit IRC | 11:27 | |
*** sshnaidm|afk is now known as sshnaidm|bbl | 11:36 | |
*** schwicht has quit IRC | 11:36 | |
*** DanyC has quit IRC | 11:38 | |
*** JoyBoy7 has quit IRC | 11:41 | |
*** DanyC has joined #openstack-ansible | 11:46 | |
*** shyam89 has quit IRC | 11:55 | |
*** strobelight has joined #openstack-ansible | 12:00 | |
*** markvoelker has joined #openstack-ansible | 12:05 | |
*** schwicht has joined #openstack-ansible | 12:06 | |
*** nicolasbock has joined #openstack-ansible | 12:13 | |
*** goldyfruit has quit IRC | 12:14 | |
*** fresta has quit IRC | 12:21 | |
*** fresta has joined #openstack-ansible | 12:23 | |
*** hamzy_ has joined #openstack-ansible | 12:30 | |
*** hamzy__ has quit IRC | 12:33 | |
*** hamzy has joined #openstack-ansible | 12:35 | |
*** hamzy_ has quit IRC | 12:37 | |
*** nicolasbock has quit IRC | 12:37 | |
*** schwicht has quit IRC | 12:39 | |
*** nicolasbock has joined #openstack-ansible | 12:44 | |
*** nicolasbock has quit IRC | 12:50 | |
*** pcaruana has joined #openstack-ansible | 12:53 | |
*** nicolasbock has joined #openstack-ansible | 12:54 | |
*** hamzy has quit IRC | 13:03 | |
*** nurdie has joined #openstack-ansible | 13:06 | |
*** schwicht has joined #openstack-ansible | 13:08 | |
*** radeks has quit IRC | 13:16 | |
*** prometheanfire has quit IRC | 13:16 | |
*** radeks has joined #openstack-ansible | 13:18 | |
*** prometheanfire has joined #openstack-ansible | 13:18 | |
*** goldyfruit has joined #openstack-ansible | 13:25 | |
*** ThiagoCMC has quit IRC | 13:29 | |
*** ThiagoCMC has joined #openstack-ansible | 13:37 | |
*** tosky has quit IRC | 13:38 | |
*** tosky has joined #openstack-ansible | 13:39 | |
*** lkoranda has quit IRC | 13:43 | |
*** hamzy has joined #openstack-ansible | 13:53 | |
*** cshen has quit IRC | 13:54 | |
*** sshnaidm|bbl is now known as sshnaidm | 13:57 | |
*** ivve has quit IRC | 14:05 | |
*** yolanda has quit IRC | 14:07 | |
*** andyzon has quit IRC | 14:10 | |
*** andyzon has joined #openstack-ansible | 14:11 | |
*** andyzon has quit IRC | 14:11 | |
*** andyzon has joined #openstack-ansible | 14:11 | |
*** yolanda has joined #openstack-ansible | 14:14 | |
*** andyzon has quit IRC | 14:16 | |
*** dave-mccowan has joined #openstack-ansible | 14:16 | |
*** markvoelker has quit IRC | 14:20 | |
*** andyzon has joined #openstack-ansible | 14:23 | |
*** poopcat has quit IRC | 14:24 | |
*** poopcat has joined #openstack-ansible | 14:25 | |
*** markvoelker has joined #openstack-ansible | 14:32 | |
*** dave-mccowan has quit IRC | 14:37 | |
*** kopecmartin is now known as kopecmartin|off | 14:39 | |
*** Garyx_ has quit IRC | 14:44 | |
*** Garyx_ has joined #openstack-ansible | 14:44 | |
*** andyzon has quit IRC | 14:54 | |
*** pcaruana has quit IRC | 14:57 | |
selvakumarnms | Hi ALl while starting the lxc container , I face below issues. your help is greatly appreciated. Thanks | 15:03 |
selvakumarnms | http://paste.openstack.org/show/785522/ | 15:03 |
redkrieg | Has anyone noticed performance issues when letting an Ubuntu 18.04 based controller run for a couple days? I'm seeing high si% in top, load in the 60-140 range, etc. Rebooting fixes for a few hours, restarting ceilometer containers helps for a shorter time. It seems to have just started about a week ago, my controllers booted before that have similar workloads but none of these symptoms. | 15:10 |
*** macz has joined #openstack-ansible | 15:26 | |
*** gyee has joined #openstack-ansible | 15:26 | |
selvakumarnms | @noonedeadpunk any clues you can give me? | 15:26 |
*** macz has quit IRC | 15:27 | |
*** macz has joined #openstack-ansible | 15:27 | |
noonedeadpunk | redkrieg: the main consumer is ceilometer? | 15:28 |
noonedeadpunk | what release and is everything is ok with ceilometer? | 15:28 |
noonedeadpunk | As I had an issue with ceilometer leak on rocky | 15:28 |
redkrieg | rocky stable, ceilometer seems to be spotty sometimes yes. missing metrics that show up hours later, etc | 15:29 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-ops master: tox: Keeping going with docs https://review.opendev.org/690608 | 15:29 |
redkrieg | haven't done any troubleshooting beyond "restart ceilometer" so far | 15:29 |
noonedeadpunk | selvakumarnms: sorry, I'm not really good with ovs yet:( | 15:29 |
redkrieg | just figured if it started happening recently and all I updated are distro packages, maybe someone else saw something | 15:30 |
*** andyzon has joined #openstack-ansible | 15:30 | |
noonedeadpunk | redkrieg: so I've placed that patch to cover ceilometer being stuck https://review.opendev.org/#/c/616202/ | 15:32 |
noonedeadpunk | but as I see it wasn't backported to rocky | 15:32 |
noonedeadpunk | and I had the following in its log http://paste.openstack.org/show/733979/ | 15:32 |
noonedeadpunk | oh, it _was_ backported | 15:33 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_aodh master: tox: Keeping going with docs https://review.opendev.org/690610 | 15:33 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible master: tox: Keeping going with docs https://review.opendev.org/690611 | 15:35 |
noonedeadpunk | guilhermesp: mind reviewing https://review.opendev.org/#/c/689508/ ? | 15:37 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_barbican master: tox: Keeping going with docs https://review.opendev.org/690612 | 15:38 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-tests master: tox: Keeping going with docs https://review.opendev.org/690613 | 15:43 |
*** goldyfruit has quit IRC | 15:46 | |
openstackgerrit | Dmitriy Rabotyagov (noonedeadpunk) proposed openstack/openstack-ansible master: Add support to deploy murano https://review.opendev.org/679496 | 15:54 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_barbican master: tox: Keeping going with docs https://review.opendev.org/690612 | 15:55 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_barbican master: tox: Keeping going with docs https://review.opendev.org/690612 | 15:57 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_aodh master: tox: Keeping going with docs https://review.opendev.org/690610 | 15:58 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-ops master: tox: Keeping going with docs https://review.opendev.org/690608 | 15:59 |
*** macz has quit IRC | 16:04 | |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_cinder master: tox: Keeping going with docs https://review.opendev.org/690620 | 16:05 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_keystone master: tox: Keeping going with docs https://review.opendev.org/690623 | 16:08 |
*** andyzon has quit IRC | 16:10 | |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_ceilometer master: tox: Keeping going with docs https://review.opendev.org/690627 | 16:11 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_cloudkitty master: tox: Keeping going with docs https://review.opendev.org/690632 | 16:17 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_cloudkitty master: tox: Keeping going with docs https://review.opendev.org/690632 | 16:19 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_blazar master: tox: Keeping going with docs https://review.opendev.org/690633 | 16:19 |
*** sshnaidm is now known as sshnaidm|afk | 16:22 | |
*** andyzon has joined #openstack-ansible | 16:28 | |
*** andyzon has quit IRC | 16:32 | |
*** markvoelker has quit IRC | 16:33 | |
*** markvoelker has joined #openstack-ansible | 16:43 | |
*** andyzon has joined #openstack-ansible | 16:46 | |
*** rpittau is now known as rpittau|afk | 16:50 | |
*** hamzaachi has quit IRC | 16:51 | |
*** andyzon has quit IRC | 16:54 | |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_zun master: tox: Keeping going with docs https://review.opendev.org/690638 | 16:57 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_zun master: tox: Keeping going with docs https://review.opendev.org/690638 | 16:59 |
*** DanyC has quit IRC | 17:01 | |
redkrieg | noonedeadpunk: do you use ceph for your setup? I've just booted to an earlier kernel and it resolved a ceph mount issue I had that I think might be related to the performance problems I was seeing. https://www.mail-archive.com/ceph-users@lists.ceph.com/msg56473.html | 17:01 |
noonedeadpunk | yep, I do | 17:02 |
noonedeadpunk | that;s interesting | 17:03 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_trove master: tox: Keeping going with docs https://review.opendev.org/690639 | 17:03 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_congress master: tox: Keeping going with docs https://review.opendev.org/690643 | 17:07 |
*** aedc has quit IRC | 17:10 | |
*** aedc has joined #openstack-ansible | 17:10 | |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_glance master: tox: Keeping going with docs https://review.opendev.org/690645 | 17:15 |
openstackgerrit | Merged openstack/openstack-ansible-tests master: PDF Documentation Build target https://review.opendev.org/689508 | 17:16 |
noonedeadpunk | jrosser: technically we can merge to train:) https://review.opendev.org/#/c/690538/ | 17:16 |
jrosser | oh yes i did see that, its brilliant | 17:17 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_placement master: tox: Keeping going with docs https://review.opendev.org/690646 | 17:18 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_masakari master: tox: Keeping going with docs https://review.opendev.org/690647 | 17:18 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_manila master: tox: Keeping going with docs https://review.opendev.org/690648 | 17:19 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-nspawn_hosts master: tox: Keeping going with docs https://review.opendev.org/690649 | 17:19 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_rally master: tox: Keeping going with docs https://review.opendev.org/690650 | 17:19 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-rabbitmq_server master: tox: Keeping going with docs https://review.opendev.org/690651 | 17:19 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-openstack_openrc master: tox: Keeping going with docs https://review.opendev.org/690652 | 17:19 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-ceph_client master: tox: Keeping going with docs https://review.opendev.org/690653 | 17:19 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_designate master: tox: Keeping going with docs https://review.opendev.org/690654 | 17:19 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-repo_build master: tox: Keeping going with docs https://review.opendev.org/690655 | 17:19 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_magnum master: tox: Keeping going with docs https://review.opendev.org/690656 | 17:19 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-apt_package_pinning master: tox: Keeping going with docs https://review.opendev.org/690657 | 17:19 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-galera_client master: tox: Keeping going with docs https://review.opendev.org/690658 | 17:19 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-openstack_hosts master: tox: Keeping going with docs https://review.opendev.org/690659 | 17:19 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-plugins master: tox: Keeping going with docs https://review.opendev.org/690660 | 17:19 |
jrosser | we are not being very lucky with the job passing today | 17:19 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_sahara master: tox: Keeping going with docs https://review.opendev.org/690661 | 17:19 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_monasca master: tox: Keeping going with docs https://review.opendev.org/690662 | 17:19 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-repo_server master: tox: Keeping going with docs https://review.opendev.org/690663 | 17:19 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-galera_server master: tox: Keeping going with docs https://review.opendev.org/690664 | 17:19 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-rsyslog_client master: tox: Keeping going with docs https://review.opendev.org/690665 | 17:19 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_panko master: tox: Keeping going with docs https://review.opendev.org/690666 | 17:20 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_heat master: tox: Keeping going with docs https://review.opendev.org/690668 | 17:23 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-specs master: tox: Keeping going with docs https://review.opendev.org/690669 | 17:23 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-haproxy_server master: tox: Keeping going with docs https://review.opendev.org/690670 | 17:23 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-nspawn_container_create master: tox: Keeping going with docs https://review.opendev.org/690671 | 17:23 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/openstack-ansible-apt_package_pinning master: Updated from OpenStack Ansible Tests https://review.opendev.org/690672 | 17:23 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_ironic master: tox: Keeping going with docs https://review.opendev.org/690673 | 17:23 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_octavia master: tox: Keeping going with docs https://review.opendev.org/690674 | 17:23 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-lxc_container_create master: tox: Keeping going with docs https://review.opendev.org/690675 | 17:23 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_tacker master: tox: Keeping going with docs https://review.opendev.org/690676 | 17:23 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-rsyslog_server master: tox: Keeping going with docs https://review.opendev.org/690677 | 17:23 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_gnocchi master: tox: Keeping going with docs https://review.opendev.org/690678 | 17:23 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-pip_install master: tox: Keeping going with docs https://review.opendev.org/690679 | 17:23 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-lxc_hosts master: tox: Keeping going with docs https://review.opendev.org/690680 | 17:23 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-memcached_server master: tox: Keeping going with docs https://review.opendev.org/690681 | 17:23 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_swift master: tox: Keeping going with docs https://review.opendev.org/690682 | 17:23 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_horizon master: tox: Keeping going with docs https://review.opendev.org/690683 | 17:23 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_neutron master: tox: Keeping going with docs https://review.opendev.org/690684 | 17:23 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_nova master: tox: Keeping going with docs https://review.opendev.org/690685 | 17:23 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_tempest master: tox: Keeping going with docs https://review.opendev.org/690686 | 17:24 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/openstack-ansible-nspawn_container_create master: Updated from OpenStack Ansible Tests https://review.opendev.org/690687 | 17:24 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/openstack-ansible-nspawn_hosts master: Updated from OpenStack Ansible Tests https://review.opendev.org/690688 | 17:24 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/openstack-ansible-ops master: Updated from OpenStack Ansible Tests https://review.opendev.org/690689 | 17:24 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/openstack-ansible-os_keystone master: Updated from OpenStack Ansible Tests https://review.opendev.org/690690 | 17:25 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/openstack-ansible-os_zun master: Updated from OpenStack Ansible Tests https://review.opendev.org/690691 | 17:26 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/openstack-ansible-pip_install master: Updated from OpenStack Ansible Tests https://review.opendev.org/690692 | 17:26 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/openstack-ansible-plugins master: Updated from OpenStack Ansible Tests https://review.opendev.org/690693 | 17:26 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/openstack-ansible-repo_build master: Updated from OpenStack Ansible Tests https://review.opendev.org/690694 | 17:27 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/openstack-ansible-rsyslog_client master: Updated from OpenStack Ansible Tests https://review.opendev.org/690695 | 17:27 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/openstack-ansible-rsyslog_server master: Updated from OpenStack Ansible Tests https://review.opendev.org/690696 | 17:27 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/ansible-hardening master: Updated from OpenStack Ansible Tests https://review.opendev.org/671840 | 17:27 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/ansible-role-python_venv_build master: Updated from OpenStack Ansible Tests https://review.opendev.org/690697 | 17:27 |
redkrieg | noonedeadpunk: yeah, I just confirmed I have ceph problems only with 4.15.0-66-generic, 4.15.0-65-generic is fine | 17:29 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-tests master: tox: Keeping going with docs https://review.opendev.org/690613 | 17:29 |
noonedeadpunk | redkrieg: that's good to know, thanks for sharing! | 17:30 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-tests master: tox: Keeping going with docs https://review.opendev.org/690613 | 17:31 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-tests master: tox: Keeping going with docs https://review.opendev.org/690613 | 17:31 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-tests master: tox: Keeping going with docs https://review.opendev.org/690613 | 17:33 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-repo_server master: tox: Keeping going with docs https://review.opendev.org/690663 | 17:35 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-tests master: tox: Keeping going with docs https://review.opendev.org/690613 | 17:36 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_designate master: tox: Keeping going with docs https://review.opendev.org/690654 | 17:36 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_masakari master: tox: Keeping going with docs https://review.opendev.org/690647 | 17:37 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_rally master: tox: Keeping going with docs https://review.opendev.org/690650 | 17:37 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-openstack_openrc master: tox: Keeping going with docs https://review.opendev.org/690652 | 17:37 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_placement master: tox: Keeping going with docs https://review.opendev.org/690646 | 17:37 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_glance master: tox: Keeping going with docs https://review.opendev.org/690645 | 17:38 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_tempest master: tox: Keeping going with docs https://review.opendev.org/690686 | 17:38 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_nova master: tox: Keeping going with docs https://review.opendev.org/690685 | 17:38 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_neutron master: tox: Keeping going with docs https://review.opendev.org/690684 | 17:38 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_horizon master: tox: Keeping going with docs https://review.opendev.org/690683 | 17:39 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_swift master: tox: Keeping going with docs https://review.opendev.org/690682 | 17:39 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-memcached_server master: tox: Keeping going with docs https://review.opendev.org/690681 | 17:39 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-lxc_hosts master: tox: Keeping going with docs https://review.opendev.org/690680 | 17:39 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-pip_install master: tox: Keeping going with docs https://review.opendev.org/690679 | 17:39 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_gnocchi master: tox: Keeping going with docs https://review.opendev.org/690678 | 17:40 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-rsyslog_server master: tox: Keeping going with docs https://review.opendev.org/690677 | 17:40 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_tacker master: tox: Keeping going with docs https://review.opendev.org/690676 | 17:40 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-lxc_container_create master: tox: Keeping going with docs https://review.opendev.org/690675 | 17:41 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_octavia master: tox: Keeping going with docs https://review.opendev.org/690674 | 17:41 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-apt_package_pinning master: tox: Keeping going with docs https://review.opendev.org/690657 | 17:42 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_ironic master: tox: Keeping going with docs https://review.opendev.org/690673 | 17:42 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-nspawn_container_create master: tox: Keeping going with docs https://review.opendev.org/690671 | 17:43 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-haproxy_server master: tox: Keeping going with docs https://review.opendev.org/690670 | 17:43 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_panko master: tox: Keeping going with docs https://review.opendev.org/690666 | 17:43 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-rsyslog_client master: tox: Keeping going with docs https://review.opendev.org/690665 | 17:43 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_monasca master: tox: Keeping going with docs https://review.opendev.org/690662 | 17:43 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-plugins master: tox: Keeping going with docs https://review.opendev.org/690660 | 17:44 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-openstack_hosts master: tox: Keeping going with docs https://review.opendev.org/690659 | 17:44 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-galera_client master: tox: Keeping going with docs https://review.opendev.org/690658 | 17:44 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-repo_build master: tox: Keeping going with dtox: Keeping going with docs https://review.opendev.org/690655 | 17:44 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-rabbitmq_server master: tox: Keeping going with docs https://review.opendev.org/690651 | 17:44 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-nspawn_hosts master: tox: Keeping going with docs https://review.opendev.org/690649 | 17:44 |
openstackgerrit | jacky06 proposed openstack/openstack-ansible-os_manila master: tox: Keeping going with docs https://review.opendev.org/690648 | 17:45 |
redkrieg | noonedeadpunk: okay, last update. I had some additional ceph issues that took some time to crop up on -65, I've been running -62 for a while now and it is remaining stable. sorry for the spam | 17:45 |
noonedeadpunk | redkrieg: if 62 also won't work - let me know:) as it's really interesting info | 17:45 |
*** sshnaidm|afk is now known as sshnaidm | 17:51 | |
redkrieg | will do | 17:51 |
openstackgerrit | Merged openstack/ansible-role-python_venv_build master: Updated from OpenStack Ansible Tests https://review.opendev.org/690697 | 17:58 |
*** spsurya has quit IRC | 17:59 | |
*** weifan has joined #openstack-ansible | 18:05 | |
openstackgerrit | Merged openstack/openstack-ansible-os_keystone master: Updated from OpenStack Ansible Tests https://review.opendev.org/690690 | 18:07 |
*** hamzaachi has joined #openstack-ansible | 18:10 | |
openstackgerrit | Merged openstack/openstack-ansible-nspawn_hosts master: Updated from OpenStack Ansible Tests https://review.opendev.org/690688 | 18:15 |
openstackgerrit | Merged openstack/openstack-ansible-plugins master: Updated from OpenStack Ansible Tests https://review.opendev.org/690693 | 18:30 |
openstackgerrit | Merged openstack/openstack-ansible-nspawn_container_create master: Updated from OpenStack Ansible Tests https://review.opendev.org/690687 | 18:31 |
openstackgerrit | Merged openstack/openstack-ansible-apt_package_pinning master: Updated from OpenStack Ansible Tests https://review.opendev.org/690672 | 18:33 |
openstackgerrit | Merged openstack/openstack-ansible-rsyslog_client master: Updated from OpenStack Ansible Tests https://review.opendev.org/690695 | 18:33 |
*** hamzaachi has quit IRC | 18:33 | |
openstackgerrit | Merged openstack/openstack-ansible-rsyslog_server master: Updated from OpenStack Ansible Tests https://review.opendev.org/690696 | 18:34 |
openstackgerrit | Merged openstack/openstack-ansible-ops master: Updated from OpenStack Ansible Tests https://review.opendev.org/690689 | 18:35 |
openstackgerrit | Merged openstack/openstack-ansible-repo_build master: Updated from OpenStack Ansible Tests https://review.opendev.org/690694 | 18:36 |
*** pcaruana has joined #openstack-ansible | 18:38 | |
openstackgerrit | Merged openstack/openstack-ansible-pip_install master: Updated from OpenStack Ansible Tests https://review.opendev.org/690692 | 18:41 |
*** pcaruana has quit IRC | 18:44 | |
*** hamzaachi has joined #openstack-ansible | 18:56 | |
*** nurdie has quit IRC | 19:34 | |
*** radeks has quit IRC | 19:35 | |
*** nurdie has joined #openstack-ansible | 19:35 | |
jrosser | mnaser: guilhermesp: logan- spotz we need this https://review.opendev.org/#/c/690541/ | 19:36 |
jrosser | then this https://review.opendev.org/#/c/686573/12 | 19:36 |
spotz | bringing them up jrosser | 19:36 |
*** nurdie has quit IRC | 19:40 | |
*** selvakumarnms has quit IRC | 19:40 | |
*** admin0 has quit IRC | 19:42 | |
spotz | done | 19:43 |
*** gouthamr has quit IRC | 19:43 | |
*** shananigans has joined #openstack-ansible | 19:47 | |
*** hamzaachi has quit IRC | 19:51 | |
*** gouthamr_ has joined #openstack-ansible | 19:54 | |
*** hamzaachi has joined #openstack-ansible | 19:55 | |
*** markvoelker has quit IRC | 20:07 | |
*** hamzaachi has quit IRC | 20:09 | |
*** jbadiapa has quit IRC | 20:10 | |
*** strobelight has quit IRC | 20:13 | |
*** nurdie has joined #openstack-ansible | 20:15 | |
*** nurdie has quit IRC | 20:20 | |
*** toanster has joined #openstack-ansible | 20:42 | |
*** aedc has quit IRC | 20:43 | |
*** aedc has joined #openstack-ansible | 20:43 | |
*** markvoelker has joined #openstack-ansible | 20:44 | |
*** nurdie has joined #openstack-ansible | 20:58 | |
*** nurdie_ has joined #openstack-ansible | 20:59 | |
*** toanster has quit IRC | 21:00 | |
*** nurdie has quit IRC | 21:03 | |
*** shananigans has quit IRC | 21:06 | |
openstackgerrit | Merged openstack/openstack-ansible-os_tempest master: Set cirros to be downloaded via https https://review.opendev.org/690541 | 21:24 |
*** schwicht has quit IRC | 21:31 | |
*** goldyfruit has joined #openstack-ansible | 21:38 | |
*** toanster has joined #openstack-ansible | 21:57 | |
*** schwicht has joined #openstack-ansible | 22:02 | |
*** goldyfruit has quit IRC | 22:04 | |
*** toanster has quit IRC | 22:11 | |
*** markvoelker has quit IRC | 22:22 | |
*** schwicht has quit IRC | 22:32 | |
*** nurdie_ has quit IRC | 22:33 | |
*** nurdie has joined #openstack-ansible | 22:33 | |
*** nurdie has quit IRC | 22:38 | |
*** tosky has quit IRC | 22:59 | |
*** weifan has quit IRC | 23:04 | |
*** weifan has joined #openstack-ansible | 23:04 | |
*** schwicht has joined #openstack-ansible | 23:54 | |
*** weifan has quit IRC | 23:54 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!