sbezverk | instead after a while, I suspect when nova-api service gets created | 00:00 |
---|---|---|
sbezverk | it starts crashing becaose real provider of nova-api service nova-api pod is not running | 00:00 |
jascott1 | svc is created but backend is not serving yet | 00:01 |
kfox1111 | maybe its the lack of readyness checks? | 00:01 |
kfox1111 | do we have enough currently? | 00:01 |
sbezverk | as a learning go exercise, I am planning to do a code walk of entrypoint and build a debug images with bunch of debugs enabled | 00:01 |
*** Pavo has joined #openstack-kolla | 00:01 | |
kfox1111 | I guess we do for the deployments. | 00:01 |
sbezverk | jascott1: exactly | 00:01 |
kfox1111 | svc is created but not serving should be covered by endpoint. it says in the docs. if not its probably a bug. | 00:02 |
*** lamt has quit IRC | 00:02 | |
sbezverk | right, it sounds very much like a bug | 00:02 |
kfox1111 | thus far though, every time I thought I hit a bug in entrypoint its been a slightly wrong dep specification. | 00:02 |
sbezverk | kfox1111: the problem is nobody from entrypoint wants to check provided information and confirm | 00:03 |
kfox1111 | got a link? | 00:03 |
sbezverk | https://github.com/stackanetes/kubernetes-entrypoint/issues/19 | 00:03 |
kfox1111 | thx | 00:04 |
jascott1 | it would be great to have a map of the dependencies | 00:05 |
jascott1 | from k8s perspective | 00:05 |
kfox1111 | sbezverk: k. so cinder-api is waiting to init... | 00:08 |
kfox1111 | sbezverk: but what is the thing that is depending on cinder-api but is starting too early? | 00:08 |
sbezverk | scheduler | 00:09 |
kfox1111 | k. looking... | 00:10 |
sbezverk | in the last version of cinder, I actually end up listing all bootstrap jobs | 00:10 |
sbezverk | for shceduler as well, so it would not try to get into running state | 00:10 |
kfox1111 | [{"name":"dependencies","image":"docker.io/kolla/centos-binary-kubernetes-entrypoint:4.0.0","env":[{"name":"DEPENDENCY_SERVICE","value":"cinder-api"},{"name":"NAMESPACE","value":"kolla"}] | 00:10 |
kfox1111 | hmmm... sure enough. | 00:11 |
kfox1111 | the cinder api never incremented its restart count, so its not that it crashed and restarted. | 00:11 |
kfox1111 | http://logs.openstack.org/97/424697/2/check/gate-kolla-kubernetes-deploy-centos-binary-2-helm-entrypoint-nv/54871ee/logs/pods/kolla-cinder-scheduler-0-dependencies.txt.gz | 00:12 |
kfox1111 | looks like it thinkgs cinder-api svc gained an endpoint. | 00:12 |
*** hfu has joined #openstack-kolla | 00:12 | |
portdirect | kfox1111: thats what I pointed out above | 00:12 |
kfox1111 | http://logs.openstack.org/97/424697/2/check/gate-kolla-kubernetes-deploy-centos-binary-2-helm-entrypoint-nv/54871ee/logs/svc/kolla-cinder-api.txt.gz shows no endpoints... | 00:12 |
portdirect | is it possible to get lofs for endpoints? | 00:12 |
portdirect | *logs | 00:12 |
kfox1111 | yeah. that dependencies link from above. | 00:13 |
kfox1111 | should be the endpoints log for the cinder-scheduler init container. | 00:13 |
portdirect | no - we need the logs for the actualy endpoints themselves | 00:13 |
kfox1111 | glance-api? | 00:14 |
portdirect | that way we can see if its a but in k8s-entrypoint or somewhere else | 00:14 |
portdirect | *bug | 00:14 |
kfox1111 | yeah. this could be a k8s-entrypoing bug, or a bug where k8s makes an entrypoint 'ready' for half a second anddrops it back out. | 00:14 |
portdirect | yep | 00:14 |
sbezverk | portdirect: just dump bunch of services one after another without wating, you will see it right away | 00:15 |
portdirect | k8s-entrypoint marks the service as up when the endpoint list >0 | 00:15 |
kfox1111 | portdirect: here's the event log for cinder-api | 00:15 |
kfox1111 | http://logs.openstack.org/97/424697/2/check/gate-kolla-kubernetes-deploy-centos-binary-2-helm-entrypoint-nv/54871ee/logs/pods/kolla-cinder-api-1556585568-c1kq5.txt.gz | 00:15 |
kfox1111 | looks like it only ever started the deps container. | 00:15 |
kfox1111 | so it never shoudl have been ready. | 00:15 |
portdirect | yeah - so somthing must have cuased the ep list to get populated - this could be a k8s bug i wonder? | 00:16 |
kfox1111 | yeah, possible. | 00:16 |
kfox1111 | are we sure that k8s-entrypoint just looks at the svc? | 00:16 |
kfox1111 | or does it check pods too? | 00:16 |
portdirect | yeah - i can give you a link to the code if you like? | 00:17 |
portdirect | 2 sec | 00:17 |
portdirect | this is all it does: https://github.com/stackanetes/kubernetes-entrypoint/blob/master/dependencies/service/service.go#L27-L36 | 00:17 |
portdirect | get a list of ep's for a service, if the list >0 then assumes its good to go | 00:18 |
*** goldyfruit has quit IRC | 00:18 | |
kfox1111 | looks fairly simple... but wonder what Subsets is. | 00:18 |
*** adrian_otto has joined #openstack-kolla | 00:19 | |
portdirect | i think ip/port mappings, need to double check the api docs though to be sure | 00:19 |
kfox1111 | https://kubernetes.io/docs/user-guide/services/ | 00:20 |
sbezverk | guys what is pod gets created and even it sits in init state, the service gets backend already assigned | 00:20 |
sbezverk | so the service might have backend but pod still not operational as it waits for bootstrap jobs to complete | 00:21 |
kfox1111 | at the end of the run, the service had no endpoints. | 00:21 |
kfox1111 | so I think it added the pod prematurely to the endpoint list, then canceled it. | 00:21 |
kfox1111 | this does look to be a k8s problem, but only noticed by entrypoint. | 00:21 |
kfox1111 | it hsould only enter svc when it hits "ready" state. which it shouldn't until the readyness hook passes. | 00:22 |
portdirect | right so, lets run with that theory | 00:22 |
kfox1111 | but it was only ever in the init state. | 00:22 |
portdirect | 2 solutions: | 00:23 |
portdirect | 1) get k8s-entrypint to test x times before reporting ok | 00:23 |
portdirect | 2) fix k8s | 00:23 |
kfox1111 | 1 might work, but if you have enough replica's, it could fail several times in a row. :/ | 00:24 |
kfox1111 | 2 would be good, but might take a while. | 00:24 |
kfox1111 | but I can think of a 3rd. | 00:24 |
portdirect | agree with your assement | 00:24 |
kfox1111 | curl the endpoint and block until it works? | 00:24 |
portdirect | that works too | 00:24 |
kfox1111 | that might be a more reliable test anyway then k8s-entrypoint. | 00:25 |
kfox1111 | just out of curiosity, does cinder-schedular actually call the cinder-api? I would have thoguht not. | 00:26 |
portdirect | i shouldnt need to be dependant on it no | 00:26 |
sbezverk | kfox1111L cinder api dependency for sheduler was put as a guarantee that bootstrap process is completed | 00:27 |
portdirect | the only way they interact if via the message bus afaik? | 00:27 |
kfox1111 | sbezverk: ah. but the same could be done by just looking at the boot jobs? | 00:27 |
kfox1111 | portdirect: yeah, thats what I thought too. | 00:28 |
kfox1111 | sbezverk: would start more in parallel then. | 00:28 |
sbezverk | it is like chain of dependencies, api depeneds on bootstrap and scheduler depends on api as a result sheduler | 00:28 |
sbezverk | depends on everything | 00:28 |
kfox1111 | yeah, but the chain is not strigly needed. it could be started more in parallel. | 00:28 |
kfox1111 | boostrap things, then start cinder-api / cinder-scheduler at the same time. | 00:28 |
sbezverk | for cinder it is not that bad because it does not really need api | 00:29 |
sbezverk | so by listing bootstrap jobs it got fixed | 00:29 |
portdirect | this is the same approach we took with os-helm with k8s-entrypoint (job dependencys) | 00:29 |
sbezverk | but other pods might really rely on api being up and running | 00:30 |
kfox1111 | sbezverk: yeah. I think there may need to be some deps between nova/neutron that way? though, we probably don't need too many deps, as openstack itself does deal ok with having services go away and come back. | 00:30 |
kfox1111 | in some cases at least. | 00:31 |
sbezverk | kfox1111: I guess the first step would be where possible to start using jobs as dependecy | 00:33 |
kfox1111 | yeah. :/ | 00:33 |
kfox1111 | really don't like that. :/ | 00:33 |
*** lrensing has joined #openstack-kolla | 00:33 | |
kfox1111 | if version A of kolla-kube has boostrap jobs (a, b, c) | 00:33 |
kfox1111 | and version B of kolla-kube has boostrap jobs (b, c, d) | 00:34 |
kfox1111 | upgrading can get really ugly then. :/ | 00:34 |
kfox1111 | while kind of ugly, I think maybe if we really wanted to depend on jobs, | 00:34 |
kfox1111 | as a signaling mechanism, | 00:35 |
kfox1111 | we make a sential job. | 00:35 |
kfox1111 | say, a cinder-is-bootstrapped-job. | 00:35 |
kfox1111 | make it depend on all the other boostrap jobs for cinder. | 00:35 |
kfox1111 | and only make the deps on jobs for other container depend on that one sentinal job. | 00:35 |
kfox1111 | then all kolla-kubernetes versions would only ever look for taht sentinal. | 00:36 |
kfox1111 | so upgrades could go smoother. | 00:36 |
kfox1111 | sbezverk: portdirect what do you think of that idea? | 00:39 |
sbezverk | kfox1111: it add another level of complexety | 00:42 |
kfox1111 | yeah. but it removes a lot of complexity from upgrades? | 00:42 |
sbezverk | can you think of any use case where bootstrap jobs might be different? | 00:43 |
kfox1111 | we've already renamed boostrap jobs before, and split/added some. | 00:43 |
kfox1111 | I don't think we nessisarily need to do anything else, but "forever" is a long time to not change something. | 00:44 |
kfox1111 | the startup may perform better too, if it doesn't have to pull multiple jobs. though that may or may be a small amount of load. | 00:44 |
sbezverk | kfox1111: I would try to push for the fix | 00:45 |
*** rwallner has joined #openstack-kolla | 00:45 | |
kfox1111 | yeah. for sure we should do that. | 00:46 |
kfox1111 | but with as long as k8s fixes have been taking, I'm not holding my breath it would be usable any time soon. :/ | 00:46 |
*** rwallner has quit IRC | 00:46 | |
kfox1111 | that resolv.conf thing kills me. :/ | 00:46 |
*** rwallner has joined #openstack-kolla | 00:47 | |
sbezverk | kfox1111: it is getting merged | 00:48 |
sbezverk | I heard | 00:48 |
*** salv-orlando has joined #openstack-kolla | 00:49 | |
kfox1111 | nice. :) | 00:49 |
*** lamt has joined #openstack-kolla | 00:50 | |
kfox1111 | the shared namespace one is looking like it maybe 1.7 at very least. :/ | 00:50 |
kfox1111 | maybe 1.8. they are a bit panic'ed over its ramifications. | 00:51 |
*** salv-orlando has quit IRC | 00:54 | |
*** dave-mccowan has joined #openstack-kolla | 00:56 | |
*** zhubingbing_ has joined #openstack-kolla | 00:58 | |
zhubingbing_ | hello guys | 00:58 |
kfox1111 | hey. :) | 00:59 |
cliles | hi | 01:00 |
*** salv-orlando has joined #openstack-kolla | 01:00 | |
*** salv-orlando has quit IRC | 01:06 | |
*** skramaja_ has joined #openstack-kolla | 01:16 | |
*** skramaja has quit IRC | 01:19 | |
*** crushil has joined #openstack-kolla | 01:20 | |
*** lamt has quit IRC | 01:21 | |
*** lamt has joined #openstack-kolla | 01:26 | |
*** sdake has joined #openstack-kolla | 01:28 | |
*** lamt has quit IRC | 01:28 | |
*** portdirect is now known as portdirect_away | 01:30 | |
*** lamt has joined #openstack-kolla | 01:31 | |
*** sbezverk has quit IRC | 01:34 | |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla-ansible master: [TEST][MASTER][KOLLA-ANSIBLE] https://review.openstack.org/422786 | 01:41 |
sdake | bmace_ was busy all day - not sure ify ou got my mesage ealier about getting a n env working | 01:45 |
sdake | bmace_ i think one thing you may or may not be aware of is cloud.yaml | 01:46 |
*** rwallner has quit IRC | 01:47 | |
sdake | kfox1111 what is setup-resolv-conf.sh plz? | 01:48 |
openstackgerrit | Zeyu Zhu proposed openstack/kolla-ansible master: Remove unnecessary import in kolla_toolbox.py https://review.openstack.org/428535 | 01:48 |
*** sbezverk has joined #openstack-kolla | 01:52 | |
*** zhurong has joined #openstack-kolla | 01:52 | |
sdake | sbezverk quick q, kolla-kubernetes vms ssh seems tow ork like a champ | 01:53 |
*** unicell has quit IRC | 01:53 | |
sdake | ping to google's dns works | 01:53 |
sdake | hwoever, dns inside the vm is non-functional | 01:53 |
sdake | i could hack resolve.conf inside the vm and get things going | 01:53 |
sdake | curious if you have a better way | 01:53 |
openstackgerrit | Zeyu Zhu proposed openstack/kolla-ansible master: Remove unnecessary import in kolla_toolbox.py https://review.openstack.org/428535 | 02:01 |
*** Pavo has quit IRC | 02:01 | |
*** salv-orlando has joined #openstack-kolla | 02:02 | |
sdake | inc0 can you provide the link for the organized version of the agenda for the ptg? | 02:03 |
*** dave-mccowan has quit IRC | 02:03 | |
*** Pavo has joined #openstack-kolla | 02:05 | |
*** adrian_otto has quit IRC | 02:06 | |
*** salv-orlando has quit IRC | 02:06 | |
inc0 | https://etherpad.openstack.org/p/kolla-pike-ptg-schedule sdake | 02:07 |
sdake | tx inc0 | 02:07 |
inc0 | kfox1111, sbezverk others, fill up k8s sessions as you guys see fit | 02:08 |
sdake | what is day 1 #2? | 02:08 |
*** lrensing has quit IRC | 02:09 | |
sdake | inc0 do you hve the original link to the sessions we started from? | 02:10 |
* sdake has link overload | 02:12 | |
*** mattmceuen has joined #openstack-kolla | 02:12 | |
sdake | 9-5 = 9 hours | 02:12 |
*** lamt has quit IRC | 02:13 | |
sdake | 1 hour lunch break = 9-12, 1-5 = 8 hours | 02:13 |
sdake | rather subract one | 02:13 |
sdake | 9-5=8 hours | 02:13 |
sdake | 9-12, 1-5=7 hours | 02:13 |
*** lamt has joined #openstack-kolla | 02:13 | |
sdake | inc0 were you able to sort out a wednesday collab time with the peeps in tripleo? | 02:14 |
sdake | I am leaving wed at 11am i htink | 02:14 |
sdake | if we coudl somehow get that in from 9-10, i think that would work best for many people as many people may leave wed | 02:15 |
inc0 | I'll check it out, worst case scenerio I'll just meet with them, I leave Thur | 02:16 |
inc0 | kfox1111 will be around too | 02:17 |
sdake | inc0 cool thanks | 02:17 |
sdake | inc0 any idea of headcount? | 02:18 |
*** lamt has quit IRC | 02:18 | |
sdake | inc0 woudl be nice to have dinner as a team mon and tue dutch style - although difficult to find a place last minute - so need to book asap | 02:19 |
inc0 | no idea really, we'll have to improvise | 02:19 |
inc0 | worked out in BCN:) | 02:19 |
inc0 | I don't think it will be super crowded tho | 02:19 |
*** mdnadeem has joined #openstack-kolla | 02:20 | |
sdake | basic math = 500 people / (2 (since the ptg is sort of broken into two parts) + number of teams) | 02:21 |
sdake | 18 teams monday and tuesday | 02:23 |
*** Pavo_ has joined #openstack-kolla | 02:24 | |
sdake | that gives us 15 people using my half-baked mathmatics :) | 02:24 |
sdake | i'll see if I can hunt down some reservations for that headcount | 02:24 |
*** skramaja_ has quit IRC | 02:28 | |
sdake | sbezverk your color hurts my eyes - can you change it plz :) | 02:33 |
*** prameswar has joined #openstack-kolla | 02:39 | |
*** unicell has joined #openstack-kolla | 02:40 | |
*** MasterOfBugs has quit IRC | 02:47 | |
*** kbyrne has quit IRC | 02:47 | |
*** kbyrne has joined #openstack-kolla | 02:50 | |
*** unicell has quit IRC | 02:53 | |
*** dave-mccowan has joined #openstack-kolla | 02:53 | |
openstackgerrit | jangpro2 proposed openstack/kolla-ansible master: This feature is supporting for collecting log from IPA. https://review.openstack.org/428553 | 03:01 |
*** salv-orlando has joined #openstack-kolla | 03:03 | |
*** crushil has quit IRC | 03:05 | |
*** salv-orlando has quit IRC | 03:07 | |
*** lrensing has joined #openstack-kolla | 03:10 | |
inc0 | sooo Expanse s2 doesn't disappoint. | 03:11 |
*** sayantan_ has quit IRC | 03:11 | |
*** Pavo_ has quit IRC | 03:13 | |
cliles | how does the kolla_docker ansible module create a privlidged container? | 03:14 |
cliles | or maybe I should just ask... | 03:15 |
*** dave-mccowan has quit IRC | 03:15 | |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla master: [TEST][MASTER][KOLLA] https://review.openstack.org/426625 | 03:16 |
cliles | shouldn't the cinder_volume container start with CAP_SYS_ADMIN or privlidged so it can call mount? | 03:16 |
cliles | in a fresh install I'm getting errors unable to do nfs mount | 03:17 |
Jeffrey4l | cliles, yes. this patch is fixing this https://review.openstack.org/427268 | 03:18 |
cliles | Jeffrey4l: ty!!!!!!!!!!!!!!!11 | 03:20 |
*** sayantani01 has joined #openstack-kolla | 03:20 | |
openstackgerrit | Merged openstack/kolla-ansible master: Implement nova placement service https://review.openstack.org/427715 | 03:20 |
openstackgerrit | Merged openstack/kolla-ansible master: Fix typo in cloudkitty register.yml file https://review.openstack.org/428121 | 03:21 |
*** mattmceuen has quit IRC | 03:25 | |
*** crushil has joined #openstack-kolla | 03:25 | |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla-ansible master: Fix gnocchi auth issue https://review.openstack.org/428124 | 03:28 |
*** zhurong_ has joined #openstack-kolla | 03:36 | |
*** zhurong has quit IRC | 03:38 | |
*** sdake has quit IRC | 03:41 | |
*** crushil has quit IRC | 03:41 | |
*** mdnadeem has quit IRC | 03:42 | |
*** l4yerffeJ_ has quit IRC | 03:52 | |
*** l4yerffeJ_ has joined #openstack-kolla | 03:53 | |
*** hfu has quit IRC | 04:00 | |
*** Pavo has quit IRC | 04:01 | |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla-ansible master: [TEST][MASTER][KOLLA-ANSIBLE] https://review.openstack.org/422786 | 04:02 |
*** hfu has joined #openstack-kolla | 04:02 | |
*** Pavo has joined #openstack-kolla | 04:06 | |
*** crushil has joined #openstack-kolla | 04:07 | |
*** sdake has joined #openstack-kolla | 04:08 | |
*** zhurong_ has quit IRC | 04:11 | |
*** mdnadeem has joined #openstack-kolla | 04:11 | |
*** sdake_ has joined #openstack-kolla | 04:11 | |
*** sdake has quit IRC | 04:12 | |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla master: Using CI mirror host https://review.openstack.org/365721 | 04:14 |
cliles | ok, so anything hanging around w/ libvirt? | 04:18 |
openstackgerrit | Merged openstack/kolla-ansible master: Use required_if in kolla_docker.py https://review.openstack.org/423788 | 04:18 |
cliles | I'm getting "libvirtError: Did not receive a reply." when launching anything on a fresh install | 04:19 |
*** mattmceuen has joined #openstack-kolla | 04:21 | |
*** lrensing has quit IRC | 04:21 | |
*** sayantani01 has quit IRC | 04:26 | |
openstackgerrit | Merged openstack/kolla-ansible master: External_fqdn for host_href in barbican.conf https://review.openstack.org/426697 | 04:31 |
*** crushil has quit IRC | 04:33 | |
*** crushil has joined #openstack-kolla | 04:33 | |
cliles | well if anyone can take a look at my my issue with nova/libvir on fresh install from master I'd appreciate it http://paste.openstack.org/show/khfSMD0r6kP6KB7UMNDD/ | 04:36 |
*** crushil has quit IRC | 04:39 | |
*** crushil has joined #openstack-kolla | 04:41 | |
Jeffrey4l | cliles, selinux? | 04:45 |
Jeffrey4l | could u try to disable selinux? | 04:45 |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla master: Using CI mirror host https://review.openstack.org/365721 | 04:52 |
*** sudipto has joined #openstack-kolla | 04:58 | |
*** sudipto_ has joined #openstack-kolla | 04:59 | |
*** mattmceuen has quit IRC | 05:00 | |
*** salv-orlando has joined #openstack-kolla | 05:04 | |
*** salv-orlando has quit IRC | 05:09 | |
*** sudipto_ has quit IRC | 05:13 | |
*** sudipto has quit IRC | 05:13 | |
*** adrian_otto has joined #openstack-kolla | 05:14 | |
*** crushil has quit IRC | 05:16 | |
*** crushil has joined #openstack-kolla | 05:16 | |
cliles | Jeffrey4l: success! | 05:20 |
cliles | I thought selinux was supported? | 05:20 |
Jeffrey4l | cliles, cool. which docker version are u using? | 05:20 |
cliles | 1.13.0 | 05:20 |
Jeffrey4l | there are some unknown issue. i tried deploy kolla w/ selinux, it works. | 05:21 |
Jeffrey4l | no idea why it failed recently. | 05:21 |
cliles | is there already a bug for selinux open? | 05:22 |
Jeffrey4l | cliles, no could u file one? | 05:22 |
Jeffrey4l | moreover, could u attache you audit.log file in the bug description? | 05:22 |
cliles | in kolla or kolla-ansible? | 05:22 |
Jeffrey4l | kolla. | 05:22 |
Jeffrey4l | wait. kolla-ansible is better. | 05:23 |
cliles | ok | 05:23 |
Jeffrey4l | thanks. | 05:23 |
*** skramaja has joined #openstack-kolla | 05:30 | |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla master: [TEST][MASTER][KOLLA] test docker engine 1.13 https://review.openstack.org/428577 | 05:31 |
*** sayantani01 has joined #openstack-kolla | 05:33 | |
cliles | Jeffrey4l: I opened it and attached | 05:39 |
cliles | Would you be able to help me get some eyes on an older bug of mine please? https://bugs.launchpad.net/kolla/+bug/1654133 | 05:39 |
openstack | Launchpad bug 1654133 in kolla "horizon dashboard broken in master with centos binaries" [Undecided,New] | 05:39 |
Jeffrey4l | cliles, selinux issue bug link? | 05:40 |
inc0 | Jeffrey4l, https://review.openstack.org/#/c/427931/ thoughts about this idea? | 05:40 |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla master: [TEST][MASTER][KOLLA] test docker engine 1.13 https://review.openstack.org/428577 | 05:40 |
Jeffrey4l | have u ever tried the horizon dashboard, recently? | 05:40 |
cliles | I just build and deployed today, so yeah | 05:41 |
Jeffrey4l | inc0, any benefit for this? why we do not setup our own? | 05:41 |
Jeffrey4l | it will cause the size increase. | 05:41 |
inc0 | Jeffrey4l, ubuntu was broken for 2 months because we failed to notice old version of xtrabackup | 05:41 |
Jeffrey4l | and do not support oraclelinux/ again.. | 05:41 |
inc0 | we will never be as good as mariadb in supporting mariadb | 05:41 |
cliles | jeffrey4l: selinux bug is at https://bugs.launchpad.net/kolla-ansible/+bug/1661500 | 05:42 |
openstack | Launchpad bug 1661500 in kolla-ansible "selinux blocks libvirt from spawning instances" [Undecided,New] | 05:42 |
Jeffrey4l | do not check the details. but mariadb official image support gelara? | 05:42 |
inc0 | yes | 05:42 |
inc0 | as of version 10.1 official mariadb has galera | 05:42 |
Jeffrey4l | hrm.. add more test will find the issue ASAP. | 05:43 |
Jeffrey4l | what about the image total size and oraclelinux/centos image support for this case? | 05:43 |
inc0 | well we take distro that's given to us | 05:44 |
inc0 | I'm not sure if it's bad as long as it's well maintained | 05:44 |
inc0 | image total size isn't an issue imho | 05:44 |
inc0 | this thing builds in couple seconds | 05:44 |
inc0 | thing is, versions are going to be well maintained, all the packages will be present | 05:45 |
inc0 | and for example (according to SamYaple) rabbimq uses better version of erlang which for example doesn't have this IP parsing issue | 05:46 |
Jeffrey4l | "we take distro that's given to us" means do not care about centos/oracle, or maintain our edition? | 05:46 |
inc0 | so I would like to hear about why should we care about this distro? | 05:47 |
inc0 | I mean, it's about who maintain packages | 05:47 |
inc0 | some like rdo, some like debian | 05:47 |
Jeffrey4l | higher version is better, in most of case. we can install higher infra service, with some extra repo. | 05:47 |
inc0 | but in case of for example mariadb, packages comes from mariadb itself | 05:47 |
inc0 | yeah, but we need to maintain this repo list and so on | 05:48 |
inc0 | like remember when percona messed up their ssl key? | 05:48 |
inc0 | with my approach we wouldn't even feel it | 05:48 |
inc0 | also our gates becomes much more stable as we will almost stop using any external repos besides dockerhub (we'll pull built images) | 05:49 |
Jeffrey4l | re distro, some one really care. for example, some guys works on power support, who care debian only. | 05:50 |
inc0 | then they could host their own images in upstream docker | 05:50 |
inc0 | and use it as base for us | 05:50 |
inc0 | like, this FROM mariadb can be editable | 05:50 |
Jeffrey4l | inc0, re " using any external repos besides dockerhub" it is impossible. we depends on rdo, cloud-archive, at least. | 05:50 |
inc0 | and you can put your own image there | 05:50 |
inc0 | why? for source builds we don't need it | 05:51 |
Jeffrey4l | inc0, then how to setup those image? what the specification to build thoese image, which works with kolla? | 05:51 |
inc0 | only one real spec - they have to have all the packages installed | 05:51 |
inc0 | and we will mainain code to "kolla'ize" them | 05:52 |
inc0 | much like in patchset | 05:52 |
Jeffrey4l | inc0, 1. that's another topic, do u really wanna remove binary install type? 2. except that, there are some infra service which do not provide base image, or at least a stable image. | 05:52 |
*** sp__ has joined #openstack-kolla | 05:52 | |
inc0 | btw Jeffrey4l are you coming to PTG? | 05:52 |
Jeffrey4l | inc0, no ;( | 05:52 |
Jeffrey4l | inc0, how do defined "all packages"? | 05:53 |
inc0 | Jeffrey4l, for those sevices without base image - we do what we do today | 05:53 |
inc0 | like in mariadb - it's all the mariadb packages, it's deps, xtrabackup stuff and so on | 05:53 |
Jeffrey4l | when define "all packages", we have to sync to mariadb's official dockerfile. | 05:53 |
inc0 | that's what I did | 05:54 |
inc0 | and if someone wants some custom stuff | 05:54 |
inc0 | they can do the same | 05:54 |
openstackgerrit | Merged openstack/kolla-ansible master: Revert "corrects invalid logrotate option maxsize" https://review.openstack.org/427642 | 05:54 |
inc0 | for example, power guys could fork official mariadb image and make it power | 05:54 |
inc0 | or for example if something doesn't have debian base, they could build their debian base for this thing | 05:55 |
Jeffrey4l | hrm, it will cause more issue in the future. for example, some mariadb guys make some change, and we do not know, and case cause kolla/kolla-ansible failed. | 05:55 |
inc0 | this way we would only need to care about packages required for openstack services | 05:55 |
inc0 | so far we made kolla-ansible failed | 05:55 |
inc0 | because we couldn't follow the versions of xtrabackup | 05:55 |
Jeffrey4l | sorry? how kolla-ansible failed? | 05:55 |
inc0 | ubuntu was broken | 05:56 |
Jeffrey4l | oh right. | 05:56 |
Jeffrey4l | if we have test for this, we can found it ASAP. | 05:56 |
inc0 | well, but we didn't | 05:56 |
Jeffrey4l | the really issue is: we haven't such test. | 05:56 |
Jeffrey4l | deploy external issue do not guarantee this, too. | 05:56 |
inc0 | also, can you say with 100% certenty that for example rabbimq (we pin version remember?) didnt have critical security patch? | 05:56 |
Jeffrey4l | maybe it guarantee the version number of the packages. | 05:57 |
Jeffrey4l | but it do not guarantee whether kolla-ansible configure it in right way. | 05:57 |
Jeffrey4l | we still need better test. | 05:57 |
inc0 | what I'm saying is to not own every service we have | 05:57 |
inc0 | because we don't have capacity to maintain all of them properly | 05:57 |
Jeffrey4l | inc0, re rabbitmq, absolutely no | 05:58 |
Jeffrey4l | inc0, so rdo team and ubuntu cloud archive team maintain this :) | 05:58 |
inc0 | I'm sure rabbitmq community will know how to handle that stuff | 05:58 |
Jeffrey4l | we do not care about this, imo. | 05:58 |
inc0 | ubuntu didn't maintain mariadb:/ | 05:58 |
inc0 | well, anyway, think about it | 05:58 |
inc0 | it's small revolution, but I think we need to lower scope of our project | 05:59 |
Jeffrey4l | on other hand, why from mariadb:10.1, when we bump the number? | 05:59 |
Jeffrey4l | it is almost the same issue? | 05:59 |
inc0 | when we feel comfortable | 05:59 |
Jeffrey4l | s/?/./ | 05:59 |
inc0 | not really | 05:59 |
inc0 | because security patches and so on will land into container anyway | 05:59 |
Jeffrey4l | from official image only guarantee the package version is correct. | 06:00 |
*** Pavo has quit IRC | 06:01 | |
Jeffrey4l | the official image build from some repo too. if we use that repo. then the security patches is landed. | 06:01 |
inc0 | yeah, but if we use same repo...why not use whole image? | 06:01 |
*** MasterOfBugs has joined #openstack-kolla | 06:01 | |
inc0 | I hear more and more issues regarding our images | 06:01 |
inc0 | and I agree with some of them | 06:01 |
inc0 | what was good idea 2 years ago, might not be good any more | 06:02 |
inc0 | anyway, think about this a bit | 06:02 |
inc0 | we'll have session in PTG about images too | 06:02 |
Jeffrey4l | https://github.com/docker-library/mariadb/blob/b558f64b736650b94df9a90e68ff9e3bc03d4bdb/10.1/Dockerfile it come from deb https://repo.percona.com/apt jessie main | 06:02 |
openstackgerrit | qiankun.zhang proposed openstack/kolla master: Install tacker-horizon into horizon image https://review.openstack.org/407810 | 06:03 |
Jeffrey4l | ok. | 06:03 |
Jeffrey4l | check the official dockerfile, there is nothing special. except that he use two extra mariadb repo. | 06:04 |
inc0 | yeah, I know | 06:04 |
inc0 | just, you'll never know | 06:04 |
inc0 | and there might be something special | 06:04 |
inc0 | instead of copying | 06:04 |
*** pramodrj07 has joined #openstack-kolla | 06:04 | |
inc0 | I'd rather trust them | 06:04 |
openstackgerrit | qiankun.zhang proposed openstack/kolla master: Install tacker-horizon into horizon image https://review.openstack.org/407810 | 06:05 |
*** MasterOfBugs has quit IRC | 06:05 | |
*** Pavo has joined #openstack-kolla | 06:05 | |
*** salv-orlando has joined #openstack-kolla | 06:05 | |
Jeffrey4l | depends on official repo, at first ;) | 06:05 |
inc0 | https://github.com/docker-library/rabbitmq/blob/master/debian/Dockerfile | 06:06 |
inc0 | rabbitmq is slightly more complex | 06:06 |
inc0 | they use newer erlang | 06:06 |
Jeffrey4l | i think we can. | 06:06 |
inc0 | yeah ofc we can copy their approach | 06:07 |
inc0 | I just think if we should | 06:07 |
inc0 | or rather focus on keeping openstack packages top notch | 06:07 |
inc0 | number of infra images will only grow | 06:07 |
inc0 | I would like to focus on monitoring next release | 06:08 |
inc0 | at some point we'll just have too much to handle | 06:08 |
Jeffrey4l | on the other hand, i think another approach. kolla should build the image separately. for example, mariadb is no need to release every 6 month. | 06:08 |
inc0 | security updates | 06:09 |
inc0 | you never know when you need new mariadb | 06:09 |
*** salv-orlando has quit IRC | 06:10 | |
Jeffrey4l | i think mariadb offical image do not know too. they depends on repo. and maybe build the image periodic. | 06:10 |
Jeffrey4l | or build the image when dockerfile changed. | 06:10 |
Jeffrey4l | no one knows when the repo is updated. | 06:12 |
inc0 | well...mariadb people knows;) | 06:12 |
inc0 | but well, it's just an idea | 06:12 |
Jeffrey4l | and mariadb offical image do not mean mariadb developer team/mariadb package guys. | 06:13 |
Jeffrey4l | the contributors are https://github.com/docker-library/mariadb/graphs/contributors | 06:13 |
*** crushil has quit IRC | 06:13 | |
Jeffrey4l | i guess most of them are work in docker company. | 06:13 |
*** saneax-_-|AFK is now known as saneax | 06:18 | |
*** inc0 has quit IRC | 06:19 | |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla master: [TEST][MASTER][KOLLA] test docker engine 1.13 https://review.openstack.org/428577 | 06:21 |
openstackgerrit | Vladislav Belogrudov proposed openstack/kolla master: Containerized sshd does not work with older PAM https://review.openstack.org/413030 | 06:29 |
openstackgerrit | lyanchih proposed openstack/kolla-ansible master: Secret generate fail with hostvars is undefined https://review.openstack.org/417331 | 06:33 |
*** prameswar has quit IRC | 06:36 | |
*** unicell has joined #openstack-kolla | 06:41 | |
*** zhurong has joined #openstack-kolla | 06:45 | |
openstackgerrit | t.goto proposed openstack/kolla-ansible master: Fix typo in cinder role's handler task. https://review.openstack.org/428599 | 06:48 |
sdake_ | mariadb for centos is best provided by the distribution, not mariadb | 06:52 |
sdake_ | and on that note, I am off to bed | 06:52 |
*** sdake_ has quit IRC | 06:52 | |
*** satyar has joined #openstack-kolla | 06:52 | |
*** salv-orlando has joined #openstack-kolla | 06:57 | |
*** unicell1 has joined #openstack-kolla | 06:57 | |
*** unicell has quit IRC | 06:59 | |
*** hieulq has joined #openstack-kolla | 07:02 | |
*** sayantani01 has quit IRC | 07:07 | |
*** sayantani01 has joined #openstack-kolla | 07:07 | |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla-ansible master: Fix the pid_mode and ipc_mode value check for kolla_docker module https://review.openstack.org/428606 | 07:09 |
*** jrobinson has quit IRC | 07:13 | |
*** adrian_otto has quit IRC | 07:20 | |
*** bmace_ has quit IRC | 07:21 | |
*** bmace_ has joined #openstack-kolla | 07:21 | |
*** adrian_otto has joined #openstack-kolla | 07:26 | |
*** athomas has joined #openstack-kolla | 07:28 | |
*** adrian_otto has quit IRC | 07:33 | |
*** sayantani01 has quit IRC | 07:48 | |
*** sayantani01 has joined #openstack-kolla | 07:48 | |
*** salv-orl_ has joined #openstack-kolla | 07:49 | |
*** salv-orlando has quit IRC | 07:51 | |
*** hieulq has quit IRC | 07:54 | |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla-ansible master: Fix the pid_mode and ipc_mode value check for kolla_docker module https://review.openstack.org/428606 | 07:55 |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla-ansible master: Fix the pid_mode and ipc_mode value check for kolla_docker module https://review.openstack.org/428606 | 07:56 |
*** unicell1 has quit IRC | 07:57 | |
*** prameswar has joined #openstack-kolla | 07:59 | |
*** matrohon has joined #openstack-kolla | 08:00 | |
*** Pavo has quit IRC | 08:01 | |
*** hieulq has joined #openstack-kolla | 08:03 | |
*** salv-orl_ has quit IRC | 08:04 | |
*** salv-orlando has joined #openstack-kolla | 08:04 | |
*** Pavo has joined #openstack-kolla | 08:05 | |
*** salv-orlando has quit IRC | 08:08 | |
*** hieulq has quit IRC | 08:13 | |
*** magicboiz has joined #openstack-kolla | 08:14 | |
*** pramodrj07 has quit IRC | 08:18 | |
*** hieulq has joined #openstack-kolla | 08:21 | |
*** Serlex has joined #openstack-kolla | 08:31 | |
*** sayantani01 has quit IRC | 08:33 | |
*** egonzalez has joined #openstack-kolla | 08:38 | |
*** mannamne has joined #openstack-kolla | 08:38 | |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla master: Using CI mirror host https://review.openstack.org/365721 | 08:43 |
*** hieulq has quit IRC | 08:45 | |
Jeffrey4l | egonzalez, could u review this https://review.openstack.org/#/c/428606/ first? | 08:45 |
Jeffrey4l | ubuntu + binary for the nova package issue. other failed cause by kolla images ( with placment api ) is not updated, with unknown reason. | 08:45 |
Jeffrey4l | when another kolla patch is merged. the kolla images in tallballs.o.o site will be updated. | 08:46 |
*** sudipto has joined #openstack-kolla | 08:48 | |
*** sudipto_ has joined #openstack-kolla | 08:48 | |
openstackgerrit | Vladislav Belogrudov proposed openstack/kolla master: Containerized sshd does not work with older PAM https://review.openstack.org/413030 | 08:49 |
Jeffrey4l | egonzalez, do u have any idea to explain this ? https://review.openstack.org/428577 | 08:50 |
Jeffrey4l | after move the /docker file to /tmp/docker, docker-engine 1.13.0 works ;( | 08:51 |
openstackgerrit | Merged openstack/kolla-ansible master: Fix the pid_mode and ipc_mode value check for kolla_docker module https://review.openstack.org/428606 | 08:51 |
*** mannamne has quit IRC | 08:52 | |
openstackgerrit | Zeyu Zhu proposed openstack/kolla-ansible master: Remove unnecessary import in kolla_toolbox.py https://review.openstack.org/428535 | 08:54 |
*** shardy has joined #openstack-kolla | 08:54 | |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla master: [TEST][MASTER][KOLLA] https://review.openstack.org/426625 | 08:54 |
*** hieulq has joined #openstack-kolla | 08:56 | |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla master: Remove include_header and include_footer in all Dockerfiles https://review.openstack.org/428017 | 08:59 |
egonzalez | Jeffrey4l: https://github.com/docker/docker/issues/30586 | 09:24 |
Jeffrey4l | egonzalez, aha, thanks. docker really create /docker. hrm | 09:25 |
openstackgerrit | Merged openstack/kolla-ansible master: Remove hardcode /etc/kolla path https://review.openstack.org/426827 | 09:26 |
egonzalez | Jeffrey4l: btw, docker ps, docker images and "old" docker commands are deprecated in 1.13 and removed in the next version | 09:31 |
egonzalez | the next version will need to pin point to a 1.13 as minimal | 09:32 |
Jeffrey4l | egonzalez, why? just docker cli change, the api should be stable. | 09:32 |
Jeffrey4l | kolla-ansible is using docker api rather than docker cli. | 09:33 |
egonzalez | the API yes, more for scripts | 09:33 |
egonzalez | and some ansible task run docker exec which is also in deprecation | 09:34 |
*** skuda has joined #openstack-kolla | 09:34 | |
Jeffrey4l | yep. we need find a more reasonable way to support docker since 1.10. | 09:34 |
*** athomas has quit IRC | 09:34 | |
Jeffrey4l | btw, the kolla_toolbox.py module is using api rather than docker exec now. | 09:35 |
Jeffrey4l | so there are few task is just docker exec directly, which we can move to kolla_toolbox module. :) | 09:35 |
*** mgoddard_ has joined #openstack-kolla | 09:37 | |
*** hrw has quit IRC | 09:37 | |
*** haplo37 has quit IRC | 09:40 | |
*** haplo37 has joined #openstack-kolla | 09:42 | |
*** hrw has joined #openstack-kolla | 09:43 | |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla master: support docker engine 1.13 in gate https://review.openstack.org/428577 | 09:44 |
*** prameswar has quit IRC | 09:44 | |
*** hfu has quit IRC | 09:47 | |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla master: support docker engine 1.13 in gate https://review.openstack.org/428577 | 09:54 |
*** zhurong has quit IRC | 09:55 | |
*** erlon has joined #openstack-kolla | 09:57 | |
*** haplo37 has quit IRC | 09:58 | |
*** gfidente has joined #openstack-kolla | 09:58 | |
*** gfidente has quit IRC | 09:58 | |
*** gfidente has joined #openstack-kolla | 09:58 | |
*** Pavo has quit IRC | 10:01 | |
*** satyar has quit IRC | 10:01 | |
*** magicboiz has quit IRC | 10:05 | |
openstackgerrit | Merged openstack/kolla master: Install tacker-horizon into horizon image https://review.openstack.org/407810 | 10:05 |
*** Pavo has joined #openstack-kolla | 10:05 | |
*** salv-orlando has joined #openstack-kolla | 10:06 | |
*** haplo37 has joined #openstack-kolla | 10:07 | |
*** magicboiz has joined #openstack-kolla | 10:07 | |
*** sp__ has quit IRC | 10:11 | |
*** salv-orlando has quit IRC | 10:11 | |
*** sambetts|afk is now known as sambetts | 10:27 | |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla-ansible master: Fix gnocchi auth issue https://review.openstack.org/428124 | 10:27 |
*** pbourke has quit IRC | 10:34 | |
*** mannamne has joined #openstack-kolla | 10:34 | |
*** zhubingbing_ has quit IRC | 10:36 | |
*** hieulq has quit IRC | 10:39 | |
*** jascott1 has quit IRC | 10:54 | |
*** jascott1 has joined #openstack-kolla | 10:55 | |
*** jascott1 has quit IRC | 10:59 | |
openstackgerrit | Eduardo Gonzalez proposed openstack/kolla-ansible master: Integrate designate with neutron https://review.openstack.org/424679 | 11:07 |
*** salv-orlando has joined #openstack-kolla | 11:08 | |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla master: support docker engine 1.13 in gate https://review.openstack.org/428577 | 11:10 |
*** salv-orlando has quit IRC | 11:12 | |
*** hfu has joined #openstack-kolla | 11:13 | |
*** hfu has quit IRC | 11:16 | |
*** sdake has joined #openstack-kolla | 11:18 | |
*** athomas has joined #openstack-kolla | 11:21 | |
*** salv-orlando has joined #openstack-kolla | 11:25 | |
*** rmart04 has joined #openstack-kolla | 11:28 | |
*** timss has quit IRC | 11:30 | |
*** hfu has joined #openstack-kolla | 11:30 | |
*** timss has joined #openstack-kolla | 11:30 | |
openstackgerrit | Merged openstack/kolla master: Containerized sshd does not work with older PAM https://review.openstack.org/413030 | 11:35 |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla-ansible master: [wip] enable ceilometer related project in gate https://review.openstack.org/412278 | 11:40 |
*** narasimha_SV has joined #openstack-kolla | 11:40 | |
*** sdake_ has joined #openstack-kolla | 11:42 | |
*** sdake has quit IRC | 11:46 | |
*** magicboiz has quit IRC | 11:51 | |
*** zhubingbing has joined #openstack-kolla | 11:53 | |
*** hfu has quit IRC | 11:53 | |
narasimha_SV | as per this code http://paste.openstack.org/show/597540/ | 11:54 |
narasimha_SV | in ceilometer.conf there will be 2 mongodb ips in the connection variables | 11:54 |
narasimha_SV | will this work ??? | 11:55 |
narasimha_SV | i have 2 controllers | 11:55 |
*** crushil has joined #openstack-kolla | 11:56 | |
*** Pavo has quit IRC | 12:01 | |
egonzalez | narasimha_SV: yep, is a list of mongo hosts | 12:02 |
*** pbourke has joined #openstack-kolla | 12:03 | |
*** kristian__ has joined #openstack-kolla | 12:03 | |
egonzalez | what at the end is mongo://ceilometer:password@host1,host2/ceilometer | 12:03 |
narasimha_SV | yes | 12:04 |
narasimha_SV | it is like that only | 12:04 |
narasimha_SV | will that work ?? | 12:04 |
egonzalez | yes, is how mongodb work | 12:04 |
narasimha_SV | ok | 12:04 |
narasimha_SV | if we enable aodh will ceilometer commands work ?? | 12:04 |
*** Pavo has joined #openstack-kolla | 12:05 | |
*** rwallner has joined #openstack-kolla | 12:06 | |
*** sudipto has quit IRC | 12:07 | |
*** sudipto_ has quit IRC | 12:07 | |
*** rwallner has quit IRC | 12:08 | |
*** rwallner has joined #openstack-kolla | 12:09 | |
*** dave-mccowan has joined #openstack-kolla | 12:10 | |
*** rhallisey has joined #openstack-kolla | 12:10 | |
*** rwallner has quit IRC | 12:12 | |
*** rwallner has joined #openstack-kolla | 12:12 | |
*** mliima has joined #openstack-kolla | 12:14 | |
openstackgerrit | Eduardo Gonzalez proposed openstack/kolla-ansible master: Remove hardcoded usernames in register.yml https://review.openstack.org/428713 | 12:22 |
*** sdake has joined #openstack-kolla | 12:28 | |
*** eaguilar has joined #openstack-kolla | 12:28 | |
*** sdake_ has quit IRC | 12:30 | |
*** satyar has joined #openstack-kolla | 12:31 | |
*** eaguilar has quit IRC | 12:33 | |
*** eaguilar has joined #openstack-kolla | 12:36 | |
*** schwicht has joined #openstack-kolla | 12:40 | |
*** skramaja has quit IRC | 12:43 | |
*** eaguilar_ has joined #openstack-kolla | 12:44 | |
*** eaguilar has quit IRC | 12:47 | |
*** rwallner has quit IRC | 12:49 | |
*** mkoderer has joined #openstack-kolla | 12:49 | |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla master: support docker engine 1.13 in gate https://review.openstack.org/428577 | 12:51 |
*** athomas has quit IRC | 12:52 | |
*** athomas has joined #openstack-kolla | 12:52 | |
openstackgerrit | Eduardo Gonzalez proposed openstack/kolla-ansible master: Apply new register method https://review.openstack.org/428717 | 12:52 |
*** rwallner has joined #openstack-kolla | 12:53 | |
*** rhallisey has quit IRC | 12:56 | |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla-ansible master: Remove unnecessary until in register.yml file https://review.openstack.org/428719 | 13:04 |
*** zhurong has joined #openstack-kolla | 13:09 | |
Jeffrey4l | egonzalez, whether did you read the info about docker exec deprecated? | 13:11 |
*** eaguilar_ has quit IRC | 13:11 | |
egonzalez | Jeffrey4l: yesterday I was in a local docker meetup about whats new in docker 1.13 | 13:12 |
Jeffrey4l | egonzalez, i do not found anything about the deprecated in the release note and this link https://docs.docker.com/engine/deprecated/ | 13:12 |
Jeffrey4l | i doubt that now.. | 13:12 |
*** eaguilar has joined #openstack-kolla | 13:16 | |
*** sudipto has joined #openstack-kolla | 13:20 | |
*** sudipto_ has joined #openstack-kolla | 13:20 | |
*** salv-orlando has quit IRC | 13:24 | |
*** jheroux has joined #openstack-kolla | 13:26 | |
*** g3ek has quit IRC | 13:28 | |
openstackgerrit | Serguei Bezverkhi proposed openstack/kolla-kubernetes master: WIP Adding compute-kit chart https://review.openstack.org/428150 | 13:31 |
*** crushil has quit IRC | 13:32 | |
alanmeadows | qwang: updated https://etherpad.openstack.org/p/openstack-on-helm | 13:32 |
*** rhallisey has joined #openstack-kolla | 13:32 | |
egonzalez | Jeffrey4l: yeah, there is no deprecation message, guess the guy mean that are replaced and will deprecate in next releases | 13:32 |
*** eaguilar has quit IRC | 13:33 | |
*** shardy is now known as shardy_mtg | 13:34 | |
*** g3ek has joined #openstack-kolla | 13:37 | |
Jeffrey4l | maybe | 13:37 |
Jeffrey4l | or he may mean "docker container xxx" command? https://docs.docker.com/engine/reference/commandline/container/ | 13:38 |
*** eaguilar has joined #openstack-kolla | 13:41 | |
openstackgerrit | Eduardo Gonzalez proposed openstack/kolla stable/newton: Make sure ceilometer/service_credentials wotks with internalURL https://review.openstack.org/428728 | 13:45 |
*** crushil has joined #openstack-kolla | 13:53 | |
*** eaguilar has quit IRC | 13:56 | |
*** lamt has joined #openstack-kolla | 13:56 | |
*** goldyfruit has joined #openstack-kolla | 13:57 | |
*** crushil has quit IRC | 14:00 | |
*** Pavo has quit IRC | 14:01 | |
*** rwallner has quit IRC | 14:02 | |
zhubingbing | hello guys | 14:03 |
*** Pavo has joined #openstack-kolla | 14:05 | |
pbourke | egonzalez: hey thanks for looking at the skip-parents patch. Any chance you could try running the tests locally (tox -epy27)? I can't reproduce the failures the gate is seeing... | 14:10 |
*** shardy_mtg is now known as shardy | 14:11 | |
*** rwallner has joined #openstack-kolla | 14:12 | |
*** crushil has joined #openstack-kolla | 14:12 | |
*** lamt has quit IRC | 14:13 | |
*** lrensing has joined #openstack-kolla | 14:19 | |
openstackgerrit | Serguei Bezverkhi proposed openstack/kolla-kubernetes master: WIP Adding compute-kit chart https://review.openstack.org/428150 | 14:19 |
*** athomas has quit IRC | 14:20 | |
*** TxGirlGeek has joined #openstack-kolla | 14:22 | |
*** jtriley has joined #openstack-kolla | 14:24 | |
*** zioproto has joined #openstack-kolla | 14:26 | |
egonzalez | pbourke: works for me too | 14:26 |
pbourke | egonzalez: :/ | 14:26 |
*** athomas has joined #openstack-kolla | 14:26 | |
pbourke | strange thing is the first time it failed I could reproduce it in a xenial container, but now cant reproduce anywhere | 14:27 |
pbourke | will play around with it some more | 14:27 |
*** andyjones2001 has quit IRC | 14:28 | |
*** satyar has quit IRC | 14:31 | |
*** lrensing has quit IRC | 14:32 | |
*** rmart04 has quit IRC | 14:35 | |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla-ansible master: [TEST][MASTER][KOLLA-ANSIBLE] https://review.openstack.org/422786 | 14:35 |
*** lrensing has joined #openstack-kolla | 14:40 | |
*** lamt has joined #openstack-kolla | 14:41 | |
*** srwilkers has joined #openstack-kolla | 14:41 | |
*** Pavo_ has joined #openstack-kolla | 14:41 | |
openstackgerrit | Serguei Bezverkhi proposed openstack/kolla-kubernetes master: WIP Adding compute-kit chart https://review.openstack.org/428150 | 14:43 |
*** eaguilar has joined #openstack-kolla | 14:45 | |
*** eaguilar has quit IRC | 14:46 | |
*** srwilkers has quit IRC | 14:47 | |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla-ansible master: [wip] test scenario2 in gate https://review.openstack.org/412279 | 14:50 |
*** eaguilar has joined #openstack-kolla | 14:53 | |
*** Pavo_ has quit IRC | 14:54 | |
*** prameswar has joined #openstack-kolla | 14:57 | |
*** lamt has quit IRC | 15:02 | |
*** haplo37_ has quit IRC | 15:09 | |
*** pcaruana has quit IRC | 15:11 | |
openstackgerrit | Merged openstack/kolla-ansible master: Remove hardcoded usernames in register.yml https://review.openstack.org/428713 | 15:12 |
*** haplo37_ has joined #openstack-kolla | 15:12 | |
prameswar | hello everyone , i am configuring koll-kubernetes and my development environment is ready. but how to install all openstack components ? | 15:13 |
prameswar | either manually one by one using "helm install stable/servicename" or is there any other method that will install default/(enable in global config) components ? or i have to use kolla-kubernetes binary ? | 15:13 |
*** rwallner has quit IRC | 15:14 | |
prameswar | what method you guys use for development environment ? | 15:14 |
*** pcaruana has joined #openstack-kolla | 15:17 | |
openstackgerrit | Serguei Bezverkhi proposed openstack/kolla-kubernetes master: WIP Adding compute-kit chart https://review.openstack.org/428150 | 15:18 |
*** saneax is now known as saneax-_-|AFK | 15:19 | |
*** adrian_otto has joined #openstack-kolla | 15:20 | |
sbezverk | prameswar: the easiest way is to install by service | 15:20 |
sbezverk | here is an example to install mariadb: helm install --debug helm/service/mariadb --namespace kolla --name mariadb --values ../kube-1_cloud.yaml | 15:21 |
sbezverk | but before you do that, you need to create a few things, like namespace, generate password, configmaps etc. | 15:22 |
sbezverk | please ping sdake, he has the latest steps to do it | 15:22 |
prameswar | ok then i think rest of think i need to follow from quick start guide and while installation of service i need to use helm instead of koll-kubernetes ? | 15:24 |
*** adrian_otto has quit IRC | 15:25 | |
sbezverk | prameswar: yes | 15:25 |
*** rwallner has joined #openstack-kolla | 15:25 | |
prameswar | ok thanks sbezverk :) i am trying that will ping here if i face any problem | 15:26 |
openstackgerrit | Eduardo Gonzalez proposed openstack/kolla-ansible master: Apply new register method https://review.openstack.org/428717 | 15:27 |
sbezverk | prameswar: sure thing and good luck | 15:28 |
*** matrohon has quit IRC | 15:29 | |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla-ansible master: [TEST][MASTER][KOLLA-ANSIBLE] https://review.openstack.org/422786 | 15:35 |
*** zhubingbing has quit IRC | 15:36 | |
*** dave-mccowan has quit IRC | 15:40 | |
*** eaguilar has quit IRC | 15:40 | |
*** salv-orlando has joined #openstack-kolla | 15:44 | |
openstackgerrit | Paul Bourke (pbourke) proposed openstack/kolla master: Allow the use of previously built parent images https://review.openstack.org/426322 | 15:46 |
*** lamt has joined #openstack-kolla | 15:48 | |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla-ansible master: [wip] test scenario2 in gate https://review.openstack.org/412279 | 15:50 |
*** l4yerffeJ_ has quit IRC | 15:51 | |
sdake | prameswar i will have a review up this weekend of a full script that works atleast with 1 master and 1 minion using the halcyon dev env - promise | 15:54 |
*** dave-mccowan has joined #openstack-kolla | 15:54 | |
sdake | prameswar for extra credit, i'll have documentation to go along with it :) | 15:54 |
openstackgerrit | Merged openstack/kolla stable/newton: Make sure ceilometer/service_credentials wotks with internalURL https://review.openstack.org/428728 | 15:54 |
prameswar | sdake : i am also trying ,if successful thn will help you in that :) | 15:57 |
pbourke | sdake: egonzalez: mandre: rhallisey: berendt: Daviey: you guys ok to merge this? https://review.openstack.org/#/c/425749/ | 15:59 |
berendt | pbourke: lgtm | 16:00 |
rhallisey | ya looks good | 16:00 |
*** Pavo has quit IRC | 16:00 | |
*** Pavo has joined #openstack-kolla | 16:05 | |
*** crushil has quit IRC | 16:06 | |
*** crushil has joined #openstack-kolla | 16:06 | |
*** sdake_ has joined #openstack-kolla | 16:07 | |
*** rhallisey has quit IRC | 16:08 | |
*** rhallisey has joined #openstack-kolla | 16:08 | |
*** sdake has quit IRC | 16:08 | |
*** sdake has joined #openstack-kolla | 16:09 | |
sdake | pbourke if its rendered on docs.oo in kolla-ansible i'm good with merging it | 16:10 |
sdake | pbourke i hve to go tho - sorry can't look right htis minute | 16:10 |
pbourke | sdake: does it render pre merge though? | 16:10 |
sdake | i will be availble in 2 hours | 16:10 |
sdake | it does indeed render per merge | 16:11 |
sdake | oh pre | 16:11 |
sdake | no not pre | 16:11 |
sdake | however - i think sant* had pushed her changese to kolla-ansible and it was approved - but can't confirm | 16:11 |
sdake | i really gotta go - dropping off irc- will be back | 16:11 |
pbourke | *pre* | 16:11 |
*** sdake has quit IRC | 16:12 | |
*** sdake_ has quit IRC | 16:12 | |
*** eaguilar has joined #openstack-kolla | 16:13 | |
pbourke | Jeffrey4l: any idea why the ansible gates aren't finding the placement image? | 16:14 |
Jeffrey4l | pbourke, yes. ubuntu + binary tarball is not uploaded. | 16:14 |
Jeffrey4l | sorry. centos + binary | 16:14 |
Jeffrey4l | the root cause it the timeout in zuul's post action is only 10 min, which is a little lower for kolla centos+binary registry tarball. | 16:15 |
Jeffrey4l | pbourke, this patch is increasing the timeout https://review.openstack.org/#/c/428740/ | 16:16 |
pbourke | Jeffrey4l: nice one thanks | 16:16 |
Jeffrey4l | np ;) | 16:16 |
*** kristian__ has quit IRC | 16:17 | |
*** egonzalez has quit IRC | 16:21 | |
*** prameswar has quit IRC | 16:23 | |
*** kristian__ has joined #openstack-kolla | 16:23 | |
*** kristian__ has quit IRC | 16:24 | |
*** kristian__ has joined #openstack-kolla | 16:28 | |
*** adrian_otto has joined #openstack-kolla | 16:28 | |
*** rwallner has quit IRC | 16:30 | |
*** zhurong has quit IRC | 16:34 | |
*** jrich523 has quit IRC | 16:35 | |
*** jrich523 has joined #openstack-kolla | 16:35 | |
*** eaguilar_ has joined #openstack-kolla | 16:36 | |
*** eaguilar has quit IRC | 16:38 | |
*** eaguila__ has joined #openstack-kolla | 16:38 | |
*** eaguilar_ has quit IRC | 16:41 | |
*** rwallner has joined #openstack-kolla | 16:43 | |
openstackgerrit | Merged openstack/kolla master: Remove skip-event-database parameter in ceilometer https://review.openstack.org/427548 | 16:44 |
kfox1111 | morning. | 16:45 |
*** mdnadeem has quit IRC | 16:49 | |
*** kristia__ has joined #openstack-kolla | 16:51 | |
*** adrian_otto has quit IRC | 16:51 | |
*** kristian__ has quit IRC | 16:53 | |
*** zioproto has quit IRC | 16:53 | |
*** satyar has joined #openstack-kolla | 16:55 | |
satyar | hi jeffrey4l | 16:55 |
satyar | just want to check if there is multiregional deployment support with kolla | 16:55 |
satyar | SamYaple | 16:57 |
kfox1111 | I don't think kolla-ansible currently natively supports it, but could probably still make it work with a bit of effort. | 16:58 |
satyar | kfox1111 any pointer will help | 17:00 |
openstackgerrit | Serguei Bezverkhi proposed openstack/kolla-kubernetes master: WIP Adding compute-kit chart https://review.openstack.org/428150 | 17:01 |
kfox1111 | I have little experience with the kolla-ansible stuff, but have looked through the code. | 17:01 |
sbezverk | kfox1111: good morning | 17:01 |
kfox1111 | one kolla-ansible install seems to only want to deal with a signle region. | 17:01 |
*** adrian_otto has joined #openstack-kolla | 17:02 | |
kfox1111 | so I would guess the easiest way might be install two parallel kolla-ansible's. in vm's or containers. then I think the rest might work. | 17:02 |
kfox1111 | sbezverk: hey | 17:02 |
*** athomas has quit IRC | 17:04 | |
des_consolado | guys what docker version are you using for kolla-kubernetes? | 17:04 |
sbezverk | des_consolado: 1.12.5 on my kube cluster | 17:05 |
openstackgerrit | Ian Kumlien proposed openstack/kolla-ansible master: [RFC] Push libvirt-guest settings to the container https://review.openstack.org/428815 | 17:07 |
SamYaple | satyar: ? | 17:09 |
*** g3ek has quit IRC | 17:15 | |
*** lamt has quit IRC | 17:19 | |
*** sambetts is now known as sambetts|afk | 17:20 | |
*** lamt has joined #openstack-kolla | 17:24 | |
*** g3ek has joined #openstack-kolla | 17:26 | |
*** eaguila__ has quit IRC | 17:32 | |
*** lamt has quit IRC | 17:35 | |
*** lamt has joined #openstack-kolla | 17:36 | |
*** dave-mccowan has quit IRC | 17:38 | |
*** shardy has quit IRC | 17:38 | |
qwang | alanmeadows: thank you very much. It looks much better now. I'll submit the abstract later today. | 17:40 |
*** inc0 has joined #openstack-kolla | 17:40 | |
inc0 | good morning | 17:41 |
*** kristian__ has joined #openstack-kolla | 17:41 | |
openstackgerrit | Serguei Bezverkhi proposed openstack/kolla-kubernetes master: WIP Adding compute-kit chart https://review.openstack.org/428150 | 17:41 |
sbezverk | inc0: good morning | 17:41 |
*** kristia__ has quit IRC | 17:44 | |
*** rwallner has quit IRC | 17:44 | |
*** rwallner has joined #openstack-kolla | 17:45 | |
*** rwallner has quit IRC | 17:47 | |
*** rwallner has joined #openstack-kolla | 17:47 | |
*** adrian_otto1 has joined #openstack-kolla | 17:48 | |
*** adrian_otto has quit IRC | 17:50 | |
*** mgoddard_ has quit IRC | 17:52 | |
*** kristian__ has quit IRC | 17:53 | |
*** Kimmo_ has quit IRC | 17:56 | |
*** tonyb has quit IRC | 17:56 | |
*** tonyb has joined #openstack-kolla | 17:56 | |
*** Kimmo_ has joined #openstack-kolla | 17:56 | |
*** SamYaple has quit IRC | 17:56 | |
*** devananda has quit IRC | 17:56 | |
*** jowisz_ has quit IRC | 17:56 | |
*** cinerama has quit IRC | 17:56 | |
*** kwazar has quit IRC | 17:56 | |
*** jgriffith has quit IRC | 17:56 | |
*** dmsimard has quit IRC | 17:56 | |
*** aimeeu has quit IRC | 17:56 | |
*** PyroMani has quit IRC | 17:56 | |
*** SamYaple has joined #openstack-kolla | 17:56 | |
*** jowisz has joined #openstack-kolla | 17:56 | |
*** kwazar has joined #openstack-kolla | 17:56 | |
*** dmsimard has joined #openstack-kolla | 17:56 | |
*** cinerama has joined #openstack-kolla | 17:56 | |
*** devananda has joined #openstack-kolla | 17:56 | |
*** dave-mccowan has joined #openstack-kolla | 17:57 | |
inc0 | ahh the day of splits | 17:57 |
inc0 | it's been a while | 17:57 |
*** PyroMani has joined #openstack-kolla | 17:57 | |
*** jgriffith has joined #openstack-kolla | 17:57 | |
*** DuncanT has quit IRC | 17:59 | |
*** DuncanT has joined #openstack-kolla | 18:00 | |
*** Pavo has quit IRC | 18:00 | |
*** jascott1 has joined #openstack-kolla | 18:02 | |
*** lamt has quit IRC | 18:03 | |
*** aimeeu has joined #openstack-kolla | 18:03 | |
*** jascott1 has quit IRC | 18:04 | |
*** Pavo has joined #openstack-kolla | 18:05 | |
*** sudipto has quit IRC | 18:07 | |
*** sudipto_ has quit IRC | 18:07 | |
*** penfold has joined #openstack-kolla | 18:10 | |
*** jascott1 has joined #openstack-kolla | 18:11 | |
*** lamt has joined #openstack-kolla | 18:12 | |
*** pc_m has quit IRC | 18:18 | |
*** rwallner_ has joined #openstack-kolla | 18:19 | |
*** rwallner has quit IRC | 18:22 | |
*** pc_m has joined #openstack-kolla | 18:22 | |
openstackgerrit | Serguei Bezverkhi proposed openstack/kolla-kubernetes master: WIP Adding compute-kit chart https://review.openstack.org/428150 | 18:24 |
*** Serlex has quit IRC | 18:30 | |
*** kristian__ has joined #openstack-kolla | 18:31 | |
*** imcsk8 has quit IRC | 18:32 | |
openstackgerrit | Kevin Fox proposed openstack/kolla-kubernetes master: Pull container tallballs into the gate https://review.openstack.org/426598 | 18:33 |
*** kristian__ has quit IRC | 18:36 | |
*** mannamne has quit IRC | 18:39 | |
*** mgoddard_ has joined #openstack-kolla | 18:45 | |
*** rwallner_ has quit IRC | 18:48 | |
*** rwallner has joined #openstack-kolla | 18:48 | |
*** rwallner has quit IRC | 18:53 | |
*** rwallner has joined #openstack-kolla | 18:55 | |
*** gfidente is now known as gfidente|afk | 18:56 | |
*** sdake has joined #openstack-kolla | 18:56 | |
*** TxGirlGeek has quit IRC | 18:57 | |
*** TxGirlGeek has joined #openstack-kolla | 18:57 | |
*** salv-orlando has quit IRC | 19:05 | |
*** TxGirlGeek has quit IRC | 19:06 | |
*** TxGirlGeek has joined #openstack-kolla | 19:07 | |
*** salv-orlando has joined #openstack-kolla | 19:08 | |
*** unicell has joined #openstack-kolla | 19:10 | |
*** inc0 has quit IRC | 19:11 | |
*** crushil has quit IRC | 19:15 | |
*** TxGirlGeek has quit IRC | 19:20 | |
*** TxGirlGeek has joined #openstack-kolla | 19:21 | |
*** lamt has quit IRC | 19:25 | |
*** eaguilar has joined #openstack-kolla | 19:25 | |
*** lamt has joined #openstack-kolla | 19:26 | |
*** lrensing has quit IRC | 19:29 | |
kfox1111 | sbezverk: if you are starting up the compute kit after the individual services after delete, | 19:32 |
kfox1111 | you probably still need to delete all the statefulsets. | 19:32 |
kfox1111 | I don't think they go away when you delete the k8s objects. | 19:32 |
*** mliima has quit IRC | 19:37 | |
satyar | kfox1111 i am getting gateway timeout while attaching volume | 19:44 |
satyar | is there anything i am missing in the nova.conf or cinder.conf | 19:45 |
kfox1111 | what kind of cinder backend? | 19:45 |
satyar | external iscsi | 19:45 |
kfox1111 | hmm... never tried that, so not really sure. | 19:48 |
kfox1111 | anything in the nova-compute logs? | 19:49 |
*** salv-orl_ has joined #openstack-kolla | 19:49 | |
satyar | http://paste.openstack.org/show/597615/ | 19:49 |
kfox1111 | hmm... | 19:51 |
kfox1111 | how about the cinder-api logs? | 19:51 |
*** narasimha_SV has quit IRC | 19:52 | |
*** salv-orlando has quit IRC | 19:52 | |
*** Marcellin__ has joined #openstack-kolla | 19:52 | |
*** skuda has quit IRC | 19:53 | |
*** inc0 has joined #openstack-kolla | 19:54 | |
*** adrian_otto1 has quit IRC | 19:55 | |
satyar | 1 sec | 19:56 |
*** adrian_otto has joined #openstack-kolla | 19:57 | |
satyar | kfox1111 there is no errors | 19:58 |
kfox1111 | how about cinder-volume? | 19:59 |
satyar | even no errors in volume.log | 19:59 |
kfox1111 | debugging turned on? | 19:59 |
satyar | nope | 19:59 |
satyar | enabling it | 19:59 |
kfox1111 | openstack's logs are not terribly useful without it. :/ | 19:59 |
*** Pavo has quit IRC | 20:01 | |
inc0 | hmm..I'm wondering...we don't really need fluentd without central logging enabled right? | 20:03 |
kfox1111 | yeah. without elasticsearch, no where for fluentd to push things. | 20:04 |
*** Pavo has joined #openstack-kolla | 20:05 | |
*** salv-orl_ has quit IRC | 20:05 | |
*** salv-orlando has joined #openstack-kolla | 20:06 | |
jascott1 | _o/ | 20:08 |
jascott1 | \/\ | 20:08 |
kfox1111 | hey | 20:09 |
jascott1 | ahoy? | 20:13 |
*** gfidente|afk has quit IRC | 20:14 | |
inc0 | that's...an productive conversation | 20:15 |
*** mannamne has joined #openstack-kolla | 20:16 | |
inc0 | I love our new mascot | 20:19 |
*** unicell has quit IRC | 20:20 | |
kfox1111 | ar the final mascots out? | 20:22 |
*** jtriley_ has joined #openstack-kolla | 20:22 | |
*** pramodrj07 has joined #openstack-kolla | 20:24 | |
openstackgerrit | Merged openstack/kolla-ansible master: Update links in documents https://review.openstack.org/428392 | 20:24 |
*** pramodrj07 has quit IRC | 20:24 | |
*** srwilkers has joined #openstack-kolla | 20:24 | |
srwilkers | afternoon o/ | 20:24 |
*** jtriley has quit IRC | 20:25 | |
*** MasterOfBugs has joined #openstack-kolla | 20:25 | |
*** jheroux has quit IRC | 20:26 | |
*** esmiurium has quit IRC | 20:26 | |
*** imcsk8 has joined #openstack-kolla | 20:28 | |
kfox1111 | srwilkers: hey. | 20:29 |
*** lrensing has joined #openstack-kolla | 20:30 | |
sbezverk | satyar: external iscsi for cinder will not work. currently cinder-volume uses tgtdadm command for colume management | 20:38 |
sbezverk | and these commands do not have abbility to attach and manage remote iscsi targets | 20:39 |
*** adrian_otto has quit IRC | 20:40 | |
kfox1111 | sbezverk: I'm guessing with kolla-ansible? | 20:40 |
openstackgerrit | Serguei Bezverkhi proposed openstack/kolla-kubernetes master: WIP Adding compute-kit chart https://review.openstack.org/428150 | 20:41 |
sbezverk | kfox1111: both | 20:41 |
sbezverk | basically cinder-volume container MUST be running on the same node hosting volume group and tgtd process running | 20:42 |
satyar | sbezverk so if i have tgtd container running then i guess that will only manage local iscsi | 20:45 |
sbezverk | correct | 20:45 |
satyar | is it required for external also? | 20:45 |
*** lrensing has quit IRC | 20:45 | |
sbezverk | satyar: I have never done external iscsi, maybe there are verndor specific drivers allowing to do it. I havenever seen them though | 20:46 |
satyar | i know we have external iscsci running and able to attach volume from icehouse | 20:46 |
satyar | is there any particular change gone in which blocked that feature | 20:47 |
*** lrensing has joined #openstack-kolla | 20:47 | |
*** skuda has joined #openstack-kolla | 20:47 | |
satyar | i am using zfs as iscsi storage | 20:48 |
kfox1111 | satyar: for kolla-kubernetes, we really haven't tested taht use case. if the config file is right though, there is a chance it would work. | 20:49 |
kfox1111 | and if the plugin was loaded into the container already. | 20:49 |
satyar | i am using kolla-ansivle | 20:49 |
satyar | ansible | 20:49 |
kfox1111 | I would guess kolla-ansible's support is more fleshed out there. | 20:49 |
kfox1111 | but have little experience with it. | 20:49 |
jascott1 | kfox1111 dont know they are out but snagged the link outta here the other day: https://drive.google.com/file/d/0B9SxQBJsT7y2Nnk0QjVnSTJ5Skg0NUxpcllvXzI2SXJYZHRr/view | 20:49 |
kfox1111 | jascott1: nice. :) | 20:50 |
jascott1 | better! | 20:50 |
kfox1111 | was just wondering, cause helm has an icon section, that would be nice to point at the official icons. :) | 20:50 |
*** kristian__ has joined #openstack-kolla | 20:50 | |
jascott1 | no doubt! | 20:51 |
jascott1 | someday it might be in a dashboard even | 20:51 |
*** kristian__ has quit IRC | 20:54 | |
kfox1111 | +1 | 20:55 |
sbezverk | jascott1: really nice!! btw thank you very much for the link you sent, the bootcamp recording is great! | 20:55 |
jascott1 | sbezverk glad to hear it! I enjoyed it also | 20:56 |
inc0 | I need this image | 21:01 |
inc0 | with a caption | 21:01 |
inc0 | U wot m8? | 21:01 |
inc0 | idk, this koala feels....badass | 21:01 |
kfox1111 | indeed. :) | 21:02 |
inc0 | I need some australian to write it in Aussie | 21:02 |
inc0 | you know this meme "u wot m8"? | 21:06 |
*** sdake has quit IRC | 21:06 | |
*** kristian__ has joined #openstack-kolla | 21:14 | |
*** satyar has quit IRC | 21:14 | |
*** kristian__ has quit IRC | 21:19 | |
kfox1111 | fascinating... https://hub.docker.com/r/libreoffice/online/ | 21:20 |
openstackgerrit | Serguei Bezverkhi proposed openstack/kolla-kubernetes master: WIP Adding compute-kit chart https://review.openstack.org/428150 | 21:21 |
*** mgoddard_ has quit IRC | 21:22 | |
*** crushil has joined #openstack-kolla | 21:26 | |
*** skuda has quit IRC | 21:26 | |
*** lrensing has quit IRC | 21:32 | |
*** mgoddard_ has joined #openstack-kolla | 21:35 | |
*** Jeffrey4l has quit IRC | 21:35 | |
*** crushil has quit IRC | 21:35 | |
*** Jeffrey4l has joined #openstack-kolla | 21:35 | |
*** rwallner has quit IRC | 21:41 | |
jascott1 | kfox1111 neato | 21:42 |
* jascott1 ponders dwarf fortress as a service... | 21:42 | |
kfox1111 | with a helm package. ;) | 21:43 |
*** rwallner has joined #openstack-kolla | 21:45 | |
*** salv-orlando has quit IRC | 21:45 | |
*** jtriley_ has quit IRC | 21:45 | |
*** rwallner has quit IRC | 21:49 | |
jascott1 | but of course :) | 21:50 |
*** kristian__ has joined #openstack-kolla | 21:52 | |
*** kristian__ has quit IRC | 21:56 | |
*** adrian_otto has joined #openstack-kolla | 21:57 | |
*** Pavo has quit IRC | 22:00 | |
*** Pavo has joined #openstack-kolla | 22:05 | |
openstackgerrit | Serguei Bezverkhi proposed openstack/kolla-kubernetes master: WIP Adding compute-kit chart https://review.openstack.org/428150 | 22:09 |
*** emispur has joined #openstack-kolla | 22:09 | |
openstackgerrit | Ian Kumlien proposed openstack/kolla-ansible master: [RFC] Push libvirt-guest settings to the container https://review.openstack.org/428815 | 22:10 |
*** skuda has joined #openstack-kolla | 22:16 | |
*** sp_ has quit IRC | 22:19 | |
*** sp_ has joined #openstack-kolla | 22:20 | |
*** srwilkers has quit IRC | 22:23 | |
*** breitz has quit IRC | 22:26 | |
*** breitz has joined #openstack-kolla | 22:27 | |
*** Marcellin__ has quit IRC | 22:29 | |
*** salv-orlando has joined #openstack-kolla | 22:29 | |
*** sdake has joined #openstack-kolla | 22:31 | |
*** sdake has quit IRC | 22:32 | |
*** sdake has joined #openstack-kolla | 22:33 | |
*** mannamne has quit IRC | 22:56 | |
*** mgoddard_ has quit IRC | 23:00 | |
*** rwallner has joined #openstack-kolla | 23:02 | |
*** Pavo_ has joined #openstack-kolla | 23:05 | |
*** adrian_otto has quit IRC | 23:05 | |
*** Pavo is now known as Guest29709 | 23:06 | |
*** rwallner has quit IRC | 23:06 | |
*** Pavo_ has quit IRC | 23:08 | |
*** Pavo has joined #openstack-kolla | 23:09 | |
*** mgoddard_ has joined #openstack-kolla | 23:10 | |
*** Pavo has quit IRC | 23:10 | |
*** Guest29709 has quit IRC | 23:11 | |
*** Pavo has joined #openstack-kolla | 23:11 | |
*** sdake has quit IRC | 23:11 | |
*** Pavo has quit IRC | 23:17 | |
*** Pavo has joined #openstack-kolla | 23:17 | |
klindgren | Afternoon | 23:21 |
klindgren | I remember seeing a mailing list post about removing COPY_ONCE from kolla? | 23:21 |
klindgren | is that still the plan? | 23:21 |
kfox1111 | remove? | 23:22 |
kfox1111 | I haven't heard . | 23:22 |
klindgren | http://git.net/ml/openstack-dev/2016-12/msg00007.html | 23:22 |
kfox1111 | ah. | 23:23 |
kfox1111 | missed that somehow. | 23:23 |
kfox1111 | kolla-kubernetes is defaulting to copy once. | 23:23 |
*** unicell has joined #openstack-kolla | 23:24 | |
klindgren | I think we are also going to be using copy_once | 23:24 |
klindgren | makes roll back much easier | 23:24 |
kfox1111 | +1 | 23:24 |
kfox1111 | once you have a container orchestration engine such as k8s, then copy_once makes more sence I think. | 23:24 |
klindgren | I managed to answer my own question - I couldn't find the email in my inbox | 23:25 |
*** TxGirlGeek has quit IRC | 23:28 | |
*** adrian_otto has joined #openstack-kolla | 23:30 | |
*** kbyrne has quit IRC | 23:32 | |
*** kbyrne has joined #openstack-kolla | 23:34 | |
openstackgerrit | Eduardo Gonzalez proposed openstack/kolla-ansible master: Fix grafana database creation https://review.openstack.org/429109 | 23:34 |
*** saneax-_-|AFK is now known as saneax | 23:35 | |
*** skuda has quit IRC | 23:35 | |
*** penfold has quit IRC | 23:35 | |
*** mgoddard_ has quit IRC | 23:36 | |
inc0 | klindgren, I think we won't remove it after all | 23:37 |
inc0 | but really? you're thinking of copy_once? what's your use case? | 23:37 |
klindgren | Deployment with new code and deployment with existing code but config update | 23:40 |
klindgren | can be handled the exact same way for roll back if needed | 23:40 |
inc0 | yeah I guess, just re-create container | 23:40 |
*** kristian__ has joined #openstack-kolla | 23:42 | |
*** kristian__ has quit IRC | 23:46 | |
kfox1111 | inc0: the same use case as before. atomic deployments. | 23:46 |
kfox1111 | k8s provides machinery to allow easy rolling upgrades. | 23:46 |
kfox1111 | and rollbacks. | 23:47 |
kfox1111 | so better to be atomic within the replicasets so rollforward/back is atomic and works the way intended, | 23:47 |
kfox1111 | rather then having random intermediate states. | 23:47 |
*** salv-orlando has quit IRC | 23:48 | |
*** salv-orlando has joined #openstack-kolla | 23:49 | |
*** salv-orlando has quit IRC | 23:54 | |
*** salv-orlando has joined #openstack-kolla | 23:57 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!