*** felipemonteiro_ has joined #openstack-helm | 00:11 | |
*** felipemonteiro has joined #openstack-helm | 00:16 | |
openstackgerrit | Stacey Fletcher proposed openstack/openstack-helm master: Gates: Add configurable timeouts https://review.openstack.org/491303 | 01:12 |
---|---|---|
openstackgerrit | Stacey Fletcher proposed openstack/openstack-helm master: DNM: WIP: This Patchset will be Abandoned and is only used for testing. https://review.openstack.org/491207 | 01:16 |
openstackgerrit | Stacey Fletcher proposed openstack/openstack-helm master: DNM: WIP: This Patchset will be Abandoned and is only used for testing. https://review.openstack.org/491207 | 01:17 |
*** julim has joined #openstack-helm | 01:30 | |
*** julim has quit IRC | 01:30 | |
*** julim has joined #openstack-helm | 01:32 | |
*** randomhack has joined #openstack-helm | 01:41 | |
*** julim has quit IRC | 01:44 | |
*** randomhack has quit IRC | 01:46 | |
openstackgerrit | Stacey Fletcher proposed openstack/openstack-helm master: DNM: WIP: This Patchset will be Abandoned and is only used for testing. https://review.openstack.org/491207 | 02:26 |
*** julim has joined #openstack-helm | 02:28 | |
*** julim has quit IRC | 02:39 | |
japestinho | morning 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 6800 | 02:44 |
japestinho | here the log I got | 02:45 |
japestinho | https://www.irccloud.com/pastebin/tlQDnsz3/ | 02:45 |
japestinho | actually 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 |
portdirect | japestinho: have you looked through the docs? | 02:47 |
portdirect | in particular: http://openstack-helm.readthedocs.io/en/latest/install/multinode.html#preparing-persistent-storage | 02:48 |
portdirect | for a single node env you can use the values from here: https://github.com/openstack/openstack-helm/blob/master/tools/overrides/mvp/ceph.yaml | 02:48 |
portdirect | and the gate script itself is a good reference source: https://github.com/openstack/openstack-helm/blob/master/tools/gate/basic_launch.sh#L36 | 02:49 |
japestinho | portdirect, 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 network | 02:49 |
portdirect | can you get logs from ceph pod? | 02:49 |
japestinho | I am deployin on 5 nodes, 3 as openstack controlled which I set all ceph label onto these 3 nodes | 02:50 |
japestinho | the rest are openstack compute | 02:50 |
portdirect | could you give the output of: kubectl get -n ceph pods | 02:50 |
japestinho | portdirect, from which pods? I got only Readiness probe failed: dial tcp 10.10.10.1:6800: getsockopt: connection refused from ceph-osd | 02:51 |
portdirect | the osd's culd be great | 02:51 |
portdirect | *would | 02:51 |
japestinho | here from kubectl get pods | 02:51 |
japestinho | https://www.irccloud.com/pastebin/Lwkcp1oZ/ | 02:51 |
*** julim has joined #openstack-helm | 02:52 | |
portdirect | kubectl logs -n ceph ceph-osd-g4j1c | 02:53 |
portdirect | ^^ would be a great place to start | 02:54 |
japestinho | portdirect here is the log | 02:54 |
japestinho | http://paste.openstack.org/show/617628/ | 02:54 |
portdirect | unable to parse addrs in 'ceph-mon.ceph' | 02:55 |
portdirect | ^^ looks like a dns issue | 02:55 |
japestinho | I'm using Centos 7.3 as host OS, is that the problem? | 02:55 |
portdirect | should be fine | 02:56 |
portdirect | can 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 |
japestinho | https://www.irccloud.com/pastebin/ympgQwMI/ | 02:57 |
portdirect | lrensing: that will only effect PVC provisioning | 02:57 |
portdirect | japestinho: theres your issue :) | 02:57 |
portdirect | you need to update the host to use you cluster dns | 02:57 |
japestinho | lrensing yes I did | 02:57 |
portdirect | as a sanity test can you run: dig ceph-mon.ceph.svc.cluster.local @10.96.0.10 | 02:58 |
japestinho | portdirect, what should I update? | 02:58 |
portdirect | could you run that command I pasted above 1st | 02:58 |
japestinho | https://www.irccloud.com/pastebin/sjiEPHRN/ | 02:58 |
portdirect | we should explain it better, but the you need to do this: http://openstack-helm.readthedocs.io/en/latest/install/multinode.html#kubernetes-node-dns-resolution | 02:59 |
portdirect | theres a few ways - but essentially just updating the resolv.conf on the host is all you need to do | 02:59 |
japestinho | portdirect, this was what I did | 03:01 |
japestinho | https://www.irccloud.com/pastebin/jpiq7sgM/ | 03:01 |
japestinho | is that correct? | 03:01 |
portdirect | close - but it wont hit them in the right order | 03:02 |
japestinho | or should I move 10.96.0.10 to the first line? | 03:02 |
portdirect | 2 sec and I'll send you a paste of what you want | 03:02 |
portdirect | it wont pick them in order :( | 03:02 |
* portdirect tries to remember the sauce | 03:02 | |
japestinho | portdirect, sorry for my confuse :9 | 03:03 |
portdirect | here you go: | 03:04 |
portdirect | https://www.irccloud.com/pastebin/kHaPjowH/ | 03:04 |
portdirect | the 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 second | 03:05 |
portdirect | this is essential for reboots of the cluster to work cleanly | 03:05 |
japestinho | portdirect, oke lemme try it, but should I redo helm install part? | 03:05 |
japestinho | with helm delete --purge ceph | 03:05 |
portdirect | you'll need to do that | 03:06 |
portdirect | to be safe id also remove the ceph namespace | 03:06 |
portdirect | kubectl delete ns ceph | 03:06 |
portdirect | as its pretty solid once up - but if it doesnt come up cleanly in the 1st place then fun can ensue | 03:06 |
portdirect | as a final step once you have removed the chart and deleted the ns | 03:07 |
portdirect | on the three nodes you are using | 03:07 |
portdirect | deplete the ceph storage directory | 03:07 |
portdirect | https://github.com/openstack/openstack-helm/blob/master/ceph/values.yaml#L226 | 03:07 |
portdirect | so a: rm -rf /var/lib/openstack-helm should do it at this stage | 03:07 |
*** felipemonteiro__ has joined #openstack-helm | 03:08 | |
japestinho | portdirect, another question before I do your clue, is there any requirement with the OSD disk | 03:08 |
japestinho | because I only got 2 disks on the control plane | 03:08 |
portdirect | no - currently its just targeting dirs | 03:08 |
japestinho | portdirect, okay thanks for the clue, I'll try it now :) | 03:09 |
portdirect | my machines are xfs formatted and thats been fine for dev so far | 03:09 |
japestinho | portdirect, as long as I leave the 2nd disk formatted, it wont be problem right? | 03:10 |
*** felipemonteiro_ has quit IRC | 03:11 | |
portdirect | it shouldn't really come into the equation | 03:14 |
portdirect | so it wont be a problem | 03:14 |
*** felipemonteiro__ has quit IRC | 03:18 | |
openstackgerrit | Pete Birley proposed openstack/openstack-helm master: Ceph: Fix Multinode Gates https://review.openstack.org/488989 | 03:39 |
openstackgerrit | Pete Birley proposed openstack/openstack-helm master: Ceph: Fix Multinode Gates https://review.openstack.org/488989 | 03:39 |
openstackgerrit | Merged openstack/openstack-helm master: Gates: Add configurable timeouts https://review.openstack.org/491303 | 03:44 |
*** felipemonteiro has quit IRC | 04:05 | |
openstackgerrit | Stacey Fletcher proposed openstack/openstack-helm master: DNM: Jenkins timeout test https://review.openstack.org/491337 | 04:17 |
*** randomhack has joined #openstack-helm | 05:42 | |
*** randomhack has quit IRC | 05:47 | |
*** pprokop has joined #openstack-helm | 06:56 | |
*** ashishb_ has quit IRC | 07:15 | |
openstackgerrit | Mateusz Blaszkowski proposed openstack/openstack-helm-addons master: ElasticSearch chart cleanup https://review.openstack.org/487303 | 07:23 |
*** randomhack has joined #openstack-helm | 08:18 | |
*** MarkBaker has joined #openstack-helm | 08:22 | |
*** randomhack has quit IRC | 08:24 | |
*** mariusv has quit IRC | 08:49 | |
*** mariusv has joined #openstack-helm | 08:56 | |
*** MarkBaker has quit IRC | 09:16 | |
*** mariusv has quit IRC | 09:45 | |
*** mariusv has joined #openstack-helm | 09:46 | |
*** MarkBaker has joined #openstack-helm | 10:17 | |
*** schwicht has joined #openstack-helm | 10:58 | |
*** julim has joined #openstack-helm | 11:20 | |
*** jaypipes has joined #openstack-helm | 11:25 | |
*** julim has quit IRC | 11:31 | |
*** julim has joined #openstack-helm | 11:33 | |
*** schwicht has quit IRC | 11:42 | |
*** schwicht has joined #openstack-helm | 11:43 | |
*** julim_ has joined #openstack-helm | 11:46 | |
*** schwicht has quit IRC | 11:49 | |
*** julim has quit IRC | 11:49 | |
openstackgerrit | Pete Birley proposed openstack/openstack-helm master: Docs: Update DNS setup in multinode guide to be more specific https://review.openstack.org/491472 | 12:25 |
openstackgerrit | Pete Birley proposed openstack/openstack-helm master: Docs: Update DNS setup in multinode guide to be more specific https://review.openstack.org/491472 | 12:26 |
openstackgerrit | Pete Birley proposed openstack/openstack-helm master: Docs: Update DNS setup in multinode guide to be more specific https://review.openstack.org/491472 | 12:28 |
openstackgerrit | Stacey Fletcher proposed openstack/openstack-helm master: Gates: Add configurable timeouts to kubeadm-aio https://review.openstack.org/491473 | 12:30 |
*** schwicht has joined #openstack-helm | 12:33 | |
*** mariusv has quit IRC | 12:33 | |
openstackgerrit | Pete Birley proposed openstack/openstack-helm master: Docs: Update DNS setup in multinode guide to be more specific https://review.openstack.org/491472 | 12:33 |
*** mariusv has joined #openstack-helm | 12:33 | |
openstackgerrit | Pete Birley proposed openstack/openstack-helm master: Docs: Update DNS setup in multinode guide to be more specific https://review.openstack.org/491472 | 12:34 |
*** mariusv has quit IRC | 12:37 | |
*** schwicht has quit IRC | 12:39 | |
*** mariusv has joined #openstack-helm | 12:39 | |
*** schwicht has joined #openstack-helm | 12:48 | |
*** julim has joined #openstack-helm | 12:55 | |
*** schwicht has quit IRC | 13:04 | |
*** aric49 has joined #openstack-helm | 13:10 | |
*** schwicht has joined #openstack-helm | 13:21 | |
*** alraddarla has joined #openstack-helm | 13:34 | |
*** lrensing has joined #openstack-helm | 13:37 | |
*** randomhack has joined #openstack-helm | 13:53 | |
*** felipemonteiro has joined #openstack-helm | 13:59 | |
*** felipemonteiro_ has joined #openstack-helm | 13:59 | |
*** felipemonteiro has quit IRC | 14:03 | |
openstackgerrit | Larry Rensing proposed openstack/openstack-helm-addons master: WIP - MaaS chart https://review.openstack.org/472381 | 14:08 |
osh-chatbot3 | <code-r> https://github.com/openstack/openstack-helm/blob/master/nova/values.yaml#L120 | 14:09 |
osh-chatbot3 | <code-r> how to set this value ? | 14:09 |
*** marst has joined #openstack-helm | 14:09 | |
openstackgerrit | Larry Rensing proposed openstack/openstack-helm-addons master: WIP - MaaS chart https://review.openstack.org/472381 | 14:09 |
osh-chatbot3 | <code-r> I am trying with minikube and not sure how to define a proper value for the above one | 14:09 |
portdirect | code-r: you can set it to any ip in the k8s service cidr | 14:10 |
osh-chatbot3 | <code-r> @portdirect but, how to ensure that ip is not used by some other service for ex: glance | 14:10 |
portdirect | you'll also need to set it here: https://github.com/openstack/openstack-helm/blob/master/neutron/values.yaml#L512 | 14:10 |
portdirect | thats a good question :) currently you need to manually check that prior to launching the chart | 14:11 |
osh-chatbot3 | <code-r> @portdirect thanks..so, I have to verify an ip that is not used by some other cluster and define it | 14:11 |
portdirect | yup | 14: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 this | 14:12 |
osh-chatbot3 | <code-r> https://github.com/att-comdev/armada | 14:12 |
*** MarkBaker has quit IRC | 14:13 | |
osh-chatbot3 | <portdirect> work is underway to ensure that no colision occurs | 14: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 this | 14:14 |
*** jistr is now known as jistr|mtg | 14:16 | |
openstackgerrit | Larry Rensing proposed openstack/openstack-helm-addons master: WIP - MaaS chart https://review.openstack.org/472381 | 14:21 |
*** schwicht has quit IRC | 14:24 | |
*** MarkBaker has joined #openstack-helm | 14:25 | |
*** schwicht has joined #openstack-helm | 14:44 | |
openstackgerrit | Merged openstack/openstack-helm master: fix to avoid crash loop on glance clean job https://review.openstack.org/490754 | 14:47 |
*** jistr|mtg is now known as jistr | 14:52 | |
openstackgerrit | Merged openstack/openstack-helm master: fix to avoid crash loop on ceph clean job https://review.openstack.org/490780 | 14:57 |
osh-chatbot3 | <rootfs> @portdirect PTAL thanks, https://review.openstack.org/#/c/490983/ | 15:27 |
portdirect | rootfs - pulling down now :) | 15:48 |
portdirect | thanks :D | 15: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 sense | 15:53 |
osh-chatbot3 | <rootfs> another question | 15:53 |
osh-chatbot3 | <rootfs> for osd, it seems only osd_directory is supported | 15:53 |
osh-chatbot3 | <rootfs> this is a bit sad since you likely have only 1 osd per node | 15:54 |
lrensing | supporting devices in the works :) | 15:54 |
osh-chatbot3 | <rootfs> i would like a local PV for osd | 15:54 |
*** MarkBaker has quit IRC | 15:54 | |
osh-chatbot3 | <rootfs> Irensing: that's cool (great mind think alike) | 15:55 |
osh-chatbot3 | <portdirect> @rootfs: https://review.openstack.org/#/c/490983/2 | 15: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 fb | 15:56 |
osh-chatbot3 | <rootfs> Irensing: is there osd device work in progress? i have a few ideas in mind | 15:57 |
lrensing | https://review.openstack.org/#/c/457754/ | 15:57 |
lrensing | feel 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 |
lrensing | the current implementation gives it an entire disk- so the answer to that depends on how you label your nodes | 15:59 |
osh-chatbot3 | <rootfs> Irensing: i dont think we can have multiple devices /dev/sdc, /dev/sdd, etc | 16:00 |
osh-chatbot3 | <rootfs> unless we have replica > 1 in daemonset | 16:01 |
osh-chatbot3 | <rootfs> i.e. run multiple containers per node | 16:01 |
osh-chatbot3 | <rootfs> but making replica > 1 in daemonset needs local pv support, which is only available in kubernetes 1.7 | 16:02 |
openstackgerrit | Huamin Chen proposed openstack/openstack-helm master: Use RBD external provisioner https://review.openstack.org/490983 | 16:05 |
osh-chatbot3 | <rootfs> portdirect: feedback addressed | 16:06 |
osh-chatbot3 | <portdirect> nice- cheers @rootfs | 16:07 |
osh-chatbot3 | <rootfs> Irensing: forget it, i just read your tricks, nice work | 16:08 |
*** julim has quit IRC | 16:10 | |
*** aric49 has quit IRC | 16:20 | |
*** aric49 has joined #openstack-helm | 16:21 | |
openstackgerrit | Merged openstack/openstack-helm master: Ceph: Fix Multinode Gates https://review.openstack.org/488989 | 16:28 |
openstackgerrit | Pete Birley proposed openstack/openstack-helm master: WIP: Charts: make manifests optional for all elements https://review.openstack.org/491543 | 16:38 |
*** julim has joined #openstack-helm | 16:52 | |
openstackgerrit | Pete Birley proposed openstack/openstack-helm master: WIP: Charts: make manifests optional for all elements https://review.openstack.org/491543 | 16:53 |
openstackgerrit | Steve Wilkerson proposed openstack/openstack-helm master: WIP: Charts: make manifests optional for all elements https://review.openstack.org/491543 | 16:57 |
openstackgerrit | Pete Birley proposed openstack/openstack-helm master: WIP: Charts: make manifests optional for all elements https://review.openstack.org/491543 | 16:58 |
*** MarkBaker has joined #openstack-helm | 17:01 | |
openstackgerrit | Steve Wilkerson proposed openstack/openstack-helm master: WIP: Charts: make manifests optional for all elements https://review.openstack.org/491543 | 17:10 |
openstackgerrit | Steve Wilkerson proposed openstack/openstack-helm master: WIP: Charts: make manifests optional for all elements https://review.openstack.org/491543 | 17:21 |
openstackgerrit | Steve Wilkerson proposed openstack/openstack-helm master: WIP: Charts: make manifests optional for all elements https://review.openstack.org/491543 | 17:29 |
*** randomhack has quit IRC | 17:35 | |
openstackgerrit | Steve Wilkerson proposed openstack/openstack-helm master: WIP: Charts: make manifests optional for all elements https://review.openstack.org/491543 | 17:38 |
*** randomhack has joined #openstack-helm | 17:38 | |
openstackgerrit | Pete Birley proposed openstack/openstack-helm master: Use RBD external provisioner https://review.openstack.org/490983 | 17:44 |
openstackgerrit | Steve Wilkerson proposed openstack/openstack-helm master: WIP: Charts: make manifests optional for all elements https://review.openstack.org/491543 | 17: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 can | 17:52 |
osh-chatbot3 | <portdirect> w00t :slightly_smiling_face: | 17:53 |
osh-chatbot3 | <rootfs> just need to set id here | 17: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/rbd | 17: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 |
openstackgerrit | Steve Wilkerson proposed openstack/openstack-helm master: WIP: Charts: make manifests optional for all elements https://review.openstack.org/491543 | 17:57 |
rwellum | Good afternoon guys. Will os-helm be meeting at the Denver PTG and if so when? :) | 17:57 |
portdirect | it will :D | 17:57 |
portdirect | srwilkers has the info | 17:58 |
*** gouthamr has joined #openstack-helm | 17:58 | |
*** MarkBaker has quit IRC | 18:01 | |
srwilkers | hey rwellum | 18:02 |
srwilkers | yeah, 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 room | 18:02 |
srwilkers | however, we're free to use the open common areas to gather. that gives us a bit of flexibility on when/how often we can meet | 18:03 |
srwilkers | but will require us all to coordinate ahead of time | 18:03 |
*** randomhack has quit IRC | 18:04 | |
openstackgerrit | Steve Wilkerson proposed openstack/openstack-helm master: WIP -- Add proxysql to mariadb https://review.openstack.org/487588 | 18: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#L26 | 18:05 |
rwellum | srwilkers: 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 |
srwilkers | yeah, the first two days would be my preference as well | 18:07 |
srwilkers | i fly in early the sunday before and had planned on taking a few hours to find out space that would work | 18:07 |
osh-chatbot3 | <v1k0d3n> Whoa rwellum welcome back. Been a while :) | 18:08 |
rwellum | v1k0d3n: 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 |
rwellum | srwilkers: great - I'll pencil in os-helm for mon/tues. I'll check IRC for location :) | 18:15 |
*** randomhack has joined #openstack-helm | 18:30 | |
osh-chatbot3 | <v1k0d3n> great @rwellum! I'll be there. | 18:33 |
openstackgerrit | Steve Wilkerson proposed openstack/openstack-helm master: WIP: Charts: make manifests optional for all elements https://review.openstack.org/491543 | 18:35 |
*** julim has quit IRC | 18:39 | |
openstackgerrit | Steve Wilkerson proposed openstack/openstack-helm master: WIP: Charts: make manifests optional for all elements https://review.openstack.org/491543 | 18:44 |
*** lrensing has quit IRC | 18:45 | |
*** aric49 has quit IRC | 18:46 | |
*** julim has joined #openstack-helm | 19:25 | |
*** lrensing has joined #openstack-helm | 19:26 | |
*** randomhack has quit IRC | 19:34 | |
rwellum | Great v1k0d3n - look forward to it and hearing your news. | 19:39 |
*** randomhack has joined #openstack-helm | 19:41 | |
v1k0d3n | my news? not sure what that is... | 19:43 |
osh-chatbot3 | <lrensing> @rootfs feel free to coauthor my PS | 19:43 |
osh-chatbot3 | <rootfs> Irensing: can u rebase? i added a patch but cannot send to gerritt for review - merge conflict | 19:44 |
osh-chatbot3 | <rootfs> Irensing: it is a small change anyway, feel free to comment https://github.com/rootfs/openstack-helm/commit/cbc57356c96f5ea2aa21f9e91c091c1a7d900d69 | 19:44 |
osh-chatbot3 | <lrensing> let me rebase quick | 19:47 |
openstackgerrit | Pete Birley proposed openstack/openstack-helm master: Charts: make manifests optional for all OpenStack elements https://review.openstack.org/491543 | 19:48 |
openstackgerrit | Larry Rensing proposed openstack/openstack-helm master: Ceph OSD disk targeting https://review.openstack.org/457754 | 19:52 |
osh-chatbot3 | <lrensing> should be good to go now @rootfs | 19:52 |
*** aric49 has joined #openstack-helm | 19:53 | |
openstackgerrit | Huamin Chen proposed openstack/openstack-helm master: Ceph OSD disk targeting https://review.openstack.org/457754 | 19:53 |
openstackgerrit | Huamin Chen proposed openstack/openstack-helm master: use init container to prepare osd disks. use osd activiate in main container https://review.openstack.org/491586 | 19:53 |
osh-chatbot3 | <rootfs> Irensing: it looks i pushed wrong commit | 19:55 |
*** julim has quit IRC | 19:55 | |
osh-chatbot3 | <rootfs> my own rebase was pushed but my commit was not | 19:55 |
osh-chatbot3 | <rootfs> what's the trick to revert the rebase? | 19:56 |
openstackgerrit | Huamin Chen proposed openstack/openstack-helm master: use init container to prepare osd disks. use osd activiate in main container https://review.openstack.org/491587 | 19:59 |
portdirect | rootfs - if you use git --amend on the ps #457754 then it will manage things for you - and add you to that ps | 20:01 |
openstackgerrit | Pete Birley proposed openstack/openstack-helm master: Charts: make manifests optional for all OpenStack elements https://review.openstack.org/491543 | 20:02 |
osh-chatbot3 | <rootfs> portdirect: it is messy now, i re-downloaded the ps and am no longer able to go back | 20:05 |
openstackgerrit | Darla Ahlert proposed openstack/openstack-helm master: [WIP] Add Rally Chart https://review.openstack.org/491015 | 20:12 |
openstackgerrit | Huamin Chen proposed openstack/openstack-helm master: Ceph OSD disk targeting https://review.openstack.org/457754 | 20:15 |
osh-chatbot3 | <rootfs> Irensing: portdirect: pushed ps 21, hopefully this time i got it right | 20:16 |
*** gouthamr has quit IRC | 20:17 | |
portdirect | nice - 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 |
portdirect | will 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> sgtm | 20:21 |
osh-chatbot3 | <rootfs> i think it already baked in | 20:21 |
osh-chatbot3 | <rootfs> special node labels are needed for osd devices | 20:21 |
portdirect | yeah - this would just neaten things up a bit | 20:23 |
portdirect | and 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 script | 20:24 |
osh-chatbot3 | <rootfs> Irensing: sounds you can fix my bad ps 21 | 20:24 |
*** gouthamr has joined #openstack-helm | 20:24 | |
osh-chatbot3 | <lrensing> :slightly_smiling_face: | 20:24 |
osh-chatbot3 | <rootfs> there is never a dull moment in gerrit | 20:25 |
openstackgerrit | Larry Rensing proposed openstack/openstack-helm master: Ceph OSD disk targeting https://review.openstack.org/457754 | 20:29 |
*** gouthamr has quit IRC | 20:36 | |
*** randomha1k has joined #openstack-helm | 20:40 | |
*** randomhack has quit IRC | 20:43 | |
*** randomha1k has quit IRC | 20:44 | |
openstackgerrit | Darla Ahlert proposed openstack/openstack-helm master: [WIP] Add Rally Chart https://review.openstack.org/491015 | 20:55 |
openstackgerrit | Steve Wilkerson proposed openstack/openstack-helm master: WIP -- Add proxysql to mariadb https://review.openstack.org/487588 | 21:00 |
*** alraddarla has quit IRC | 21:04 | |
*** julim has joined #openstack-helm | 21:14 | |
*** MarkBaker has joined #openstack-helm | 21:20 | |
*** lrensing has quit IRC | 21:23 | |
openstackgerrit | Steve Wilkerson proposed openstack/openstack-helm master: Fix -- Ceph multinode https://review.openstack.org/491613 | 21:54 |
openstackgerrit | Steve Wilkerson proposed openstack/openstack-helm master: Fix -- Ceph in multinode gate https://review.openstack.org/491613 | 21:57 |
openstackgerrit | Pete Birley proposed openstack/openstack-helm master: Licence: Remove licence header from rendered files https://review.openstack.org/491614 | 22:09 |
openstackgerrit | Steve Wilkerson proposed openstack/openstack-helm master: Fix -- Ceph in multinode gate https://review.openstack.org/491613 | 22:11 |
*** aric49 has quit IRC | 22:11 | |
openstackgerrit | Pete Birley proposed openstack/openstack-helm master: Licence: Remove licence header from rendered files https://review.openstack.org/491614 | 22:13 |
openstackgerrit | Pete Birley proposed openstack/openstack-helm master: Licence: Remove licence header from rendered files https://review.openstack.org/491614 | 22:18 |
openstackgerrit | Merged openstack/openstack-helm master: Charts: make manifests optional for all OpenStack elements https://review.openstack.org/491543 | 22:28 |
*** gouthamr has joined #openstack-helm | 22:29 | |
*** marst has quit IRC | 22:36 | |
openstackgerrit | Merged openstack/openstack-helm master: Fix -- Ceph in multinode gate https://review.openstack.org/491613 | 23:09 |
*** jaypipes has quit IRC | 23:19 | |
openstackgerrit | Renis Makadia proposed openstack/openstack-helm master: WIP: Add Helm Chart for Designate https://review.openstack.org/469981 | 23:31 |
*** schwicht has quit IRC | 23:36 | |
*** StaceyF has joined #openstack-helm | 23:38 | |
*** felipemonteiro_ has quit IRC | 23:39 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!