| *** tosky has quit IRC | 00:00 | |
| chenhaw | hi jrosser and noonedeadpunk. thanks for the advice the other day. i end up redo the whole setup again. Running playbook setup-host.yml and setup-infrastructure.yml went smoothly on the first run. however, when come to setup-openstack.yml playbook, there are errors when setup Glance. here is the error, http://paste.openstack.org/show/797073/. hopefully you can shed some light on this issue. | 01:04 |
|---|---|---|
| *** cshen has joined #openstack-ansible | 01:09 | |
| *** cshen has quit IRC | 01:13 | |
| *** jamesdenton has quit IRC | 01:46 | |
| *** jamesden_ has joined #openstack-ansible | 01:47 | |
| *** cshen has joined #openstack-ansible | 03:09 | |
| *** cshen has quit IRC | 03:14 | |
| *** miloa has joined #openstack-ansible | 04:02 | |
| openstackgerrit | Satish Patel proposed openstack/openstack-ansible-repo_server master: Add Centos-8 support https://review.opendev.org/747613 | 04:15 |
| *** evrardjp has quit IRC | 04:46 | |
| *** evrardjp has joined #openstack-ansible | 04:48 | |
| *** cshen has joined #openstack-ansible | 05:09 | |
| *** cshen has quit IRC | 05:13 | |
| *** raukadah is now known as chandankumar | 05:45 | |
| *** chenhaw has quit IRC | 06:04 | |
| openstackgerrit | Jonathan Rosser proposed openstack/openstack-ansible-openstack_hosts stable/ussuri: Increase default value of net.ipv4.igmp_max_memberships https://review.opendev.org/747620 | 06:07 |
| *** miloa has quit IRC | 06:11 | |
| *** jhesketh_ has quit IRC | 06:39 | |
| *** jhesketh has joined #openstack-ansible | 06:41 | |
| *** chenhaw has joined #openstack-ansible | 06:55 | |
| *** sshnaidm|afk is now known as sshnaidm | 07:03 | |
| *** andrewbonney has joined #openstack-ansible | 07:11 | |
| masterpe | It looks like it is unable to mount /var/lib/glance/images | 07:16 |
| *** tosky has joined #openstack-ansible | 07:20 | |
| *** cshen has joined #openstack-ansible | 07:25 | |
| openstackgerrit | Merged openstack/openstack-ansible-haproxy_server master: Add haproxy_ssl_all_vips variable https://review.opendev.org/747137 | 07:37 |
| *** akahat|rover is now known as akahat|lunch | 07:58 | |
| *** yolanda has quit IRC | 08:03 | |
| *** pcaruana has joined #openstack-ansible | 08:27 | |
| *** jbadiapa has joined #openstack-ansible | 08:44 | |
| *** cshen_ has joined #openstack-ansible | 08:46 | |
| *** cshen has quit IRC | 08:49 | |
| openstackgerrit | Merged openstack/openstack-ansible-os_heat master: Use the utility host for db setup tasks https://review.opendev.org/747200 | 09:02 |
| *** cshen_ has quit IRC | 09:26 | |
| *** cshen has joined #openstack-ansible | 09:30 | |
| admin0 | \o | 09:36 |
| admin0 | if i want to add a local storage hypervisor in an all ceph cluster, what is the best overrride for nova to switch between local storage vs ceph ? | 09:37 |
| jrosser | admin0: i did this by splitting the compute nodes into two ansible groups | 09:46 |
| jrosser | in the group that i wanted to use ceph with i set nova_libvirt_images_rbd_pool: ephemeral-vms | 09:46 |
| jrosser | when that is unset you can use local storage | 09:47 |
| admin0 | if i have some overrides in user_variables, do I need to repeat them in the host_variables also .. or can i just use this single nova_libvirt_images_rbd_pool in the host/group override ? | 09:48 |
| admin0 | jrosser, thanks .. | 09:49 |
| admin0 | jrosser, the nova channel pointed me to https://github.com/openstack/nova/blob/0d062ac7b6acc769117e77c3094b32a84411fe83/nova/conf/libvirt.py#L899-L916 -- ( i had asked in both, just in case) | 09:51 |
| jrosser | overrides in user_variables will take precedence over anything you put i group_vars/host_vars | 09:51 |
| jrosser | so you can't really put anything in user_<blah>.yml which you want to divide across host groups | 09:51 |
| jrosser | user_variables are global and will always win in terms of precedence | 09:52 |
| admin0 | jrosser, i meant if in user_variables, i have nova overrides where i have done say ratio 1:8, and then i create a local-storage group, can i just put the nova overdide for local storage in this group, or i have to repeat the ratios again ? | 09:52 |
| jrosser | it won't work like that | 09:53 |
| jrosser | becasue the value you put in user_variables will always apply everywhere | 09:53 |
| jrosser | for something that you want to vary in different groups you need to take it out of user_variables and repeat it in as many group_vars files as you need with the settings replicated where necessary | 09:54 |
| admin0 | got it | 09:54 |
| jrosser | nova_libvirt_images_rbd_pool is a variable in its own right, rather than a config override for nova.conf | 09:55 |
| admin0 | te override is for ratios | 09:55 |
| jrosser | there is other logic driven by that, like installing the ceph client | 09:55 |
| admin0 | well, this goes under libvirt in nova.conf, while the other ovrrides go under default | 09:56 |
| admin0 | so if the host/group override does not touch [default] in nova, will it be applied ? | 09:56 |
| jrosser | there is a variable for this nova_cpu_allocation_ratio | 09:56 |
| jrosser | sorry i'm getting confused, by overrides i understand you to mean nova_nova_conf_overrides: ? | 09:57 |
| admin0 | jrosser, .this example https://gist.github.com/a1git/867a9e872ef49ba2ae9430b980eb159a | 09:58 |
| admin0 | do I need to repeat the DEFAULT from the user_variable also to the local_disk_hosts.yml file ? that was the question | 09:58 |
| jrosser | you need to define the whole of nova_nova_conf_overrides for each compute node entirely | 09:58 |
| admin0 | ok | 09:59 |
| jrosser | you cannot have it at the same time in user_variable and a group_vars | 09:59 |
| admin0 | so even if they target diff sections , they won't be merged :) | 09:59 |
| jrosser | correct | 09:59 |
| admin0 | is that an ansible thing ? | 09:59 |
| jrosser | ansible can do dictionary merging, but it's considered very unusual | 10:00 |
| admin0 | if i want only 1 host to be non-ceph among 2 dozens, is there a quick way to unset nova_libvirt_images_rbd_pool: vms from just 1 or 2 host | 10:02 |
| *** itandops has joined #openstack-ansible | 10:08 | |
| *** akahat|lunch is now known as akahat|rover | 10:27 | |
| admin0 | jrosser, how many groups can a hypervisor be a part of ? because i am using routed networking, they are already a part of a group | 10:29 |
| jrosser | you can make as many groups as you like | 10:33 |
| jrosser | unfortunately i dont think you can specifically unset a variable for a specific host, which doesnt really help you much | 10:34 |
| jrosser | the best thing to do probably is make compute_with_ceph and compute_local_disks or something | 10:34 |
| *** dave-mccowan has joined #openstack-ansible | 10:44 | |
| *** rh-jelabarre has joined #openstack-ansible | 10:53 | |
| openstackgerrit | Merged openstack/openstack-ansible-os_keystone stable/train: Add Paramaters to httpd.conf template https://review.opendev.org/746964 | 11:19 |
| *** cshen_ has joined #openstack-ansible | 11:29 | |
| *** cshen has quit IRC | 11:32 | |
| openstackgerrit | Merged openstack/openstack-ansible-os_neutron stable/ussuri: Make has_offline_migrations output predictable https://review.opendev.org/746738 | 11:37 |
| openstackgerrit | Merged openstack/openstack-ansible stable/train: Bump SHAs for stable/train https://review.opendev.org/747585 | 11:38 |
| openstackgerrit | Merged openstack/openstack-ansible stable/stein: Bump SHAs for stable/stein https://review.opendev.org/747584 | 11:38 |
| openstackgerrit | Merged openstack/openstack-ansible master: Bump SHAs for master https://review.opendev.org/747583 | 11:38 |
| openstackgerrit | Merged openstack/openstack-ansible stable/train: Remove nova_api_placement from inventory https://review.opendev.org/747107 | 11:38 |
| *** spatel has joined #openstack-ansible | 12:56 | |
| *** mmethot_ has quit IRC | 12:57 | |
| spatel | jrosser: morning | 12:57 |
| *** mmethot_ has joined #openstack-ansible | 12:57 | |
| *** mmethot has joined #openstack-ansible | 13:00 | |
| *** mmethot_ has quit IRC | 13:01 | |
| *** cshen_ has quit IRC | 13:11 | |
| *** owalsh has quit IRC | 13:15 | |
| *** owalsh has joined #openstack-ansible | 13:16 | |
| *** KeithMnemonic has joined #openstack-ansible | 13:24 | |
| openstackgerrit | Merged openstack/openstack-ansible-os_ceilometer master: Disable ceilometer distro jobs https://review.opendev.org/747032 | 13:44 |
| openstackgerrit | Merged openstack/openstack-ansible-os_masakari master: Add masakari-monitors to constraints https://review.opendev.org/744673 | 13:49 |
| *** cshen has joined #openstack-ansible | 13:54 | |
| openstackgerrit | Merged openstack/openstack-ansible-os_octavia stable/ussuri: Updated from OpenStack Ansible Tests https://review.opendev.org/746302 | 13:55 |
| *** spatel has quit IRC | 13:56 | |
| *** spatel has joined #openstack-ansible | 14:02 | |
| openstackgerrit | Merged openstack/openstack-ansible-openstack_hosts stable/ussuri: Increase default value of net.ipv4.igmp_max_memberships https://review.opendev.org/747620 | 14:11 |
| *** d34dh0r53 has joined #openstack-ansible | 14:12 | |
| *** chandankumar is now known as raukadah | 14:52 | |
| *** kberger_ has joined #openstack-ansible | 14:57 | |
| *** cloudnull7 has joined #openstack-ansible | 15:02 | |
| *** KeithMnemonic has quit IRC | 15:03 | |
| *** cloudnull has quit IRC | 15:03 | |
| *** cloudnull7 is now known as cloudnull | 15:03 | |
| *** waxfire7 has joined #openstack-ansible | 15:08 | |
| *** waxfire has quit IRC | 15:09 | |
| *** waxfire7 is now known as waxfire | 15:09 | |
| *** chenhaw has quit IRC | 15:11 | |
| *** chenhaw has joined #openstack-ansible | 15:11 | |
| *** gyee has joined #openstack-ansible | 15:20 | |
| *** spatel has quit IRC | 15:22 | |
| *** d34dh0r53 has quit IRC | 15:22 | |
| *** masterpe has quit IRC | 15:22 | |
| *** ebbex has quit IRC | 15:22 | |
| *** gundalow has quit IRC | 15:22 | |
| *** andrewbonney has quit IRC | 15:22 | |
| *** cyberpear has quit IRC | 15:22 | |
| *** mwhahaha has quit IRC | 15:22 | |
| *** mnaser has quit IRC | 15:22 | |
| *** nicolasbock has quit IRC | 15:22 | |
| *** guilhermesp has quit IRC | 15:22 | |
| *** sum12 has quit IRC | 15:22 | |
| *** d34dh0r53 has joined #openstack-ansible | 15:27 | |
| *** masterpe has joined #openstack-ansible | 15:30 | |
| *** mwhahaha has joined #openstack-ansible | 15:31 | |
| itandops | Hi folks, I deployed openstack with 2 infra nodes, after loosing one infra node, ceph can not start correctly http://paste.openstack.org/show/797092/ | 15:33 |
| itandops | nova can't start instances since they all use block devices in ceph | 15:33 |
| *** ebbex has joined #openstack-ansible | 15:33 | |
| *** gundalow has joined #openstack-ansible | 15:33 | |
| itandops | someone could help to solve this please ? | 15:34 |
| *** andrewbonney has joined #openstack-ansible | 15:34 | |
| *** nicolasbock has joined #openstack-ansible | 15:34 | |
| *** cyberpear has joined #openstack-ansible | 15:34 | |
| *** mnaser has joined #openstack-ansible | 15:34 | |
| *** guilhermesp has joined #openstack-ansible | 15:34 | |
| *** sum12 has joined #openstack-ansible | 15:34 | |
| itandops | noonedeadpunk,jrosser, admin0: any suggestion ? | 15:52 |
| *** npalladium has joined #openstack-ansible | 16:01 | |
| *** cshen has quit IRC | 16:07 | |
| jrosser | itandops: mon state "probing" means it is looking for the other mons according to the ceph documentation | 16:08 |
| openstackgerrit | Merged openstack/openstack-ansible-os_designate stable/ussuri: Updated from OpenStack Ansible Tests https://review.opendev.org/746290 | 16:23 |
| *** spatel has joined #openstack-ansible | 16:36 | |
| *** cshen has joined #openstack-ansible | 16:40 | |
| *** tosky has quit IRC | 16:49 | |
| admin0 | my deployment is failing in Ensure newest key is used for credential in Keystone | 16:53 |
| itandops | jrosser: I'm thinking about commenting entries of infra2 into openstack_user_config and run ceph-install.yml to run ceph with one mons as in All in One deployment | 16:54 |
| admin0 | my controllers crashed, so the db was restored | 16:58 |
| admin0 | so question is how can i re-run the setup-openstack on a system where the db is already setup | 16:58 |
| *** jbadiapa has quit IRC | 17:00 | |
| *** andrewbonney has quit IRC | 17:08 | |
| openstackgerrit | amolkahat proposed openstack/openstack-ansible-os_tempest master: Added tempest ironic resources setup. https://review.opendev.org/720705 | 17:21 |
| *** cshen has quit IRC | 17:25 | |
| openstackgerrit | Merged openstack/openstack-ansible stable/ussuri: Remove nova_api_placement from inventory https://review.opendev.org/747106 | 17:26 |
| npalladium | Heya! I'm trying to install Swift as a part of my Openstack setup and I'm running into an error in the swift_rings_post_distribution_check.yml task. The gist of the error seems to be `'ansible.vars.hostvars.HostVarsVars object' has no attribute 'builder_md5sum'` and therefore that particular part of the task is failing. Does any have any idea why this would happen? Or could someone please help me mitigate this? | 17:34 |
| *** cshen has joined #openstack-ansible | 17:51 | |
| *** cshen has quit IRC | 17:56 | |
| *** pcaruana has quit IRC | 17:58 | |
| *** cshen has joined #openstack-ansible | 18:05 | |
| *** pcaruana has joined #openstack-ansible | 18:11 | |
| *** cshen has quit IRC | 18:59 | |
| *** pcaruana has quit IRC | 19:02 | |
| *** pcaruana has joined #openstack-ansible | 19:15 | |
| openstackgerrit | Merged openstack/openstack-ansible master: Allow usage of haproxy_ssl_all_vips for services https://review.opendev.org/747138 | 19:34 |
| *** cshen has joined #openstack-ansible | 19:34 | |
| *** cshen has quit IRC | 19:39 | |
| *** npalladium has quit IRC | 19:50 | |
| *** cshen has joined #openstack-ansible | 20:00 | |
| *** jamesden_ has quit IRC | 20:02 | |
| *** cshen has quit IRC | 20:05 | |
| *** jamesdenton has joined #openstack-ansible | 20:09 | |
| *** cshen has joined #openstack-ansible | 22:01 | |
| *** cshen has quit IRC | 22:06 | |
| *** d34dh0r53 has quit IRC | 22:14 | |
| *** kberger_ has quit IRC | 22:51 | |
Generated by irclog2html.py 2.17.2 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!