Monday, 2017-08-07

*** felipemonteiro_ has joined #openstack-helm00:11
*** felipemonteiro has joined #openstack-helm00:16
openstackgerritStacey Fletcher proposed openstack/openstack-helm master: Gates: Add configurable timeouts  https://review.openstack.org/49130301:12
openstackgerritStacey Fletcher proposed openstack/openstack-helm master: DNM: WIP: This Patchset will be Abandoned and is only used for testing.  https://review.openstack.org/49120701:16
openstackgerritStacey Fletcher proposed openstack/openstack-helm master: DNM: WIP: This Patchset will be Abandoned and is only used for testing.  https://review.openstack.org/49120701:17
*** julim has joined #openstack-helm01:30
*** julim has quit IRC01:30
*** julim has joined #openstack-helm01:32
*** randomhack has joined #openstack-helm01:41
*** julim has quit IRC01:44
*** randomhack has quit IRC01:46
openstackgerritStacey Fletcher proposed openstack/openstack-helm master: DNM: WIP: This Patchset will be Abandoned and is only used for testing.  https://review.openstack.org/49120702:26
*** julim has joined #openstack-helm02:28
*** julim has quit IRC02:39
japestinhomorning guys, I have a question about ceph helm chart, I got error on ceph-osd pods it keeps crash due to connection refused on port 680002:44
japestinhohere the log I got02:45
japestinhohttps://www.irccloud.com/pastebin/tlQDnsz3/02:45
japestinhoactually before I try to deploy ceph helm chart, what preparation should I aware beside ceph common packages? maybe about ammount of disks, disk's partition or disk's format?02:46
portdirectjapestinho: have you looked through the docs?02:47
portdirectin particular: http://openstack-helm.readthedocs.io/en/latest/install/multinode.html#preparing-persistent-storage02:48
portdirectfor a single node env you can use the values from here: https://github.com/openstack/openstack-helm/blob/master/tools/overrides/mvp/ceph.yaml02:48
portdirectand the gate script itself is a good reference source: https://github.com/openstack/openstack-helm/blob/master/tools/gate/basic_launch.sh#L3602:49
japestinhoportdirect, yes I am following the guide, already installed ceph packages, do the dns part, labelling the nodes, and set the osd cluster and public network in same cidr with my host network02:49
portdirectcan you get logs from ceph pod?02:49
japestinhoI am deployin on 5 nodes, 3 as openstack controlled which I set all ceph label onto these 3 nodes02:50
japestinhothe rest are openstack compute02:50
portdirectcould you give the output of: kubectl get -n ceph pods02:50
japestinhoportdirect, from which pods? I got only Readiness probe failed: dial tcp 10.10.10.1:6800: getsockopt: connection refused from ceph-osd02:51
portdirectthe osd's culd be great02:51
portdirect*would02:51
japestinhohere from kubectl get pods02:51
japestinhohttps://www.irccloud.com/pastebin/Lwkcp1oZ/02:51
*** julim has joined #openstack-helm02:52
portdirectkubectl logs -n ceph ceph-osd-g4j1c02:53
portdirect^^ would be a great place to start02:54
japestinhoportdirect here is the log02:54
japestinhohttp://paste.openstack.org/show/617628/02:54
portdirectunable to parse addrs in 'ceph-mon.ceph'02:55
portdirect^^ looks like a dns issue02:55
japestinhoI'm using Centos 7.3 as host OS, is that the problem?02:55
portdirectshould be fine02:56
portdirectcan you run:  dig ceph-mon.ceph.svc.cluster.local from your host?02:56
osh-chatbot3<lrensing> Did you do the DNS part for the kube controller manager?02:56
japestinhohttps://www.irccloud.com/pastebin/ympgQwMI/02:57
portdirectlrensing: that will only effect PVC provisioning02:57
portdirectjapestinho: theres your issue :)02:57
portdirectyou need to update the host to use you cluster dns02:57
japestinholrensing yes I did02:57
portdirectas a sanity test can you run: dig ceph-mon.ceph.svc.cluster.local @10.96.0.1002:58
japestinhoportdirect, what should I update?02:58
portdirectcould you run that command I pasted above 1st02:58
japestinhohttps://www.irccloud.com/pastebin/sjiEPHRN/02:58
portdirectwe should explain it better, but the you need to do this: http://openstack-helm.readthedocs.io/en/latest/install/multinode.html#kubernetes-node-dns-resolution02:59
portdirecttheres a few ways - but essentially just updating the resolv.conf on the host is all you need to do02:59
japestinhoportdirect, this was what I did03:01
japestinhohttps://www.irccloud.com/pastebin/jpiq7sgM/03:01
japestinhois that correct?03:01
portdirectclose - but it wont hit them in the right order03:02
japestinhoor should I move 10.96.0.10 to the first line?03:02
portdirect2 sec and I'll send you a paste of what you want03:02
portdirectit wont pick them in order :(03:02
* portdirect tries to remember the sauce03:02
japestinhoportdirect, sorry for my confuse :903:03
portdirecthere you go:03:04
portdirecthttps://www.irccloud.com/pastebin/kHaPjowH/03:04
portdirectthe options there will cause it to try and hit the k8s server 1st, and them move on to 8.8.8.8 if it cant get to it in 1 second03:05
portdirectthis is essential for reboots of the cluster to work cleanly03:05
japestinhoportdirect, oke lemme try it, but should I redo helm install part?03:05
japestinhowith helm delete --purge ceph03:05
portdirectyou'll need to do that03:06
portdirectto be safe id also remove the ceph namespace03:06
portdirectkubectl delete ns ceph03:06
portdirectas its pretty solid once up - but if it doesnt come up cleanly in the 1st place then fun can ensue03:06
portdirectas a final step once you have removed the chart and deleted the ns03:07
portdirecton the three nodes you are using03:07
portdirectdeplete the ceph storage directory03:07
portdirecthttps://github.com/openstack/openstack-helm/blob/master/ceph/values.yaml#L22603:07
portdirectso a: rm -rf /var/lib/openstack-helm should do it at this stage03:07
*** felipemonteiro__ has joined #openstack-helm03:08
japestinhoportdirect, another question before I do your clue, is there any requirement with the OSD disk03:08
japestinhobecause I only got 2 disks on the control plane03:08
portdirectno - currently its just targeting dirs03:08
japestinhoportdirect, okay thanks for the clue, I'll try it now :)03:09
portdirectmy machines are xfs formatted and thats been fine for dev so far03:09
japestinhoportdirect, as long as I leave the 2nd disk formatted, it wont be problem right?03:10
*** felipemonteiro_ has quit IRC03:11
portdirectit shouldn't really come into the equation03:14
portdirectso it wont be a problem03:14
*** felipemonteiro__ has quit IRC03:18
openstackgerritPete Birley proposed openstack/openstack-helm master: Ceph: Fix Multinode Gates  https://review.openstack.org/48898903:39
openstackgerritPete Birley proposed openstack/openstack-helm master: Ceph: Fix Multinode Gates  https://review.openstack.org/48898903:39
openstackgerritMerged openstack/openstack-helm master: Gates: Add configurable timeouts  https://review.openstack.org/49130303:44
*** felipemonteiro has quit IRC04:05
openstackgerritStacey Fletcher proposed openstack/openstack-helm master: DNM: Jenkins timeout test  https://review.openstack.org/49133704:17
*** randomhack has joined #openstack-helm05:42
*** randomhack has quit IRC05:47
*** pprokop has joined #openstack-helm06:56
*** ashishb_ has quit IRC07:15
openstackgerritMateusz Blaszkowski proposed openstack/openstack-helm-addons master: ElasticSearch chart cleanup  https://review.openstack.org/48730307:23
*** randomhack has joined #openstack-helm08:18
*** MarkBaker has joined #openstack-helm08:22
*** randomhack has quit IRC08:24
*** mariusv has quit IRC08:49
*** mariusv has joined #openstack-helm08:56
*** MarkBaker has quit IRC09:16
*** mariusv has quit IRC09:45
*** mariusv has joined #openstack-helm09:46
*** MarkBaker has joined #openstack-helm10:17
*** schwicht has joined #openstack-helm10:58
*** julim has joined #openstack-helm11:20
*** jaypipes has joined #openstack-helm11:25
*** julim has quit IRC11:31
*** julim has joined #openstack-helm11:33
*** schwicht has quit IRC11:42
*** schwicht has joined #openstack-helm11:43
*** julim_ has joined #openstack-helm11:46
*** schwicht has quit IRC11:49
*** julim has quit IRC11:49
openstackgerritPete Birley proposed openstack/openstack-helm master: Docs: Update DNS setup in multinode guide to be more specific  https://review.openstack.org/49147212:25
openstackgerritPete Birley proposed openstack/openstack-helm master: Docs: Update DNS setup in multinode guide to be more specific  https://review.openstack.org/49147212:26
openstackgerritPete Birley proposed openstack/openstack-helm master: Docs: Update DNS setup in multinode guide to be more specific  https://review.openstack.org/49147212:28
openstackgerritStacey Fletcher proposed openstack/openstack-helm master: Gates: Add configurable timeouts to kubeadm-aio  https://review.openstack.org/49147312:30
*** schwicht has joined #openstack-helm12:33
*** mariusv has quit IRC12:33
openstackgerritPete Birley proposed openstack/openstack-helm master: Docs: Update DNS setup in multinode guide to be more specific  https://review.openstack.org/49147212:33
*** mariusv has joined #openstack-helm12:33
openstackgerritPete Birley proposed openstack/openstack-helm master: Docs: Update DNS setup in multinode guide to be more specific  https://review.openstack.org/49147212:34
*** mariusv has quit IRC12:37
*** schwicht has quit IRC12:39
*** mariusv has joined #openstack-helm12:39
*** schwicht has joined #openstack-helm12:48
*** julim has joined #openstack-helm12:55
*** schwicht has quit IRC13:04
*** aric49 has joined #openstack-helm13:10
*** schwicht has joined #openstack-helm13:21
*** alraddarla has joined #openstack-helm13:34
*** lrensing has joined #openstack-helm13:37
*** randomhack has joined #openstack-helm13:53
*** felipemonteiro has joined #openstack-helm13:59
*** felipemonteiro_ has joined #openstack-helm13:59
*** felipemonteiro has quit IRC14:03
openstackgerritLarry Rensing proposed openstack/openstack-helm-addons master: WIP - MaaS chart  https://review.openstack.org/47238114:08
osh-chatbot3<code-r> https://github.com/openstack/openstack-helm/blob/master/nova/values.yaml#L12014:09
osh-chatbot3<code-r> how to set this value ?14:09
*** marst has joined #openstack-helm14:09
openstackgerritLarry Rensing proposed openstack/openstack-helm-addons master: WIP - MaaS chart  https://review.openstack.org/47238114:09
osh-chatbot3<code-r> I am trying with minikube and not sure how to define a proper value for the above one14:09
portdirectcode-r: you can set it to any ip in the k8s service cidr14:10
osh-chatbot3<code-r> @portdirect but, how to ensure that ip is not used by some other service for ex: glance14:10
portdirectyou'll also need to set it here: https://github.com/openstack/openstack-helm/blob/master/neutron/values.yaml#L51214:10
portdirectthats a good question :) currently you need to manually check that prior to launching the chart14:11
osh-chatbot3<code-r> @portdirect thanks..so, I have to verify an ip that is not used by some other cluster and define it14:11
portdirectyup14:11
osh-chatbot3<code-r> but, I heard we are going to use armada to deploy a complete openstack cluster and I was wondering how we can handle this14:12
osh-chatbot3<code-r> https://github.com/att-comdev/armada14:12
*** MarkBaker has quit IRC14:13
osh-chatbot3<portdirect> work is underway to ensure that no colision occurs14:13
osh-chatbot3<portdirect> but with 20 ips used out of ~65k when launching nove we have been lucky so far :slightly_smiling_face:14:14
osh-chatbot3<code-r> thanks @portdirect for clarifying this14:14
*** jistr is now known as jistr|mtg14:16
openstackgerritLarry Rensing proposed openstack/openstack-helm-addons master: WIP - MaaS chart  https://review.openstack.org/47238114:21
*** schwicht has quit IRC14:24
*** MarkBaker has joined #openstack-helm14:25
*** schwicht has joined #openstack-helm14:44
openstackgerritMerged openstack/openstack-helm master: fix to avoid crash loop on glance clean job  https://review.openstack.org/49075414:47
*** jistr|mtg is now known as jistr14:52
openstackgerritMerged openstack/openstack-helm master: fix to avoid crash loop on ceph clean job  https://review.openstack.org/49078014:57
osh-chatbot3<rootfs> @portdirect PTAL thanks, https://review.openstack.org/#/c/490983/15:27
portdirectrootfs - pulling down now :)15:48
portdirectthanks :D15:48
osh-chatbot3<rootfs> thanks!15:48
osh-chatbot3<rootfs> portdirect: one more question, why is hostNetwork not configurable? I would image somebody will use pod network to setup ceph for more flexibility and less privilege?15:49
osh-chatbot3<portdirect> We have found it to be much more robust when outside of the CNI, partly as it means things have a consistent IP address, and we also had difficult recovering from a full outage.15:51
osh-chatbot3<portdirect> that said - we should probably have left it as an option...15:52
osh-chatbot3<rootfs> thanks, that makes sense15:53
osh-chatbot3<rootfs> another question15:53
osh-chatbot3<rootfs> for osd, it seems only osd_directory is supported15:53
osh-chatbot3<rootfs> this is a bit sad since you likely have only 1 osd per node15:54
lrensingsupporting devices in the works :)15:54
osh-chatbot3<rootfs> i would like a local PV for osd15:54
*** MarkBaker has quit IRC15:54
osh-chatbot3<rootfs> Irensing: that's cool (great mind think alike)15:55
osh-chatbot3<portdirect> @rootfs: https://review.openstack.org/#/c/490983/215:55
osh-chatbot3<portdirect> I'll include you on the disc targeting PS's (and you to obviously @lrensing !) if you like? would be great to get your fb15:56
osh-chatbot3<rootfs> Irensing: is there osd device work in progress? i have a few ideas in mind15:57
lrensinghttps://review.openstack.org/#/c/457754/15:57
lrensingfeel free to provide feedback :)15:57
osh-chatbot3<rootfs> Irensing: this is a good start, how many osd can you set on a node?15:58
lrensingthe current implementation gives it an entire disk- so the answer to that depends on how you label your nodes15:59
osh-chatbot3<rootfs> Irensing: i dont think we can have multiple devices /dev/sdc, /dev/sdd, etc16:00
osh-chatbot3<rootfs> unless we have replica > 1 in daemonset16:01
osh-chatbot3<rootfs> i.e. run multiple containers per node16:01
osh-chatbot3<rootfs> but making replica > 1 in daemonset needs local pv support, which is only available in kubernetes 1.716:02
openstackgerritHuamin Chen proposed openstack/openstack-helm master: Use RBD external provisioner  https://review.openstack.org/49098316:05
osh-chatbot3<rootfs> portdirect: feedback addressed16:06
osh-chatbot3<portdirect> nice- cheers @rootfs16:07
osh-chatbot3<rootfs> Irensing: forget it, i just read your tricks, nice work16:08
*** julim has quit IRC16:10
*** aric49 has quit IRC16:20
*** aric49 has joined #openstack-helm16:21
openstackgerritMerged openstack/openstack-helm master: Ceph: Fix Multinode Gates  https://review.openstack.org/48898916:28
openstackgerritPete Birley proposed openstack/openstack-helm master: WIP: Charts: make manifests optional for all elements  https://review.openstack.org/49154316:38
*** julim has joined #openstack-helm16:52
openstackgerritPete Birley proposed openstack/openstack-helm master: WIP: Charts: make manifests optional for all elements  https://review.openstack.org/49154316:53
openstackgerritSteve Wilkerson proposed openstack/openstack-helm master: WIP: Charts: make manifests optional for all elements  https://review.openstack.org/49154316:57
openstackgerritPete Birley proposed openstack/openstack-helm master: WIP: Charts: make manifests optional for all elements  https://review.openstack.org/49154316:58
*** MarkBaker has joined #openstack-helm17:01
openstackgerritSteve Wilkerson proposed openstack/openstack-helm master: WIP: Charts: make manifests optional for all elements  https://review.openstack.org/49154317:10
openstackgerritSteve Wilkerson proposed openstack/openstack-helm master: WIP: Charts: make manifests optional for all elements  https://review.openstack.org/49154317:21
openstackgerritSteve Wilkerson proposed openstack/openstack-helm master: WIP: Charts: make manifests optional for all elements  https://review.openstack.org/49154317:29
*** randomhack has quit IRC17:35
openstackgerritSteve Wilkerson proposed openstack/openstack-helm master: WIP: Charts: make manifests optional for all elements  https://review.openstack.org/49154317:38
*** randomhack has joined #openstack-helm17:38
openstackgerritPete Birley proposed openstack/openstack-helm master: Use RBD external provisioner  https://review.openstack.org/49098317:44
openstackgerritSteve Wilkerson proposed openstack/openstack-helm master: WIP: Charts: make manifests optional for all elements  https://review.openstack.org/49154317:46
osh-chatbot3<portdirect> @rootfs looking through the rbd provisioner, can we run multiple copies for h/a?17:52
osh-chatbot3<portdirect> I see references to leader election.17:52
osh-chatbot3<rootfs> you sure can17:52
osh-chatbot3<portdirect> w00t :slightly_smiling_face:17:53
osh-chatbot3<rootfs> just need to set id here17:53
osh-chatbot3<portdirect> playing with it now - seems to work well dude :slightly_smiling_face:17:54
osh-chatbot3<rootfs> see the README with "-id=rbd-provisioner-1"17:55
osh-chatbot3<rootfs> https://github.com/kubernetes-incubator/external-storage/tree/master/ceph/rbd17:55
osh-chatbot3<rootfs> if you want to add an id to the deployment, feel free to do so (it is a right to do and i was wrong not doing it explicitly)17:55
osh-chatbot3<portdirect> would it make sense to deploy as a statefulset then?17:56
osh-chatbot3<portdirect> not as we need it - but as we could get an ID pretty simply from the pod name.17:56
openstackgerritSteve Wilkerson proposed openstack/openstack-helm master: WIP: Charts: make manifests optional for all elements  https://review.openstack.org/49154317:57
rwellumGood afternoon guys. Will os-helm be meeting at the Denver PTG and if so when? :)17:57
portdirectit will :D17:57
portdirectsrwilkers has the info17:58
*** gouthamr has joined #openstack-helm17:58
*** MarkBaker has quit IRC18:01
srwilkershey rwellum18:02
srwilkersyeah, we'll be there.  when is something we should have a chat about as the time draws closers.  as OSH isn't an official project, we won't be listed on the proper schedule and we won't be allocated a designated room18:02
srwilkershowever, we're free to use the open common areas to gather.  that gives us a bit of flexibility on when/how often we can meet18:03
srwilkersbut will require us all to coordinate ahead of time18:03
*** randomhack has quit IRC18:04
openstackgerritSteve Wilkerson proposed openstack/openstack-helm master: WIP -- Add proxysql to mariadb  https://review.openstack.org/48758818:05
osh-chatbot3<rootfs> portdirect: id is a param you passes to the provisioner. you can just use a deployment with a new arg in it, as we did for cephfs https://github.com/kubernetes-incubator/external-storage/blob/master/ceph/cephfs/deployment.yaml#L2618:05
rwellumsrwilkers: portdirect - that's great - I'd love to be involved. Unfortunately haven't had much time to interact but maybe meeting up can kick-start my effort again. If you guys arrange anything and you're flexible - consider the first 2 days as the last 3 are usually booked by all the 'official' projects, so I have Kolla, Cinder and Ironic to spread my self around. But the first two days are more open.18:06
srwilkersyeah, the first two days would be my preference as well18:07
srwilkersi fly in early the sunday before and had planned on taking a few hours to find out space that would work18:07
osh-chatbot3<v1k0d3n> Whoa rwellum welcome back. Been a while :)18:08
rwellumv1k0d3n: hah - so sorry, I've been lurking but I got pulled off onto AI for a while, took a lot of time. Be great to meetup in Denver.18:09
rwellumsrwilkers: great - I'll pencil in os-helm for mon/tues. I'll check IRC for location :)18:15
*** randomhack has joined #openstack-helm18:30
osh-chatbot3<v1k0d3n> great @rwellum! I'll be there.18:33
openstackgerritSteve Wilkerson proposed openstack/openstack-helm master: WIP: Charts: make manifests optional for all elements  https://review.openstack.org/49154318:35
*** julim has quit IRC18:39
openstackgerritSteve Wilkerson proposed openstack/openstack-helm master: WIP: Charts: make manifests optional for all elements  https://review.openstack.org/49154318:44
*** lrensing has quit IRC18:45
*** aric49 has quit IRC18:46
*** julim has joined #openstack-helm19:25
*** lrensing has joined #openstack-helm19:26
*** randomhack has quit IRC19:34
rwellumGreat v1k0d3n - look forward to it and hearing your news.19:39
*** randomhack has joined #openstack-helm19:41
v1k0d3nmy news? not sure what that is...19:43
osh-chatbot3<lrensing> @rootfs feel free to coauthor my PS19:43
osh-chatbot3<rootfs> Irensing: can u rebase? i added a patch but cannot send to gerritt for review - merge conflict19:44
osh-chatbot3<rootfs> Irensing: it is a small change anyway, feel free to comment https://github.com/rootfs/openstack-helm/commit/cbc57356c96f5ea2aa21f9e91c091c1a7d900d6919:44
osh-chatbot3<lrensing> let me rebase quick19:47
openstackgerritPete Birley proposed openstack/openstack-helm master: Charts: make manifests optional for all OpenStack elements  https://review.openstack.org/49154319:48
openstackgerritLarry Rensing proposed openstack/openstack-helm master: Ceph OSD disk targeting  https://review.openstack.org/45775419:52
osh-chatbot3<lrensing> should be good to go now @rootfs19:52
*** aric49 has joined #openstack-helm19:53
openstackgerritHuamin Chen proposed openstack/openstack-helm master: Ceph OSD disk targeting  https://review.openstack.org/45775419:53
openstackgerritHuamin Chen proposed openstack/openstack-helm master: use init container to prepare osd disks. use osd activiate in main container  https://review.openstack.org/49158619:53
osh-chatbot3<rootfs> Irensing: it looks i pushed wrong commit19:55
*** julim has quit IRC19:55
osh-chatbot3<rootfs> my own rebase was pushed but my commit was not19:55
osh-chatbot3<rootfs> what's the trick to revert the rebase?19:56
openstackgerritHuamin Chen proposed openstack/openstack-helm master: use init container to prepare osd disks. use osd activiate in main container  https://review.openstack.org/49158719:59
portdirectrootfs - if you use git --amend on the ps #457754 then it will manage things for you - and add you to that ps20:01
openstackgerritPete Birley proposed openstack/openstack-helm master: Charts: make manifests optional for all OpenStack elements  https://review.openstack.org/49154320:02
osh-chatbot3<rootfs> portdirect: it is messy now, i re-downloaded the ps and am no longer able to go back20:05
openstackgerritDarla Ahlert proposed openstack/openstack-helm master: [WIP] Add Rally Chart  https://review.openstack.org/49101520:12
openstackgerritHuamin Chen proposed openstack/openstack-helm master: Ceph OSD disk targeting  https://review.openstack.org/45775420:15
osh-chatbot3<rootfs> Irensing: portdirect: pushed ps 21, hopefully this time i got it right20:16
*** gouthamr has quit IRC20:17
portdirectnice - I'll have a look soon as the gate goes thru :)20:19
osh-chatbot3<rootfs> portdirect: i can loan you my garage door key :slightly_smiling_face:20:20
portdirectwill also make some changes  - so we can target discs on a per host basis as well as a uniform manner accross all hosts if your ok with that?20:20
osh-chatbot3<rootfs> sgtm20:21
osh-chatbot3<rootfs> i think it already baked in20:21
osh-chatbot3<rootfs> special node labels are needed for osd devices20:21
portdirectyeah - this would just neaten things up a bit20:23
portdirectand provide a mechanism for getting those labels there :)20:23
osh-chatbot3<lrensing> @rootfs i think i missed a diff when i rebased so there's a git tag in the gate script20:24
osh-chatbot3<rootfs> Irensing: sounds you can fix my bad ps 2120:24
*** gouthamr has joined #openstack-helm20:24
osh-chatbot3<lrensing> :slightly_smiling_face:20:24
osh-chatbot3<rootfs> there is never a dull moment in gerrit20:25
openstackgerritLarry Rensing proposed openstack/openstack-helm master: Ceph OSD disk targeting  https://review.openstack.org/45775420:29
*** gouthamr has quit IRC20:36
*** randomha1k has joined #openstack-helm20:40
*** randomhack has quit IRC20:43
*** randomha1k has quit IRC20:44
openstackgerritDarla Ahlert proposed openstack/openstack-helm master: [WIP] Add Rally Chart  https://review.openstack.org/49101520:55
openstackgerritSteve Wilkerson proposed openstack/openstack-helm master: WIP -- Add proxysql to mariadb  https://review.openstack.org/48758821:00
*** alraddarla has quit IRC21:04
*** julim has joined #openstack-helm21:14
*** MarkBaker has joined #openstack-helm21:20
*** lrensing has quit IRC21:23
openstackgerritSteve Wilkerson proposed openstack/openstack-helm master: Fix -- Ceph multinode  https://review.openstack.org/49161321:54
openstackgerritSteve Wilkerson proposed openstack/openstack-helm master: Fix -- Ceph in multinode gate  https://review.openstack.org/49161321:57
openstackgerritPete Birley proposed openstack/openstack-helm master: Licence: Remove licence header from rendered files  https://review.openstack.org/49161422:09
openstackgerritSteve Wilkerson proposed openstack/openstack-helm master: Fix -- Ceph in multinode gate  https://review.openstack.org/49161322:11
*** aric49 has quit IRC22:11
openstackgerritPete Birley proposed openstack/openstack-helm master: Licence: Remove licence header from rendered files  https://review.openstack.org/49161422:13
openstackgerritPete Birley proposed openstack/openstack-helm master: Licence: Remove licence header from rendered files  https://review.openstack.org/49161422:18
openstackgerritMerged openstack/openstack-helm master: Charts: make manifests optional for all OpenStack elements  https://review.openstack.org/49154322:28
*** gouthamr has joined #openstack-helm22:29
*** marst has quit IRC22:36
openstackgerritMerged openstack/openstack-helm master: Fix -- Ceph in multinode gate  https://review.openstack.org/49161323:09
*** jaypipes has quit IRC23:19
openstackgerritRenis Makadia proposed openstack/openstack-helm master: WIP: Add Helm Chart for Designate  https://review.openstack.org/46998123:31
*** schwicht has quit IRC23:36
*** StaceyF has joined #openstack-helm23:38
*** felipemonteiro_ has quit IRC23:39

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