*** tonanhngo has quit IRC | 00:00 | |
*** chas_ has quit IRC | 00:00 | |
*** chas_ has joined #openstack-kolla | 00:02 | |
*** schwicht has joined #openstack-kolla | 00:05 | |
*** srwilkers has quit IRC | 00:06 | |
*** chas_ has quit IRC | 00:07 | |
*** Pavo has quit IRC | 00:08 | |
*** Pavo has joined #openstack-kolla | 00:09 | |
*** huikang has joined #openstack-kolla | 00:12 | |
*** huikang has quit IRC | 00:14 | |
*** huikang has joined #openstack-kolla | 00:14 | |
*** zhurong has joined #openstack-kolla | 00:15 | |
*** sdake has quit IRC | 00:16 | |
*** huikang has quit IRC | 00:19 | |
*** fguillot has joined #openstack-kolla | 00:19 | |
openstackgerrit | Kevin Fox proposed openstack/kolla-kubernetes: Fix new kubeadm precheck https://review.openstack.org/395779 | 00:21 |
---|---|---|
*** zhurong has quit IRC | 00:22 | |
*** diogogmt has quit IRC | 00:23 | |
*** yingjun has joined #openstack-kolla | 00:23 | |
*** fguillot has quit IRC | 00:24 | |
*** ayoung has quit IRC | 00:24 | |
*** Pavo has quit IRC | 00:26 | |
*** Pavo has joined #openstack-kolla | 00:28 | |
*** yingjun has quit IRC | 00:31 | |
*** yingjun_ has joined #openstack-kolla | 00:31 | |
*** chas_ has joined #openstack-kolla | 00:36 | |
*** v1k0d3n has joined #openstack-kolla | 00:36 | |
*** Marcellin__ has quit IRC | 00:38 | |
*** v1k0d3n has quit IRC | 00:38 | |
*** v1k0d3n has joined #openstack-kolla | 00:38 | |
*** chas_ has quit IRC | 00:40 | |
kfox1111 | v1k0d3n: much experience with writing helm templates? | 00:45 |
Pavo | anyone around that could answer neutron questions? | 00:49 |
*** neilus has quit IRC | 00:49 | |
jascott1 | kfox1111 ive been doing "helm stuff" for the past week | 00:53 |
*** saneax is now known as saneax-_-|AFK | 00:53 | |
kfox1111 | can you reference a template in a dep in an include? | 00:53 |
*** duonghq has joined #openstack-kolla | 00:54 | |
duonghq | morning | 00:54 |
jascott1 | kfox1111 named template? | 00:55 |
kfox1111 | say I created a package called common, and dropped some stuff in it. | 00:55 |
kfox1111 | then I make a nova package. in nova/tempates/foo.yaml can I include something from nova/dependencies/common/templates/? | 00:56 |
jascott1 | doubt it | 00:57 |
kfox1111 | k. thats what I thought. just double checking though. | 00:57 |
kfox1111 | still, it looks like it has a nice include function. | 00:57 |
jascott1 | the {{ .Files }} doesnt let you pull from your own templates dir so prob not another either | 00:57 |
*** huikang has joined #openstack-kolla | 00:58 | |
kfox1111 | so I shoudl be able to maybe do it as a cp common/* nova/* in a build step. | 00:58 |
jascott1 | what are you trying to get at file wise? You can put the path and name of file in values and pass to all | 00:59 |
*** huikang has quit IRC | 00:59 | |
*** huikang has joined #openstack-kolla | 01:00 | |
jascott1 | mount common into each | 01:00 |
kfox1111 | just exploring ways of writing a chunk of code and sharing it between multiple packages. | 01:01 |
jascott1 | kfox1111 ^ thats the way i think | 01:01 |
*** huikang has quit IRC | 01:02 | |
kfox1111 | "mount"? | 01:02 |
*** huikang has joined #openstack-kolla | 01:02 | |
jascott1 | make common configmap that contains the common templates | 01:02 |
kfox1111 | that wouldn't work for instantiating parts of a template. | 01:02 |
jascott1 | add volume to nova deployment,yml and specify volume if fromConfigMap | 01:03 |
kfox1111 | include would, but can't pull form outside the dir. | 01:03 |
kfox1111 | no, this is a totally different level then that. | 01:03 |
kfox1111 | let me show you... | 01:03 |
jascott1 | you can also make each part of template a named template and reference that | 01:03 |
kfox1111 | yeah. but, | 01:04 |
kfox1111 | I want a package say for nova, and a package for neutron | 01:04 |
jascott1 | oh you mean k8s resurce templates? | 01:04 |
kfox1111 | and I want some common code shared between them. | 01:04 |
kfox1111 | yeah. | 01:04 |
jascott1 | ah | 01:04 |
jascott1 | sorry get ya now | 01:04 |
kfox1111 | like, see: services/nova/nova-libvirt-pod.yml.j2 | 01:04 |
kfox1111 | it includes service/common/common-lib.yaml.j2 (almost everything does now) | 01:05 |
kfox1111 | and can then pull in common bits like logging sidecars easily. | 01:05 |
kfox1111 | sidecar logic can then just be put in one place. | 01:05 |
kfox1111 | if there's no native suport, I'll just slip the files in during a build phase. | 01:05 |
kfox1111 | was just looking for a native helm way to do it. but not sure there is such a thing. | 01:06 |
Pavo | what does kolla-ansible genconfig do? | 01:06 |
*** neilus has joined #openstack-kolla | 01:06 | |
kfox1111 | Pavo: kolla has a nice flat config file that lets you easily config everything. | 01:06 |
kfox1111 | openstack services don't work that way though. config values must be written all over the place in the services. | 01:06 |
Pavo | what do you mean kfox1111? | 01:06 |
kfox1111 | genconfig takes the single config file and generates all the openstack service config files. | 01:06 |
Pavo | ah | 01:07 |
Pavo | ok | 01:07 |
kfox1111 | for example, you have to set the nova endpoint info in neutron and nova, and the neutron endpoint info in nova and neutron config's. you just set that in kolla's config, and run genconfig, and it does sets up all the configs. | 01:08 |
kfox1111 | much easier if you don't need really fine grained control over the specific config files. | 01:08 |
kfox1111 | (most people dont) | 01:08 |
Pavo | got it | 01:09 |
Pavo | now what does this error mean | 01:09 |
Pavo | http://paste.openstack.org/show/588639/ | 01:09 |
Pavo | I have my nodes in my deployer /etc/hosts file and have copied that over to all nodes | 01:10 |
Pavo | and have copied my ssh id over to nodes | 01:10 |
Pavo | but when I run kolla-ansible bootstrap-servers I get that error | 01:10 |
kfox1111 | not too famailor with the kolla-ansible code base. seems like it wsn't able to find an ip address | 01:10 |
jascott1 | kfox1111 instead of cp you might see if you can load chunks of named template and reuse | 01:12 |
Pavo | thanks kfox1111 you were right, API interfaces wasn't up | 01:14 |
*** mtaylor22 has joined #openstack-kolla | 01:16 | |
mtaylor22 | hello | 01:16 |
*** diogogmt has joined #openstack-kolla | 01:17 | |
Pavo | does kolla_internal_vip_address have to be on the same interface as network_interface | 01:20 |
*** yingjun_ has quit IRC | 01:21 | |
*** yingjun has joined #openstack-kolla | 01:22 | |
v1k0d3n | hey guys. kfox1111 you going ot be around for a while tonight? | 01:29 |
v1k0d3n | just headed out for dinner. | 01:30 |
v1k0d3n | def want to connect though. even some new thoughts that support inc0 | 01:30 |
*** v1k0d3n has quit IRC | 01:31 | |
*** zhurong has joined #openstack-kolla | 01:33 | |
*** chas_ has joined #openstack-kolla | 01:36 | |
Pavo | I need some Ceph help | 01:38 |
Pavo | on my controller I have 1 30Tb Ceph partition but on my compute I have 4 disk that I setup to use Ceph also, getting an error during deployment on the compute node | 01:39 |
Pavo | http://paste.openstack.org/show/588642/ | 01:40 |
Pavo | all my the disk I used for Ceph on the Compute are /dev/sdc, /dev/sdd, /dev/sde and /dev/sdf | 01:41 |
Pavo | each disk 250Gb | 01:41 |
*** chas_ has quit IRC | 01:41 | |
Pavo | I followed this guide | 01:41 |
Pavo | http://docs.openstack.org/developer/kolla/ceph-guide.html | 01:41 |
Pavo | only did the parted $DISK -s -- mklabel gpt mkpart KOLLA_CEPH_OSD_BOOTSTRAP 1 -1 part | 01:42 |
Pavo | any suggestions? | 01:42 |
Pavo | looks like its erroring out on each disk on the compute node | 01:43 |
openstackgerrit | Wang Liming proposed openstack/kolla: update source code character error https://review.openstack.org/395891 | 01:44 |
*** MarMat has quit IRC | 02:01 | |
*** schwicht has quit IRC | 02:10 | |
*** dcwangmit01 has quit IRC | 02:24 | |
*** dcwangmit01 has joined #openstack-kolla | 02:24 | |
jascott1 | any (kolla) keystone gurus in here? apache returning 500 but dont see any errors anywhere | 02:27 |
*** unicell has quit IRC | 02:31 | |
*** yuanying has quit IRC | 02:51 | |
*** Pavo has quit IRC | 02:58 | |
*** Pavo has joined #openstack-kolla | 02:59 | |
openstackgerrit | zhubingbing proposed openstack/kolla: Add support panko on README.rst https://review.openstack.org/395917 | 03:01 |
*** msimonin has quit IRC | 03:02 | |
duonghq | [OT] anybody know is there any solution for buffering than retry request? | 03:10 |
duonghq | like a proxy | 03:10 |
duonghq | with buffering/storing capability for a short time | 03:10 |
*** zhubingbing has joined #openstack-kolla | 03:11 | |
*** fragatin_ has joined #openstack-kolla | 03:32 | |
*** fragatina has quit IRC | 03:35 | |
*** fragatina has joined #openstack-kolla | 03:36 | |
*** fragatin_ has quit IRC | 03:37 | |
*** sdake has joined #openstack-kolla | 03:39 | |
*** fragatina has quit IRC | 03:40 | |
sdake | evening folks | 03:47 |
*** yuanying has joined #openstack-kolla | 03:49 | |
*** v1k0d3n has joined #openstack-kolla | 03:49 | |
Pavo | evening | 03:51 |
Pavo | sdake man I need some Ceph help | 03:51 |
sdake | pavo been rough couple days - no energy to help | 03:51 |
duonghq | evening sdake, | 03:53 |
Pavo | ok thats cool, I'll figure it out | 03:53 |
jascott1 | pavo have you asked in #ceph? | 03:58 |
Pavo | its a container issue | 03:59 |
Pavo | 42e0ee57fe86 deployer.local:4000/kolla/centos-binary-ceph-osd:3.0.1 "kolla_start" 53 minutes ago Restarting (1) 6 seconds ago | 03:59 |
jascott1 | but ceph error right? | 04:04 |
*** v1k0d3n has quit IRC | 04:06 | |
Pavo | this is the error | 04:07 |
Pavo | 2016-11-09 23:04:34.569084 7fba36f2d800 -1 ** ERROR: osd init failed: (1) Operation not permitted | 04:07 |
mtaylor22 | jascott1: what version of openstack and kolla | 04:07 |
mtaylor22 | ? | 04:07 |
Pavo | newton and kolla 3.0.0 | 04:08 |
jascott1 | im trying to run the centos-binary-keystone:3.0.1 | 04:09 |
jascott1 | think Im getting there now tho | 04:10 |
sdake | pavo selinux enabled? | 04:11 |
Pavo | shouldn't be unless thats another thing that bootstrap-servers isn't disabling | 04:11 |
Pavo | I'll check one sec | 04:11 |
Pavo | yeap its enabled | 04:12 |
Pavo | grrr | 04:12 |
Pavo | disabled and rebooting | 04:13 |
openstackgerrit | Surya Prakash Singh proposed openstack/kolla: Consistent home directory creation for all the services https://review.openstack.org/390179 | 04:16 |
*** coolsvap has joined #openstack-kolla | 04:18 | |
*** huikang has quit IRC | 04:23 | |
duonghq | Pavo, does it run? | 04:24 |
Pavo | still waiting on reboot | 04:24 |
duonghq | how many nodes do you have? | 04:24 |
Pavo | 2 | 04:24 |
Pavo | 1 controller and 1 compute | 04:24 |
duonghq | okay | 04:25 |
duonghq | how about storage | 04:25 |
*** zhubingbing has quit IRC | 04:25 | |
*** tonanhngo has joined #openstack-kolla | 04:28 | |
Pavo | storage is on the controller | 04:29 |
Pavo | so is network | 04:29 |
*** sdake has quit IRC | 04:29 | |
Pavo | selinux is disabled and still giving me the same error | 04:31 |
Pavo | gonna destroy and redeploy | 04:32 |
mtaylor22 | jascott1: docker logs -f on your container? | 04:34 |
jascott1 | mtaylor22: right now Im fixing the db connection | 04:36 |
mtaylor22 | ok | 04:36 |
jascott1 | but yeah the keystone log led me there | 04:36 |
jascott1 | thanks | 04:36 |
*** chas_ has joined #openstack-kolla | 04:39 | |
jascott1 | well, if I run keystone_manage db_sync, I can see the problem. otherwise keystone was not telling me anything | 04:41 |
jascott1 | which is less than desirable | 04:41 |
*** huikang has joined #openstack-kolla | 04:42 | |
jascott1 | which is odd, since i would think it would crash if it cant connect to db or log something at least | 04:42 |
*** chas_ has quit IRC | 04:43 | |
*** v1k0d3n has joined #openstack-kolla | 04:46 | |
Pavo | ok I'll look at this again tomorrow even after destroying and redeploying getting same error | 04:48 |
*** v1k0d3n has quit IRC | 04:51 | |
*** v1k0d3n has joined #openstack-kolla | 04:53 | |
*** v1k0d3n has quit IRC | 05:02 | |
*** v1k0d3n has joined #openstack-kolla | 05:02 | |
*** skramaja_ has joined #openstack-kolla | 05:12 | |
*** huikang has quit IRC | 05:16 | |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla: Fix neutron lbaas dashboard https://review.openstack.org/393898 | 05:16 |
*** unicell has joined #openstack-kolla | 05:17 | |
*** zhubingbing_ has joined #openstack-kolla | 05:31 | |
*** yuanying has quit IRC | 05:34 | |
openstackgerrit | Merged openstack/kolla: Add support panko on README.rst https://review.openstack.org/395917 | 05:34 |
*** huikang has joined #openstack-kolla | 05:34 | |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla: Load murano dashbaord dynamic https://review.openstack.org/395957 | 05:35 |
*** dave-mccowan has quit IRC | 05:35 | |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla: NO_MERGE: test mitaka branch https://review.openstack.org/393877 | 05:49 |
openstackgerrit | Merged openstack/kolla: Added MountFlags for Ubuntu in multinode guide https://review.openstack.org/395865 | 05:58 |
*** mtaylor22 has quit IRC | 06:03 | |
*** v1k0d3n has quit IRC | 06:04 | |
*** v1k0d3n has joined #openstack-kolla | 06:18 | |
openstackgerrit | Merged openstack/kolla: Corrects typo "requried" in kolla_docker.py https://review.openstack.org/395492 | 06:21 |
*** zhubingbing_ has quit IRC | 06:29 | |
*** zhubingbing_ has joined #openstack-kolla | 06:30 | |
*** harlowja_ has quit IRC | 06:33 | |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla: DO NOT MERGE: TEST MASTER BRANCH https://review.openstack.org/326307 | 06:34 |
*** sdake_ has joined #openstack-kolla | 06:34 | |
openstackgerrit | zhubingbing proposed openstack/kolla: Add trove role https://review.openstack.org/354901 | 06:36 |
*** chas_ has joined #openstack-kolla | 06:40 | |
*** kamtamtun has joined #openstack-kolla | 06:42 | |
*** chas_ has quit IRC | 06:45 | |
*** sdake_ has quit IRC | 06:45 | |
*** sdake has joined #openstack-kolla | 06:46 | |
openstackgerrit | zhubingbing proposed openstack/kolla: Add support freezer on README.rst https://review.openstack.org/395981 | 07:08 |
openstackgerrit | zhubingbing proposed openstack/kolla: Add support freezer on README.rst https://review.openstack.org/395981 | 07:19 |
*** zhubingbing__ has joined #openstack-kolla | 07:30 | |
*** huikang has quit IRC | 07:31 | |
*** zhubingbing_ has quit IRC | 07:33 | |
*** f13o has joined #openstack-kolla | 07:35 | |
*** openstackgerrit has quit IRC | 07:48 | |
*** openstackgerrit has joined #openstack-kolla | 07:48 | |
*** yuanying has joined #openstack-kolla | 07:55 | |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla: Using openstack_logging_debug variable in horizon https://review.openstack.org/395996 | 07:59 |
*** sdake has quit IRC | 08:00 | |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla: Load murano dashbaord dynamic https://review.openstack.org/395957 | 08:06 |
*** huikang has joined #openstack-kolla | 08:08 | |
*** huikang has quit IRC | 08:13 | |
*** msimonin has joined #openstack-kolla | 08:14 | |
*** unicell has quit IRC | 08:21 | |
*** unicell has joined #openstack-kolla | 08:21 | |
*** Serlex has joined #openstack-kolla | 08:22 | |
openstackgerrit | zhubingbing proposed openstack/kolla: Add trove role https://review.openstack.org/354901 | 08:22 |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla: Load murano dashbaord dynamic https://review.openstack.org/395957 | 08:26 |
openstackgerrit | Merged openstack/kolla: Add support freezer on README.rst https://review.openstack.org/395981 | 08:31 |
openstackgerrit | Merged openstack/kolla-kubernetes: Add advisory language to specs directory for kolla-kubernetes https://review.openstack.org/395636 | 08:33 |
*** chas_ has joined #openstack-kolla | 08:42 | |
*** chas_ has quit IRC | 08:47 | |
*** portdirect_away has quit IRC | 08:50 | |
*** chas_ has joined #openstack-kolla | 08:53 | |
*** gfidente has joined #openstack-kolla | 08:58 | |
*** strigazi_AFK is now known as strigazi | 09:01 | |
*** berendt has joined #openstack-kolla | 09:03 | |
openstackgerrit | zhubingbing proposed openstack/kolla: add panko role https://review.openstack.org/394298 | 09:06 |
*** egonzalez90 has joined #openstack-kolla | 09:11 | |
*** unicell1 has joined #openstack-kolla | 09:19 | |
*** unicell has quit IRC | 09:21 | |
openstackgerrit | Merged openstack/kolla: Skip queuing build tasks for UNMATCHED images https://review.openstack.org/393490 | 09:22 |
openstackgerrit | Merged openstack/kolla: update source code character error https://review.openstack.org/395891 | 09:24 |
*** bachp has quit IRC | 09:25 | |
openstackgerrit | Merged openstack/kolla: source doc bifrost.rst charactor error https://review.openstack.org/395586 | 09:25 |
*** tonanhngo has quit IRC | 09:32 | |
openstackgerrit | xhzhf proposed openstack/kolla: [kolla] openstack tag 3.0.0 is not available https://review.openstack.org/396044 | 09:41 |
openstackgerrit | Christian Berendt proposed openstack/kolla: Fix RST syntax issue https://review.openstack.org/396046 | 09:45 |
*** tonanhngo has joined #openstack-kolla | 09:49 | |
*** tonanhngo has quit IRC | 09:51 | |
*** msimonin has quit IRC | 10:01 | |
*** zhurong has quit IRC | 10:01 | |
*** athomas has joined #openstack-kolla | 10:06 | |
*** f13o_ has joined #openstack-kolla | 10:12 | |
*** zhubingbing__ has quit IRC | 10:14 | |
*** f13o has quit IRC | 10:14 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/kolla: Updated from global requirements https://review.openstack.org/395324 | 10:15 |
egonzalez90 | channel is quiet today ;) | 10:15 |
*** portdirect has joined #openstack-kolla | 10:18 | |
*** dwalsh has joined #openstack-kolla | 10:19 | |
*** portdirect is now known as portdirect_away | 10:19 | |
*** papacz has joined #openstack-kolla | 10:19 | |
*** portdirect_away is now known as portdirect | 10:20 | |
*** duonghq has quit IRC | 10:21 | |
*** bachp has joined #openstack-kolla | 10:22 | |
*** msimonin has joined #openstack-kolla | 10:26 | |
berendt | egonzalez90 customer satisfaction... | 10:32 |
egonzalez90 | luckly i dont deal with customers :) | 10:34 |
egonzalez90 | just say they will save money and thats it | 10:34 |
*** msimonin has quit IRC | 10:35 | |
*** msimonin has joined #openstack-kolla | 10:38 | |
*** msimonin has quit IRC | 10:39 | |
*** yingjun has quit IRC | 10:40 | |
*** stvnoyes1 has joined #openstack-kolla | 10:40 | |
*** matrohon has joined #openstack-kolla | 10:41 | |
openstackgerrit | James McCarthy proposed openstack/kolla: Missing customization of tenant network https://review.openstack.org/394988 | 10:41 |
*** msimonin has joined #openstack-kolla | 10:43 | |
*** stvnoyes has quit IRC | 10:44 | |
*** gfidente has quit IRC | 10:58 | |
*** ppalacios has joined #openstack-kolla | 11:12 | |
*** gfidente has joined #openstack-kolla | 11:17 | |
*** neilus has quit IRC | 11:23 | |
*** mliima has joined #openstack-kolla | 11:29 | |
openstackgerrit | Merged openstack/kolla: Updated from global requirements https://review.openstack.org/395324 | 11:34 |
*** mkoderer has joined #openstack-kolla | 11:54 | |
egonzalez90 | inc0, would be great if we include kolla guides into OpenStack-Docs http://lists.openstack.org/pipermail/openstack-dev/2016-November/107042.html | 11:56 |
*** tonanhngo has joined #openstack-kolla | 11:57 | |
*** tonanhngo has quit IRC | 11:59 | |
*** mliima has quit IRC | 12:01 | |
*** neilus has joined #openstack-kolla | 12:02 | |
*** haplo37 has quit IRC | 12:03 | |
*** haplo37_ is now known as haplo37 | 12:03 | |
*** jmccarthy has quit IRC | 12:03 | |
*** jmccarthy has joined #openstack-kolla | 12:04 | |
*** haplo37_ has joined #openstack-kolla | 12:06 | |
openstackgerrit | Wei Cao proposed openstack/kolla: Add karbor container https://review.openstack.org/395006 | 12:06 |
*** neilus has quit IRC | 12:06 | |
*** caowei_ has joined #openstack-kolla | 12:09 | |
openstackgerrit | Zeyu Zhu proposed openstack/kolla: Visit target nodes without password. https://review.openstack.org/368524 | 12:10 |
*** fragatina has joined #openstack-kolla | 12:11 | |
*** fragatina has quit IRC | 12:11 | |
*** fragatina has joined #openstack-kolla | 12:12 | |
*** f13o__ has joined #openstack-kolla | 12:14 | |
*** tyrola_ has joined #openstack-kolla | 12:15 | |
*** Mech422 has quit IRC | 12:17 | |
*** Mech422 has joined #openstack-kolla | 12:17 | |
*** f13o_ has quit IRC | 12:17 | |
*** tyrola has quit IRC | 12:17 | |
openstackgerrit | Wei Cao proposed openstack/kolla: Add freezer to PROFILE_OPTS of common/config.py https://review.openstack.org/396161 | 12:21 |
*** mliima has joined #openstack-kolla | 12:25 | |
*** dwalsh has quit IRC | 12:27 | |
*** neilus has joined #openstack-kolla | 12:36 | |
*** yingjun has joined #openstack-kolla | 12:37 | |
*** Mech422 has quit IRC | 12:39 | |
*** Mech422 has joined #openstack-kolla | 12:40 | |
*** zhurong has joined #openstack-kolla | 12:46 | |
*** schwicht has joined #openstack-kolla | 12:49 | |
*** eaguilar has joined #openstack-kolla | 12:53 | |
*** portdirect has quit IRC | 12:57 | |
*** srwilkers has joined #openstack-kolla | 12:57 | |
*** zhubingbing_ has joined #openstack-kolla | 13:03 | |
*** schwicht has quit IRC | 13:05 | |
*** neilus has quit IRC | 13:06 | |
*** neilus has joined #openstack-kolla | 13:06 | |
*** neilus has quit IRC | 13:07 | |
*** neilus has joined #openstack-kolla | 13:07 | |
*** dwalsh has joined #openstack-kolla | 13:09 | |
*** eaguilar has quit IRC | 13:12 | |
*** coolsvap has quit IRC | 13:13 | |
*** eaguilar has joined #openstack-kolla | 13:16 | |
*** zhubingbing_ has quit IRC | 13:20 | |
*** lamt has joined #openstack-kolla | 13:20 | |
*** yingjun has quit IRC | 13:22 | |
*** yingjun has joined #openstack-kolla | 13:22 | |
*** yingjun has quit IRC | 13:27 | |
*** zhubingbing_ has joined #openstack-kolla | 13:31 | |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla: Set uuid as keystone torken provider in default https://review.openstack.org/396193 | 13:32 |
*** huikang has joined #openstack-kolla | 13:33 | |
*** fragatina has quit IRC | 13:33 | |
*** rhallisey has joined #openstack-kolla | 13:36 | |
*** huikang has quit IRC | 13:37 | |
openstackgerrit | zhubingbing proposed openstack/kolla: add panko role https://review.openstack.org/394298 | 13:38 |
*** eaguilar has quit IRC | 13:39 | |
*** eaguilar has joined #openstack-kolla | 13:42 | |
*** dave-mccowan has joined #openstack-kolla | 13:43 | |
*** rhallisey has quit IRC | 13:43 | |
*** kamtamtun has quit IRC | 13:45 | |
*** fguillot has joined #openstack-kolla | 13:46 | |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla: Use uuid as keystone default token provider https://review.openstack.org/396193 | 13:46 |
*** eaguilar_ has joined #openstack-kolla | 13:48 | |
*** jheroux has joined #openstack-kolla | 13:48 | |
zhubingbing_ | https://review.openstack.org/#/c/353261/ | 13:50 |
zhubingbing_ | who can help me review it | 13:50 |
*** eaguilar has quit IRC | 13:51 | |
*** yingjun has joined #openstack-kolla | 13:54 | |
*** rhallisey has joined #openstack-kolla | 13:56 | |
*** yingjun has quit IRC | 13:58 | |
*** athomas has quit IRC | 13:59 | |
*** tonanhngo has joined #openstack-kolla | 14:01 | |
*** tonanhngo has quit IRC | 14:02 | |
*** athomas has joined #openstack-kolla | 14:04 | |
*** dwalsh has quit IRC | 14:05 | |
*** portdirect has joined #openstack-kolla | 14:08 | |
openstackgerrit | zhubingbing proposed openstack/kolla: change docker.server to docker.service in kuryr-guide.rst https://review.openstack.org/396216 | 14:08 |
*** portdirect_ has joined #openstack-kolla | 14:13 | |
*** DanyC has joined #openstack-kolla | 14:14 | |
*** zhubingbing_ has quit IRC | 14:14 | |
*** eaguilar_ has quit IRC | 14:14 | |
*** portdirect has quit IRC | 14:15 | |
*** zhubingbing_ has joined #openstack-kolla | 14:16 | |
*** tonanhngo has joined #openstack-kolla | 14:17 | |
*** inc0 has joined #openstack-kolla | 14:18 | |
*** tonanhngo has quit IRC | 14:18 | |
inc0 | good morning | 14:18 |
inc0 | sean-k-mooney, check that out https://review.openstack.org/#/c/395851/ :) | 14:20 |
*** jtriley has joined #openstack-kolla | 14:20 | |
egonzalez90 | inc0, would be great if we include kolla guides into OpenStack-Docs http://lists.openstack.org/pipermail/openstack-dev/2016-November/107042.html | 14:20 |
inc0 | egonzalez90, working on it | 14:21 |
egonzalez90 | cool | 14:21 |
*** DanyC has left #openstack-kolla | 14:22 | |
openstackgerrit | Merged openstack/kolla: Using openstack_logging_debug variable in horizon https://review.openstack.org/395996 | 14:24 |
zhubingbing_ | morning inc0 | 14:27 |
zhubingbing_ | https://review.openstack.org/#/c/396216/ | 14:27 |
*** eaguilar has joined #openstack-kolla | 14:28 | |
*** zhubingbing_ has quit IRC | 14:28 | |
*** zhubingbing has joined #openstack-kolla | 14:28 | |
*** mgiles has joined #openstack-kolla | 14:29 | |
openstackgerrit | Mauricio Lima proposed openstack/kolla: Use horizon_logging_debug variable https://review.openstack.org/396235 | 14:29 |
awiddersheim | could use some more reviews | 14:31 |
awiddersheim | https://review.openstack.org/#/c/279913/ | 14:31 |
kfox1111 | morning | 14:32 |
*** mkoderer has quit IRC | 14:33 | |
rhallisey | hey kfox1111 | 14:34 |
inc0 | v1k0d3n, up already? | 14:34 |
kfox1111 | rhallisey: https://review.openstack.org/#/c/395779/ please. | 14:35 |
kfox1111 | fixes the gate | 14:35 |
openstackgerrit | Merged openstack/kolla: Fix plugin parsing for base images https://review.openstack.org/394267 | 14:35 |
rhallisey | kfox1111, gotcha | 14:37 |
*** eaguilar has quit IRC | 14:37 | |
openstackgerrit | Merged openstack/kolla-kubernetes: Fix new kubeadm precheck https://review.openstack.org/395779 | 14:40 |
*** sdake has joined #openstack-kolla | 14:43 | |
kfox1111 | thx. :) | 14:46 |
inc0 | kfox1111, sdake v1k0d3n rhallisey who want's a fight? I have few ideas about operators | 14:49 |
sdake | leave me alone for now plz thanks | 14:50 |
rhallisey | lol | 14:50 |
inc0 | lmao | 14:50 |
inc0 | sdake, can you make intro to ansible guy today? | 14:50 |
sdake | let me wake up | 14:51 |
*** schwicht has joined #openstack-kolla | 14:51 | |
inc0 | anyway, let's make a hangout later today please guys, we need to get this rolling and it's architecturally non-trivial (operators) | 14:51 |
kfox1111 | inc0: I'm game. :) | 14:53 |
inc0 | I'd love to have sdake and v1k0d3n there too, but I guess they need caffeine flow | 14:54 |
*** huikang has joined #openstack-kolla | 14:54 | |
sdake | use irc - hangouts are not recorded | 14:54 |
sdake | hence it tkaes a week to get everyone back in sync | 14:55 |
inc0 | they can be | 14:55 |
sdake | i am not watching a hangout | 14:55 |
kfox1111 | later today's probably better for me to for a hangout too. | 14:55 |
inc0 | hangouts will be more condensed | 14:55 |
inc0 | voice is more effective than writing | 14:55 |
sdake | its faster | 14:55 |
kfox1111 | maybe hangout for a quick attempt at getting everyone more on the same page, then rehash on irc? | 14:55 |
sdake | irc is slower | 14:55 |
sdake | trust me you want slower | 14:55 |
inc0 | not only faster | 14:55 |
inc0 | get's people more concentrated, focused | 14:56 |
inc0 | we need brainstorm not a debate | 14:56 |
sdake | the spec is rolling on | 14:56 |
sdake | just let that play out | 14:56 |
sdake | or alternavely don't listen to me | 14:56 |
sdake | ;) | 14:56 |
inc0 | trust me, if you'd see what's in my brain now, you'd want brainstrom too | 14:56 |
kfox1111 | the spec's kind of high level. which is good. | 14:56 |
inc0 | saying "operators!" means nothing | 14:57 |
inc0 | we need to get to meaty stuff | 14:57 |
kfox1111 | I think theres some more, lower level details to discus, which I think is what we're talking about. | 14:57 |
inc0 | we can get to some consesnus on hangouts and summarize it in spec or wherever | 14:57 |
sdake | again not in for a fight today - leave me alone plz :) | 14:57 |
inc0 | but I'm not having this conversation in spec as it will take months | 14:57 |
openstackgerrit | Bertrand Lallau proposed openstack/kolla: Fix mistake in production-architecture-guide.rst https://review.openstack.org/396261 | 14:58 |
sdake | the spec has a summary | 14:58 |
*** TxGirlGeek has joined #openstack-kolla | 14:59 | |
*** yingjun has joined #openstack-kolla | 14:59 | |
rhallisey | we can add details to the spec | 15:00 |
*** mgoddard_ has joined #openstack-kolla | 15:01 | |
*** jtriley has quit IRC | 15:03 | |
*** mgoddard has quit IRC | 15:04 | |
inc0 | I am not having distributed systems discussion in spec comments, fyi, we can summarize it in spec, but I need voice | 15:06 |
*** diogogmt has quit IRC | 15:07 | |
sdake | it takes me couple of days to process a conference | 15:09 |
sdake | if you insist on a hangout recommend monday | 15:09 |
*** jtriley has joined #openstack-kolla | 15:10 | |
inc0 | fair, but I want to get ideas out while they're fresh, so I'll have open hangouts later today, who wants to join, feel free to do so | 15:10 |
sdake | again the sync thing | 15:11 |
inc0 | no decisions, just idea planting | 15:11 |
sdake | inc0 join #ansible pls - not sure if badger is awake at this hour or not | 15:12 |
sdake | inc0 good timing on #ansible re meeting and open items section | 15:24 |
inc0 | y | 15:24 |
*** zhurong has quit IRC | 15:24 | |
openstackgerrit | James McCarthy proposed openstack/kolla: [WIP] Add more options for cinder-backup. https://review.openstack.org/396284 | 15:24 |
*** portdirect_ is now known as portdirect | 15:33 | |
openstackgerrit | Ryan Hallisey proposed openstack/kolla-kubernetes: Spec - Kolla-Kubernetes Deployment Architecture https://review.openstack.org/392257 | 15:35 |
*** caowei_ has quit IRC | 15:36 | |
openstackgerrit | Kevin Fox proposed openstack/kolla-kubernetes: WIP Add helm. https://review.openstack.org/396296 | 15:38 |
*** lrensing has joined #openstack-kolla | 15:41 | |
*** ayoung has joined #openstack-kolla | 15:43 | |
openstackgerrit | James McCarthy proposed openstack/kolla: [WIP] Add more options for cinder-backup. https://review.openstack.org/396284 | 15:43 |
*** ayoung has quit IRC | 15:50 | |
*** mgoddard_ has quit IRC | 15:50 | |
*** tonanhngo has joined #openstack-kolla | 15:58 | |
*** diogogmt has joined #openstack-kolla | 15:58 | |
*** tonanhngo has quit IRC | 15:58 | |
*** mgoddard has joined #openstack-kolla | 15:59 | |
*** tonanhngo has joined #openstack-kolla | 16:00 | |
*** jtriley has quit IRC | 16:02 | |
*** jtriley has joined #openstack-kolla | 16:02 | |
*** mliima_ has joined #openstack-kolla | 16:02 | |
*** ayoung has joined #openstack-kolla | 16:04 | |
*** mliima has quit IRC | 16:05 | |
*** DanyC has joined #openstack-kolla | 16:06 | |
*** DanyC has quit IRC | 16:11 | |
openstackgerrit | James McCarthy proposed openstack/kolla: [WIP] Add more options for cinder-backup. https://review.openstack.org/396284 | 16:12 |
Pavo | morning | 16:12 |
srwilkers | good morning Pavo | 16:13 |
Pavo | morning srwilkers | 16:13 |
sdake | morning pavo | 16:15 |
Pavo | morning sdake | 16:15 |
Pavo | seems like you been having some bad days here lately, you feeling alright? | 16:16 |
srwilkers | i think the cncf/kubecon(?) and operator discussions have been making everyone a little crazy | 16:18 |
sdake | pavo no bad days | 16:19 |
sdake | pavo been busy | 16:19 |
Pavo | yeah I know the feeling | 16:19 |
*** zhubingbing has quit IRC | 16:20 | |
Pavo | so..... I thinking my Ceph issue is the partition that I am using Ceph on is 22x 1.5Tb SAS SSDs in a RAID 5 config | 16:27 |
Pavo | gonna break those out to individual drives and individual partitions | 16:27 |
kfox1111 | srwilkers: its always hard to judge tone in pure text. I think its been a hard discussion to have, but I don't think there are much hard feelings around it. | 16:28 |
srwilkers | kfox1111: i agree, it was less about hard feelings, more about spirited discussion for why | 16:28 |
srwilkers | kfox1111, which is a good thing either way | 16:29 |
kfox1111 | Pavo: yeah.I think it might perform better that way anyway. the raid controller would probably ad a lot of overhead there. | 16:29 |
srwilkers | ive learned more about them in the past few days than i expected to | 16:29 |
srwilkers | purely based off the discussion here | 16:29 |
kfox1111 | srwilkers: yeah. :) | 16:29 |
*** mark-casey1 has joined #openstack-kolla | 16:30 | |
Pavo | kfox1111 yeah after doing some reading on Ceph its not really designed to use on RAID from my understanding | 16:30 |
kfox1111 | yes/no. we do it on one of our clusters. | 16:30 |
*** yingjun has quit IRC | 16:31 | |
kfox1111 | the way its designed though, it doesn't need raid. | 16:31 |
*** f13o__ has quit IRC | 16:31 | |
Pavo | rgr | 16:31 |
*** yingjun has joined #openstack-kolla | 16:31 | |
kfox1111 | so raid just adds extra overhead. | 16:31 |
*** harlowja has joined #openstack-kolla | 16:31 | |
kfox1111 | it is basically raid across machines, rather then raid within a node. | 16:31 |
*** harlowja has quit IRC | 16:32 | |
mark-casey1 | any neutron gurus about? Last night shortly after deploying it I could ping/ssh VMs on their floating IPs on a setup pretty similar to what the init-runonce script sets up. This morning VMs start and floating IP will associate but I can't reach them. | 16:32 |
openstackgerrit | Kevin Fox proposed openstack/kolla-kubernetes: WIP Add helm. https://review.openstack.org/396296 | 16:33 |
mark-casey1 | I can ping the "LAN-public" IP in the Floating range that the router between demo-net and public1 took | 16:33 |
kfox1111 | mark-casey1: and nothing changed? | 16:34 |
mark-casey1 | I went home and slept for a few hours :D | 16:34 |
*** harlowja has joined #openstack-kolla | 16:34 | |
mark-casey1 | other than that not as far as I can tell | 16:34 |
kfox1111 | I' haven't seen neutron break like that without changes. usually after you get it working, it stays working. | 16:35 |
kfox1111 | very strange. | 16:35 |
*** yingjun has quit IRC | 16:35 | |
kfox1111 | there isn't much dynamic that happens, other then maybe a dhcp failing to refresh in a vm | 16:35 |
kfox1111 | or some process on the host messes with things? | 16:36 |
kfox1111 | are your physical hosts config managed? | 16:36 |
kfox1111 | chef/puppet/cfengine/etc? | 16:36 |
mark-casey1 | no only through Kolla's ansible use | 16:36 |
Pavo | sometimes VMs when going from shutdown to start they don't hit the metadata service | 16:36 |
Pavo | I would try rebooting the VM from within the VM | 16:37 |
mark-casey1 | Pavo ok I'll try it. | 16:37 |
mark-casey1 | kfox1111: Pavo: If this is not an immediate "oh that's such and such" then I'll just need to go dig in. The underlying OS is coreos so I don't want to drag folks around too much on what is probably just that. | 16:40 |
portdirect | mark-casey1: first thing I awlays check is weiether i can ping the router from within the VM/and or curl the metadata service, then double check security groups (just because I'm an idiot - i've spent ages debugging stuff just to realise its working perfectly but I've not opened up ICMP/port 22) | 16:41 |
kfox1111 | ah. haven't ever played with coreos. been meaning to. | 16:41 |
mark-casey1 | just wanted to make sure it wasn't one of these like forgetting /run shared, private registry, etc | 16:41 |
kfox1111 | something breaking like that without touching is very strange to me though. | 16:41 |
kfox1111 | I'd be wondering if something on the host was trying to be helpful. cronjob or something. | 16:41 |
mark-casey1 | I've stopped a few coreos-specific things like its update service. I'd certainly take any help tracing it through but I'm happy to go dig around a bit and report back if interesting | 16:42 |
mark-casey1 | (auto-rebooting update service, that is) | 16:43 |
kfox1111 | hmm... I don't think kolla-ansible sets things up in such a way as a rebooted node will come backup and just work. | 16:44 |
kfox1111 | you have to run kolla-ansible again I think. | 16:44 |
kfox1111 | so maybe it updated/rebooted? | 16:44 |
mark-casey1 | kfox1111: kolla-ansible reconfigure? | 16:49 |
kfox1111 | I don't know. don't know much about kolla-ansible. | 16:50 |
kfox1111 | sounds like probably the right thing. but someone else here might know better. | 16:50 |
mark-casey1 | no worries thx :) | 16:50 |
*** bmace has quit IRC | 16:50 | |
*** eaguilar has joined #openstack-kolla | 16:51 | |
*** bmace has joined #openstack-kolla | 16:51 | |
openstackgerrit | Kevin Fox proposed openstack/kolla-kubernetes: WIP Add helm. https://review.openstack.org/396296 | 16:51 |
*** mgoddard_ has joined #openstack-kolla | 16:51 | |
*** eaguilar_ has joined #openstack-kolla | 16:52 | |
*** mgoddard has quit IRC | 16:54 | |
*** eaguilar has quit IRC | 16:55 | |
*** DanyC has joined #openstack-kolla | 16:57 | |
mark-casey1 | portdirect: I'll try that ping from within the VM, too. THanks | 16:58 |
openstackgerrit | James McCarthy proposed openstack/kolla: [WIP] Add more options for cinder-backup. https://review.openstack.org/396284 | 17:02 |
*** egonzalez90 has quit IRC | 17:03 | |
sean-k-mooney | inc0: regarding https://review.openstack.org/#/c/395851 awsome ill check it out early next week. | 17:09 |
openstackgerrit | Kevin Fox proposed openstack/kolla-kubernetes: WIP Add helm. https://review.openstack.org/396296 | 17:09 |
*** mgoddard has joined #openstack-kolla | 17:11 | |
*** mgoddard_ has quit IRC | 17:11 | |
sean-k-mooney | inc0: in addtion to injecting a task after a existing task we should be able to extend this to allow replacement too correct | 17:13 |
inc0 | yeah, this is just pox | 17:14 |
inc0 | poc | 17:14 |
sean-k-mooney | inc0: cool to use this for ovs with dpdk i would have to replace the plays that start kernel ovs but this is definetly a nice start. its also very little code | 17:15 |
sean-k-mooney | inc0: i take it that the issue with the licencing is that the ansible python modules are gpl? | 17:17 |
inc0 | yeah | 17:18 |
sean-k-mooney | inc0: would a viaable option be to add the stragy plugin as a seperate repo? e.g. not in kolla | 17:18 |
inc0 | but I briefly throw this on ansible | 17:18 |
*** strigazi is now known as strigazi_AFK | 17:18 | |
inc0 | and we might even have it in ansible itself | 17:19 |
*** msimonin has quit IRC | 17:19 | |
inc0 | just a problem to be solved | 17:19 |
inc0 | separate project also works | 17:19 |
jemcevoy | sdake: I am finalizing my cobbler kickstart config CentOS7 to install on 1TB RAID1. Since these are 4Kn disks I have to boot with EFI. What type of filesystem should I be using? lvm with (ext4 or xfs) or btrfs? Is btrfs ready for production? Does it work better with docker? | 17:19 |
sean-k-mooney | ok well thanks for sharing it will be interesting to test out. | 17:20 |
v1k0d3n | hey guys...just talked with inc0 and shared with him a multi-node kube dev environment folks could use for kolla-kube (if you want). | 17:20 |
kfox1111 | I've had better luck with btrfs then with lvm. | 17:20 |
v1k0d3n | https://github.com/att-comdev/halcyon-vagrant-kubernetes | 17:20 |
v1k0d3n | dont as a submodule, so if you want to just use the playbooks against baremetal = fine. | 17:20 |
v1k0d3n | if you want to use vagrant to deploy locally or to openstack tenants = fine. | 17:21 |
kfox1111 | works with kvm? | 17:21 |
v1k0d3n | pick your SDN (overlay, L3, policies etc) all good. | 17:21 |
v1k0d3n | hmmm...virtualbox. | 17:21 |
kfox1111 | I don't use virtualbox. kvm. | 17:22 |
v1k0d3n | i suppose kvm could be added as a flag just like vbox or openstack though. | 17:22 |
kfox1111 | never got vagrent to work well with kvm. | 17:22 |
v1k0d3n | that should be fine. | 17:22 |
kfox1111 | so I don't use vagrent. :/ | 17:22 |
kfox1111 | though its been a while since I tried last. | 17:22 |
srwilkers | i think ive managed to get it working once, but yeah. took some patience | 17:22 |
v1k0d3n | kfox1111: vagrant plugin install vagrant-libvirt | 17:23 |
sean-k-mooney | v1k0d3n: so if i point this at a running openstack with kvm will that work? | 17:23 |
kfox1111 | I usually use kvm/openstack, so can't launch vagrent at the same time, since it doens't play well with kvm. | 17:23 |
v1k0d3n | so could look like the section of openstack, but just need some of the libvirt-ish bits. | 17:23 |
inc0 | doesn't vagrant know how to openstack tho? | 17:23 |
v1k0d3n | sean-k-mooney: the openstack portion will work. uses the API for openstack. | 17:23 |
v1k0d3n | look at the config.rb file for variables. | 17:23 |
kfox1111 | k. I'll put it back on the todo list. :) | 17:24 |
v1k0d3n | this does yes | 17:24 |
jemcevoy | kfox1111: Thanks... I will start learning about btrfs. | 17:24 |
v1k0d3n | kfox1111: just submit a PR if you play with it and get it working. | 17:24 |
inc0 | jemcevoy, ubuntu 16 goes btrfs all in | 17:24 |
v1k0d3n | your case of using kvm locally is one to consider. | 17:24 |
*** yee379 has quit IRC | 17:24 | |
inc0 | so I guess they will also try to make it prod-ready:) | 17:25 |
v1k0d3n | srwilkers: we can explore the kvm part too, since you have a nix workstation now. | 17:25 |
v1k0d3n | it would be a required plugin just like the opensack one. | 17:25 |
*** matrohon has quit IRC | 17:25 | |
srwilkers | v1k0d3n: yeah, good idea | 17:25 |
v1k0d3n | srwilkers: it would look similar to https://github.com/att-comdev/halcyon-vagrant-kubernetes/blob/master/Vagrantfile#L34-L35 | 17:26 |
v1k0d3n | sean-k-mooney: if you're considering with openstack...just do this part... | 17:27 |
v1k0d3n | https://github.com/att-comdev/halcyon-vagrant-kubernetes/blob/master/Vagrantfile#L41-L44 | 17:27 |
v1k0d3n | and then use this template... | 17:27 |
v1k0d3n | https://github.com/att-comdev/halcyon-vagrant-kubernetes/blob/master/config.rb#L28-L40 | 17:27 |
jemcevoy | inc0: building a small cluster for a picky customer... Going with stable/newton on CentOS7... If the filesystem is btrfs does docker use btrfs volumes? Could someone point me to some documentation on docker v btrfs? | 17:27 |
inc0 | jemcevoy, https://github.com/openstack/kolla/blob/master/doc/production-architecture-guide.rst#storage-driver | 17:28 |
v1k0d3n | i used to use only this openstack portion for a while. if you catch an issue...let me know. definitely want that part working as our guys will use a lot soon. | 17:28 |
inc0 | there is link to docker docs regarding storage drivers | 17:28 |
jemcevoy | inc0: thanks | 17:29 |
openstackgerrit | Farid Da Encarnacao proposed openstack/kolla: Corrects typo "mondodb_port" in ceilometer https://review.openstack.org/396329 | 17:33 |
*** eaguilar_ has quit IRC | 17:33 | |
*** unicell1 has quit IRC | 17:35 | |
*** v1k0d3n has quit IRC | 17:39 | |
mark-casey1 | kfox1111: Pavo: portdirect: For my neutron question earlier regarding my deploy on CoreOS... after 'kolla-ansible reconfigure' I web-consoled into a cirros VM with a floating IP (".222") and it can ping the router's IP from the floating range (".223"), it can ping the physical ".1" router on the LAN that the public1 external network connects to, and it can ping the Internet. It cannot ping another instance using floating IP (".2 | 17:44 |
portdirect | mark-casey1: think your message got cur off after 'ping another instance using floating IP (".2' can you ping an instance on the same subnet? | 17:46 |
mark-casey1 | another instance using floating IP (".221"). From my machine the only thing I cannot ping is either instances floating IP - I can reach the ".223" router | 17:47 |
mark-casey1 | no I cannot | 17:47 |
mark-casey1 | sorry long :) | 17:47 |
mark-casey1 | they can't seem to reach one-another | 17:47 |
portdirect | mark-casey1: are they on the same phsical host? | 17:47 |
*** msimonin has joined #openstack-kolla | 17:51 | |
portdirect | mark-casey1: I'd recommend reapplying the security group rules to the vm's making sure ICMP and port 22/tcp (at least) are open for ingress and egress - I've been in a situation very much like yours before where outbound traffic from vm's works fine but iptables on the host has got messed up for ingress to vm's. | 17:52 |
portdirect | *sounds like yours - the wonderfull world of networking allways throws up new and weird ways to confuse you :) | 17:53 |
*** msimonin has quit IRC | 17:53 | |
mark-casey1 | :D yea. ok I'll try that. the instances are on the same physical host, one can ping the other on the demo-net/tennant-private IP. | 17:57 |
mark-casey1 | interestingly... when I launch an instance it forces me to choose a private network to make Launch clickable... but it seems to be defaulting to having that network too so I'm getting 2-3 tennant-private IPs per instance | 17:57 |
*** mgoddard_ has joined #openstack-kolla | 17:58 | |
mark-casey1 | OH | 17:58 |
mark-casey1 | thta was it actually | 17:58 |
mark-casey1 | I have to associate the floating IP with the one of the 2-3 tennant-private IPs that it is actually wiring up for me | 17:58 |
*** DanyC has quit IRC | 17:59 | |
mark-casey1 | it was kind of a hint that inter-instance private traffic only worked on one of those IPs per instance | 17:59 |
*** pbourke has quit IRC | 18:01 | |
*** mgoddard has quit IRC | 18:02 | |
*** pbourke has joined #openstack-kolla | 18:03 | |
inc0 | who's up for impromptu kolla-k8s brainstorm hangout 2 hrs from now? | 18:04 |
inc0 | kfox1111, srwilkers jascott1 qwang rhallisey sdake | 18:04 |
rhallisey | sure | 18:04 |
kfox1111 | inc0: sure. | 18:04 |
sdake | yup | 18:05 |
inc0 | ok stay put I'll post link here | 18:05 |
*** schwicht has quit IRC | 18:05 | |
sdake | and v1k0d3n? | 18:05 |
qwang | yep | 18:05 |
inc0 | he's flying around | 18:05 |
inc0 | but I already talked to him today | 18:05 |
sdake | there aere some other folks on the spec that should be in there | 18:05 |
sdake | ought to see if they are around | 18:05 |
inc0 | meeting will be totally open | 18:05 |
*** schwicht has joined #openstack-kolla | 18:05 | |
sdake | what i mean is they shouldbe pinged ;) | 18:06 |
inc0 | don't know all the names | 18:06 |
sdake | dont' expect em to look beutfiul | 18:06 |
*** msimonin has joined #openstack-kolla | 18:06 | |
inc0 | portdirect mignt be interested if you want to stay awake;) | 18:06 |
sdake | im looking pretty ragged at m;) | 18:06 |
inc0 | you can use hangouts without cam;) | 18:06 |
sdake | yes but it turns the damn thing on on start | 18:07 |
inc0 | it's your voice I need, not face | 18:07 |
sdake | and we might as well have cams on :) | 18:07 |
inc0 | I don't have cam on my PC | 18:07 |
*** DanyC has joined #openstack-kolla | 18:07 | |
sdake | well if you dont have it you dont have it | 18:07 |
qwang | sdake: put a sticker on your camera :) | 18:07 |
sdake | hey qwang - new to community | 18:08 |
inc0 | yeah, nobody hacks a sticker | 18:08 |
qwang | sdake: hi. I've been here for a little while, still new though | 18:09 |
jascott1 | inc0 we have staff meeting at that time | 18:11 |
*** unicell has joined #openstack-kolla | 18:11 | |
inc0 | do we? | 18:12 |
inc0 | ah fuck | 18:12 |
kfox1111 | push back an hour? | 18:12 |
inc0 | back - I can't do | 18:12 |
inc0 | TxGirlGeek, sorry:( | 18:12 |
*** DanyC has left #openstack-kolla | 18:13 | |
inc0 | I'll skip this meeting | 18:13 |
inc0 | impromptu brainstorm is important for me, let's meet regardless | 18:13 |
inc0 | jascott1, qwang you can join brainstorm later | 18:13 |
TxGirlGeek | do I need to push staff inc0 ? | 18:14 |
inc0 | do you need me in staff? | 18:14 |
*** papacz has quit IRC | 18:15 | |
sdake | can we push back an hour if you have a conflict then? | 18:15 |
inc0 | no, I also have conflict back an hour;) | 18:16 |
*** krtaylor has joined #openstack-kolla | 18:19 | |
*** f13o has joined #openstack-kolla | 18:22 | |
sdake | say when is this impromtu meeting agagin | 18:24 |
sdake | can someone fix the topic | 18:24 |
sdake | 3.0.0 sailed 4 weeks ago | 18:24 |
sdake | my creds are busted again | 18:24 |
kfox1111 | fasinating... | 18:25 |
kfox1111 | https://github.com/kubernetes/helm/blob/master/docs/charts_hooks.md | 18:25 |
*** DanyC has joined #openstack-kolla | 18:25 | |
*** ChanServ sets mode: +o inc0 | 18:25 | |
kfox1111 | that ^---- looks like a way to eliminate a lot of the need for operators. | 18:26 |
*** inc0 changes topic to "New to Kolla? Please read the documentation here: http://docs.openstack.org/developer/kolla/; Kolla IRC meetngs on Wednesdays @ 16:00 UTC - see agenda @ https://goo.gl/OXB0DL - IRC channel is *LOGGED* @ http://goo.gl/3mzZ7b (old logs from #kolla http://goo.gl/VKpPzA)" | 18:26 | |
*** inc0 changes topic to "New to Kolla? Please read the documentation here: http://docs.openstack.org/developer/kolla/; Kolla IRC meetngs on Wednesdays @ 16:00 UTC - see agenda @ https://goo.gl/OXB0DL - IRC channel is *LOGGED* @ http://goo.gl/3mzZ7b (old logs from #kolla http://goo.gl/VKpPzA); w00t for Kolla!" | 18:26 | |
*** ChanServ sets mode: +o inc0 | 18:26 | |
*** inc0 sets mode: -o inc0 | 18:27 | |
*** DanyC has left #openstack-kolla | 18:27 | |
bmace | hey folks. i updated this a while back to add in support for stop into the kolla-ansible command, if folks could take a re-look at some point. https://review.openstack.org/#/c/388254/ | 18:27 |
inc0 | interesting indeed kfox1111 | 18:27 |
portdirect | inc0: I'm up :) | 18:28 |
kfox1111 | it doesn't eliminate the need I think, but may push things more towards operators just for high level things like servcies/compute kit and not at a per resource level. | 18:28 |
portdirect | kfox1111: yeah the hooks are why i got exited about helm :) | 18:29 |
portdirect | mark-casey1: glad you got there - I've had it happen to me a few times (in my case it was kube-proxy that used to erracticly murder the l3 agent's iptables) took me days to track it down... | 18:31 |
kfox1111 | so, we have a lot of tools at our disposal, and its not entirely clear which is best for what yet. | 18:31 |
sdake | kfox1111 fwiw, i told v1k0d3n i'd bet 1 dollar against 100 that helm would grow orchestration features | 18:34 |
sdake | 1 australian dollar in fact! | 18:35 |
sdake | what time is this hangout | 18:35 |
sdake | i may have a conflict | 18:35 |
sdake | i have meeting in 1.5 hrs | 18:36 |
sdake | bmace you got it | 18:36 |
bmace | thanks sdake | 18:38 |
sdake | bmace can you answer jeffrey's Q | 18:38 |
sdake | bmace re use case | 18:38 |
*** lrensing has quit IRC | 18:38 | |
bmace | the use case of stopping a host? | 18:39 |
sdake | his question was "What is the use case of stopping the whole cluster." | 18:40 |
sdake | (in gerrit an answer is needed i think) | 18:40 |
bmace | you don't have to stop the whole cluster | 18:40 |
sdake | dont answer here answer in review pls ;) | 18:40 |
*** shardy has quit IRC | 18:41 | |
sdake | also not sure if folks saw this tweet: | 18:41 |
*** schwicht has quit IRC | 18:42 | |
sdake | https://twitter.com/kmbannerman/status/796119846941376512 | 18:42 |
*** DanyC_ has joined #openstack-kolla | 18:43 | |
kfox1111 | sdake: yeah. some amount of orchestration in the package manager makes a lot of sense. both rpm and debs do it too. | 18:43 |
*** schwicht has joined #openstack-kolla | 18:43 | |
sdake | controllers offer more capabilities though | 18:44 |
kfox1111 | but, just like you could build a whole orchestration system on top of just bundling rpms/debs, its not relly a good idea for large complicated things though. | 18:44 |
sdake | e.g. rabbitmq dropping alot of msgs, we may want some policy to restart it if its misbehaving | 18:44 |
sdake | which it does all the damn time | 18:44 |
*** DanyC_ has left #openstack-kolla | 18:44 | |
sdake | kfox1111 right agree | 18:44 |
*** DanyC_ has joined #openstack-kolla | 18:45 | |
kfox1111 | so we may have to come up with a convention of what belongs in an operator and what in a helm package. | 18:45 |
kfox1111 | I almost want to just say we should helm up a few of our things and then see where helm fits nicely and where it doesnt. would then have a better idea to start applying operators. | 18:46 |
openstackgerrit | Farid Da Encarnacao proposed openstack/kolla: Corrects typo "mondodb_port" in ceilometer https://review.openstack.org/396329 | 18:46 |
*** krtaylor has quit IRC | 18:46 | |
kfox1111 | sdake: know of a way to run a kolla genconfig reading/writing from a dir of your choice rather then /etc/kolla ? | 18:47 |
sdake | kfox1111 i don't | 18:47 |
rhallisey | kfox1111, ya there's a config options for it | 18:47 |
kfox1111 | k. I might have to patch it. | 18:47 |
rhallisey | I think it's project name or something | 18:47 |
kfox1111 | rhallisey: oh, yeah? cool. know how to do that? | 18:47 |
kfox1111 | looking... | 18:47 |
*** schwicht has quit IRC | 18:48 | |
rhallisey | kfox1111, https://github.com/openstack/kolla/blob/master/etc/kolla/globals.yml#L23 | 18:49 |
kfox1111 | --configdir? | 18:49 |
rhallisey | I think the project_name never merged, but the custom config dir did | 18:49 |
kfox1111 | I think thats just for overrides for config? | 18:49 |
rhallisey | let me find the patch | 18:50 |
rhallisey | I think I abandoned it | 18:50 |
kfox1111 | am thinking a thing... if we have a tools/build-packages.sh in kolla-kubernetes, it could do a kolla genconfig in a private dir with a fixed globals.yml, and then pull all the config.yaml's into the packages during the build. | 18:51 |
*** athomas has quit IRC | 18:52 | |
sdake | brain overloaded | 18:52 |
sdake | kfox1111 i can't even parse that atm :) | 18:52 |
kfox1111 | the ops would then just have to pass through the openstack config files rather then the kolla specific ones too. | 18:52 |
kfox1111 | sdake: no worries... I can prototype it and show it I think. :) | 18:52 |
kfox1111 | would be easier to see I think. | 18:52 |
sdake | when and where is this meeting | 18:53 |
rhallisey | kfox1111, https://review.openstack.org/#/c/318356/5 | 18:53 |
rhallisey | it merged, but it looks like it got removed | 18:53 |
sdake | fantastic ;) | 18:54 |
*** schwicht has joined #openstack-kolla | 18:54 | |
kfox1111 | hmm.. that stil hard codes it to under /etc/kolla though? | 18:55 |
kfox1111 | I'm wondering if I can get it to buidl under /tmp/ or something. | 18:55 |
sdake | well /tmp is a security thing | 18:56 |
rhallisey | kfox1111, you have to add: node_config_directory | 18:56 |
rhallisey | and set that do whatver | 18:56 |
kfox1111 | ah. I see.. yeah. that would do it. | 18:57 |
kfox1111 | so I just need to generate my own globals.yml, | 18:57 |
kfox1111 | and point to it with kolla-ansible genconfig --configdir | 18:57 |
sdake | for the third time, where and when is this google hangout pls | 18:57 |
rhallisey | looks like that got pulled out of gloabls | 18:57 |
kfox1111 | sdake: not firmed up yet. tentitively in about an hour | 18:58 |
sdake | how about 1.5 hours? | 18:58 |
sdake | i'd like to make it but have a 30 minut econflict in 1 hr | 18:58 |
kfox1111 | works for me I think. | 18:58 |
sdake | i can give folks a cncf view of operators - which everyone here is missing context on | 18:59 |
kfox1111 | +1 | 18:59 |
sdake | i talked to about 100-150 people on the topic | 18:59 |
sdake | and everyone has different definitions | 18:59 |
rhallisey | sdake, how is the spec definition? | 18:59 |
kfox1111 | that complicates the discussion. :) | 18:59 |
rhallisey | we need that to be accurate | 18:59 |
sdake | rhallisey it matches eveyrone's deefinitions | 18:59 |
portdirect | sdake: a overview would be awesome | 19:00 |
kfox1111 | rhallisey: I think that makes more important to define "operator" in the spec. | 19:00 |
sdake | rhallisey the defs in the spec are a superset of operator definitions i heard during summit | 19:00 |
rhallisey | so I changed the name of it to Kubernetes Operator | 19:00 |
kfox1111 | to set expectations of what they are reading in the spec. | 19:00 |
rhallisey | and Kubernetes Controller | 19:00 |
sdake | anyone got a link to the spec? | 19:00 |
rhallisey | https://review.openstack.org/#/c/392257/7 | 19:00 |
sdake | thanks that will help others understand too rhallisey | 19:01 |
kfox1111 | arg... really not sure what to think of helm hooks for orchestration... | 19:06 |
inc0 | operator is a script inside pod to handle complex stuff | 19:07 |
inc0 | complex stuff can be handled outside of pod too | 19:07 |
kfox1111 | so, you could have a helm hook for nova-conductor trigger create a mariadb for it. | 19:07 |
inc0 | but there is nothing more to it, it's just a script inside container | 19:07 |
kfox1111 | it would work really smoothly when it works. but might be a bear to debug. :/ | 19:07 |
kfox1111 | or disable. | 19:07 |
inc0 | I think we shouldn't mix roles | 19:07 |
kfox1111 | yeah. | 19:08 |
inc0 | mariadb should handle mariadb | 19:08 |
inc0 | period | 19:08 |
kfox1111 | the operator pattern cleanly seperates that. | 19:08 |
*** fragatina has joined #openstack-kolla | 19:08 | |
kfox1111 | no, not qujite what I'm talking about. | 19:08 |
kfox1111 | stupid english. :) | 19:08 |
kfox1111 | there's the creation of the mariadb instance and the creation of the nova database inside the mariadb. | 19:08 |
kfox1111 | I was reffering to the latter. | 19:08 |
kfox1111 | its workflow logic, so I like to seperate it from the packaging usually. | 19:09 |
*** ppalacios has quit IRC | 19:09 | |
kfox1111 | thats the point an operator makes sence I think. | 19:10 |
stvnoyes1 | . | 19:11 |
kfox1111 | I guess the other question is, | 19:11 |
kfox1111 | can a helm package have ansilary jobs bundled with them? | 19:12 |
*** schwicht has quit IRC | 19:12 | |
kfox1111 | ie, the job isn't launched, but the user can ask it to be lanched? | 19:12 |
jascott1 | user can apply the job of course | 19:13 |
jascott1 | one way | 19:13 |
jascott1 | (to do it) | 19:13 |
kfox1111 | like how? | 19:13 |
jascott1 | like any resource kubectl apply -f | 19:13 |
jascott1 | right? | 19:13 |
jascott1 | on demand is what you are talking about? | 19:14 |
mark-casey1 | portdirect: just made it back by desk :)... yeah, have had a fair number of that sort of thing with this deployment, well, no k8s here but yeah. anyway thanks for the help, and also kfox1111 and Pavo | 19:14 |
kfox1111 | was thinking, you helm install a package and give it the name foo, then helm run foo jobname? | 19:15 |
*** ppalacios has joined #openstack-kolla | 19:15 | |
jascott1 | yeah but how is the job template combined with values? | 19:15 |
jascott1 | hmmm | 19:15 |
*** schwicht has joined #openstack-kolla | 19:15 | |
jascott1 | because if its done at chart install time it will be loaded then afaik | 19:16 |
kfox1111 | yeah. not sure that will work with helm the way it is. | 19:16 |
*** DanyC_ has quit IRC | 19:16 | |
kfox1111 | can you specify a root template to run when the package is instantiated on the cli, or is it strictly one root per package? | 19:16 |
jascott1 | each chart can have many templates... and have nested charts... | 19:17 |
kfox1111 | yes. but is there only one root template, or can you say, have | 19:18 |
jascott1 | idk what you mean by only one root template | 19:18 |
kfox1111 | nova-conductor and nova-api templates in one chart, | 19:18 |
kfox1111 | and then instantiate just nova-conductor or nova-api ? | 19:18 |
*** schwicht has quit IRC | 19:18 | |
kfox1111 | or if you want to do that, do you have to build seperate packages? | 19:18 |
*** schwicht has joined #openstack-kolla | 19:19 | |
jascott1 | so far it installs everything in the chart and sub charts | 19:20 |
*** schwicht has quit IRC | 19:20 | |
kfox1111 | ok. so for making building block style packages, we'd need a package per template basically. | 19:20 |
*** schwicht has joined #openstack-kolla | 19:20 | |
kfox1111 | or... | 19:20 |
kfox1111 | there's a --set value on the command line... | 19:20 |
jascott1 | openstack-helm has a chart per service, then an openstack chart that wraps all the services, then a "concrete" chart that depends on openstack | 19:21 |
kfox1111 | you could make a meta root template that takes the value and includes the specified template. | 19:21 |
kfox1111 | jascott1: thats too corse for my needs. :/ | 19:21 |
kfox1111 | so something like, helm install kolla/openstack-nova:2.0.2 --set template=nova-api --name=nova-api #maybe. | 19:22 |
jascott1 | {{if values.nova-api-enabled }} entire template here {{ end }} | 19:22 |
*** krtaylor has joined #openstack-kolla | 19:23 | |
kfox1111 | you can do subtempaltes with a _ in front of the name and it wont auto spawn it. | 19:23 |
kfox1111 | so like maybe: {{include "_" + values.template ".tmpl"}} ? | 19:24 |
jascott1 | maybe | 19:24 |
shasha_t_ | Hey everyone, I am trying to deploy swift on multinode using the scripts mentioned in: http://docs.openstack.org/developer/kolla/swift-guide.html | 19:24 |
kfox1111 | oh, interesting... | 19:25 |
kfox1111 | there is a --no-hoooks flag too. | 19:25 |
shasha_t_ | I had a question on whether to run the script on creating rings on deployment host or on storage nodes | 19:25 |
*** schwicht has quit IRC | 19:27 | |
jascott1 | shasha_t_ iirc you can create ring anywhere if you have correct ring file | 19:28 |
*** dave-mccowan has quit IRC | 19:28 | |
jascott1 | and then its copied to swift hosts | 19:28 |
shasha_t_ | Running on deployment host made sense since there is a playbook in swift role which transfers the ring files from deployment nodes to storage nodes...but its copies it from directory /etc/kolla/config/swift on deployment host which is not present | 19:29 |
shasha_t_ | Yes jascott1, will it work if I manually create those rings using swift-ring-builder command and copy it to /etc/kolla/config/swift ? | 19:30 |
*** schwicht has joined #openstack-kolla | 19:30 | |
jascott1 | im going by a one day swift training 2 months ago but sounds correct :) | 19:30 |
inc0 | hey guys, let's start meeting now | 19:30 |
inc0 | you can join later if you need | 19:31 |
inc0 | brace for hangout link | 19:31 |
inc0 | https://hangouts.google.com/call/poje7a6abrb2rgomhqh3rpgtzue | 19:31 |
shasha_t_ | Thanks jascott1 | 19:33 |
shasha_t_ | will look into it | 19:33 |
inc0 | kfox1111, rhallisey | 19:34 |
inc0 | you free now? | 19:34 |
rhallisey | ya | 19:34 |
*** schwicht has quit IRC | 19:34 | |
kfox1111 | I'm free. sdake was wanting to come too, and he said he would be free in about an hour? | 19:35 |
sdake | kfox1111 i'm in hangout now | 19:36 |
sdake | pls join | 19:36 |
portdirect | get in to hangouts | 19:36 |
kfox1111 | joining... | 19:37 |
*** dave-mccowan has joined #openstack-kolla | 19:37 | |
*** schwicht has joined #openstack-kolla | 19:38 | |
Pavo | whats this hangouts you are speaking of | 19:43 |
*** mgoddard__ has joined #openstack-kolla | 19:44 | |
*** schwicht has quit IRC | 19:44 | |
*** schwicht has joined #openstack-kolla | 19:45 | |
openstackgerrit | Merged openstack/kolla: Uses tunnel_interface as ovs tunnel instead of api_interface https://review.openstack.org/392094 | 19:46 |
*** schwicht has quit IRC | 19:46 | |
*** schwicht has joined #openstack-kolla | 19:47 | |
*** mgoddard_ has quit IRC | 19:48 | |
*** openstackgerrit has quit IRC | 19:48 | |
*** openstackgerrit has joined #openstack-kolla | 19:48 | |
*** mgoddard__ has quit IRC | 19:49 | |
*** schwicht has quit IRC | 19:52 | |
*** schwicht has joined #openstack-kolla | 19:53 | |
*** schwicht has quit IRC | 19:57 | |
kfox1111 | switching to irc. | 19:59 |
kfox1111 | overarching operator will basically follow this pattern in a loop | 19:59 |
*** mark-casey1 has left #openstack-kolla | 19:59 | |
kfox1111 | is mariadb-operator in k8s. no? launch using helm. | 19:59 |
inc0 | yeah, and mariadb-operator pod will get to ready state after full mariadb will be ready | 20:01 |
inc0 | nested dep graphs | 20:01 |
kfox1111 | is there a mariadb third party resource using that opeartor there and readly? no, create thrid party resource. | 20:01 |
kfox1111 | next keystone operator/resource | 20:01 |
kfox1111 | then glance, etc. | 20:01 |
* kfox1111 nods | 20:01 | |
kfox1111 | ------ | 20:02 |
kfox1111 | to my other comment that was breakign up. | 20:02 |
*** krtaylor has quit IRC | 20:02 | |
kfox1111 | the deployment workflow happens in a short amount of time usually. (compared to the life of the cluster) | 20:02 |
sdake | hey guys gotta drop off i'll be back in an hour | 20:02 |
sdake | rather half hour | 20:02 |
kfox1111 | the worflwo should kick off during the config change, | 20:02 |
kfox1111 | and then stop after that. | 20:02 |
kfox1111 | if it keeps running, and kepts trying to automatically repair things, it could make things worse rather then better. | 20:03 |
kfox1111 | it should create the configmaps/db's/deployments, and let k8s itself self heal things. | 20:03 |
kfox1111 | ------------- | 20:04 |
kfox1111 | ryan, we don't.... | 20:04 |
kfox1111 | we hit the 80%. | 20:04 |
kfox1111 | make it two layers, overarching operator that can be skipped. | 20:04 |
kfox1111 | we make service operators that can also be skipped. | 20:04 |
*** TxGirlGeek has quit IRC | 20:06 | |
portdirect | +1 | 20:06 |
*** TxGirlGeek has joined #openstack-kolla | 20:07 | |
*** msimonin1 has joined #openstack-kolla | 20:07 | |
kfox1111 | helm already is an operator in a way. it has tiller. | 20:08 |
*** neilus has left #openstack-kolla | 20:08 | |
kfox1111 | neither do operators.... | 20:09 |
kfox1111 | its a workflow thing. | 20:09 |
*** msimonin has quit IRC | 20:09 | |
kfox1111 | what did the user ask the state to be, | 20:09 |
kfox1111 | what is the state of the cluster now, | 20:09 |
kfox1111 | what do I need to tell k8s to get from request to reality. | 20:09 |
*** TxGirlGeek has quit IRC | 20:10 | |
*** TxGirlGeek has joined #openstack-kolla | 20:11 | |
openstackgerrit | Eduardo Gonzalez proposed openstack/kolla: Tacker Docker configuration https://review.openstack.org/396391 | 20:14 |
kfox1111 | AAAA | 20:14 |
kfox1111 | hangouts driving me nuts! | 20:14 |
rhallisey | kfox1111, you're muted | 20:14 |
kfox1111 | i know. cant unmjute! | 20:15 |
kfox1111 | #$@#@$@ | 20:15 |
rhallisey | lol | 20:15 |
kfox1111 | ok... | 20:15 |
rhallisey | rejoin | 20:15 |
kfox1111 | updates rae done by updateing the 3d party reource. | 20:15 |
*** krtaylor has joined #openstack-kolla | 20:15 | |
kfox1111 | a generic operator, there's people working on that. | 20:15 |
kfox1111 | was mentioned in the spec... | 20:16 |
kfox1111 | let me find hte url. | 20:16 |
kfox1111 | Yeas, for sure. | 20:16 |
kfox1111 | I do multi region. | 20:16 |
kfox1111 | I've been pushing for it for day one. | 20:16 |
*** ppalacios has quit IRC | 20:18 | |
*** chas_ has quit IRC | 20:18 | |
*** TxGirlGeek has quit IRC | 20:19 | |
*** TxGirlGeek has joined #openstack-kolla | 20:19 | |
SamYaple | hello all | 20:19 |
SamYaple | anyone doing anytihng with OpenNFV and kolla? | 20:19 |
kfox1111 | k8s-appcontroller is the generic thingy I was thinking of. | 20:21 |
openstackgerrit | Eduardo Gonzalez proposed openstack/kolla: Tacker NFV Ansible support https://review.openstack.org/389790 | 20:21 |
kfox1111 | SamYaple: not that I'm aware of. | 20:22 |
inc0 | SamYaple, srwilkers you guys work around OpenNFV right? | 20:23 |
srwilkers | inc0 SamYaple: some people here do, but im not in direct contact with them | 20:23 |
*** TxGirlGeek has quit IRC | 20:24 | |
openstackgerrit | Eduardo Gonzalez proposed openstack/kolla: Tacker NFV Ansible support https://review.openstack.org/389790 | 20:27 |
SamYaple | inc0: srwilkers as in, OpenNFV with kolla? or NFV, also kolla | 20:29 |
portdirect | can minikube do a 3 node cluster? | 20:29 |
openstackgerrit | Eduardo Gonzalez proposed openstack/kolla: Tacker NFV Ansible support https://review.openstack.org/389790 | 20:29 |
rhallisey | portdirect, I don't think so | 20:29 |
inc0 | SamYaple, NFV and Kolla with plans to use both | 20:30 |
portdirect | thought so :( | 20:30 |
SamYaple | inc0: does code exist in the kolla base to support NFV? or is it a WIP | 20:30 |
inc0 | it doesn't | 20:30 |
inc0 | probably it will be extension anyway | 20:31 |
*** TxGirlGeek has joined #openstack-kolla | 20:31 | |
SamYaple | alright. i might be adding that soon | 20:31 |
inc0 | cool | 20:31 |
SamYaple | depending on what it involved | 20:31 |
inc0 | might be one of first extensions to ansible;) | 20:31 |
srwilkers | portdirect: we've got a tool we use to spin up a multinode kubernetes cluster with kubeadm on top of vagrant if you want to take a look at using that | 20:31 |
srwilkers | portdirect: thats what im typically using | 20:31 |
SamYaple | inc0: any work been done with regards to neutron and extentions yet? | 20:32 |
inc0 | SamYaple, https://review.openstack.org/#/c/395851/ | 20:33 |
portdirect | srwilkers: https://github.com/att-comdev/halcyon-vagrant-kubernetes ? | 20:33 |
SamYaple | thats pretty neat inc0 . since ive left Kolla ive also left ansible :) | 20:34 |
sean-k-mooney | SamYaple: hi sam i would love to see kolla as an installer in opnfv im sure others at intel would be interested too | 20:34 |
srwilkers | portdirect, thats the one | 20:34 |
sean-k-mooney | oh sorry OpenNFV and opnfv are not the same thing... | 20:35 |
portdirect | srwilkers: cheers - lgtm :) | 20:36 |
srwilkers | portdirect, cheers mate. we're working on support for centos currently. we also welcome PRs so if you see anything, dont be shy :) | 20:37 |
SamYaple | sean-k-mooney: they are not :P | 20:38 |
SamYaple | sean-k-mooney: also hi! | 20:38 |
SamYaple | sean-k-mooney: once some extentions are in place though, should be easy to go further | 20:38 |
*** schwicht has joined #openstack-kolla | 20:38 | |
kfox1111 | SamYaple: yeah, one of our openstack clouds is shrinking right now. | 20:40 |
kfox1111 | pulled out 20 nodes and broght them over to k8s for running our compute jobs. so far, working very well. | 20:41 |
SamYaple | nice | 20:41 |
kfox1111 | likely another 130 nodes will be pulled out of openstack soon and go the same direction. | 20:41 |
*** msimonin1 has quit IRC | 20:43 | |
sdake | srwilkers i'd like to see that | 20:44 |
srwilkers | sdake: https://github.com/att-comdev/halcyon-vagrant-kubernetes | 20:44 |
srwilkers | i had drafted a blueprint for updating the multinode getting started guide, and was actually going to suggest that tool as one of the ways to get started | 20:45 |
kfox1111 | oh.... idea... | 20:47 |
kfox1111 | with the multiple templates thing per helm package.... | 20:47 |
awiddersheim | inc0: are you able to review? https://review.openstack.org/#/c/279913/ | 20:47 |
kfox1111 | we could try and do the template selector thing like I was thinking, and the default template when noe is specified woudl be the operator. :) | 20:48 |
inc0 | awiddersheim, tomorrow man, my brain boils out today | 20:48 |
awiddersheim | ok thanks | 20:48 |
inc0 | sorry:( | 20:48 |
awiddersheim | no worries | 20:48 |
awiddersheim | tomorrow works | 20:48 |
*** mgiles has quit IRC | 20:49 | |
Pavo | evening gents | 20:51 |
srwilkers | hey Pavo :) | 20:52 |
Pavo | sup srwilkers | 20:52 |
srwilkers | not a whole lot | 20:54 |
*** mgiles has joined #openstack-kolla | 20:55 | |
kfox1111 | oh... nice... | 20:55 |
kfox1111 | anyone know when the icons will be done for the openstack projects? | 20:56 |
kfox1111 | woudl be sweet to tag the helm charts with them. | 20:56 |
Pavo | here ya a logo kfox1111 https://clipartion.com/wp-content/uploads/2015/11/monopoly-man-broke-clipart-free-clipart.jpg | 20:57 |
kfox1111 | :) | 20:57 |
*** msimonin has joined #openstack-kolla | 20:58 | |
inc0 | we have our koala | 21:01 |
inc0 | btw, we should provide feedback | 21:01 |
inc0 | as it wasn't sharpest koala in the shed | 21:01 |
*** msimonin1 has joined #openstack-kolla | 21:01 | |
kfox1111 | the helm Chart metadata has a place to add a project icon. | 21:02 |
*** Serlex has quit IRC | 21:02 | |
srwilkers | inc0, is he a little more sober than you had hoped for? | 21:02 |
kfox1111 | so we could add all the project icons when ready. :) | 21:02 |
*** msimonin has quit IRC | 21:03 | |
inc0 | yeah, it's not realistic | 21:03 |
srwilkers | :( | 21:03 |
inc0 | http://lists.openstack.org/pipermail/openstack-dev/attachments/20161021/f2c6a00f/attachment.png | 21:04 |
jascott1 | heheh | 21:05 |
srwilkers | that looks like a cat, wtf | 21:05 |
*** schwicht has quit IRC | 21:07 | |
jascott1 | kfox1111 do they show in k8s dashboard? | 21:07 |
*** berendt has quit IRC | 21:10 | |
sean-k-mooney | well it could be worse i guess. | 21:13 |
*** unicell has quit IRC | 21:13 | |
sean-k-mooney | its ok but neither supper cute or cool so it a mascot that might grow on you but you would not pick out straight way as really great | 21:14 |
*** ayoung has quit IRC | 21:15 | |
*** unicell has joined #openstack-kolla | 21:16 | |
*** chas_ has joined #openstack-kolla | 21:19 | |
portdirect | needs moar eucalyptus: https://pbs.twimg.com/media/BxI_fQ0IQAACy29.jpg | 21:21 |
*** portdirect is now known as portdirect_away | 21:23 | |
*** chas_ has quit IRC | 21:23 | |
*** dave-mccowan has quit IRC | 21:24 | |
*** srwilkers has quit IRC | 21:28 | |
*** srwilkers has joined #openstack-kolla | 21:28 | |
*** cu5 has quit IRC | 21:29 | |
sdake | rhallisey you need to figure out how to roll dovetail into that spec somehow dude | 21:31 |
*** gfidente has quit IRC | 21:32 | |
rhallisey | .. | 21:33 |
*** Jeffrey4l has quit IRC | 21:33 | |
*** cu5 has joined #openstack-kolla | 21:33 | |
kfox1111 | jascott1: there's not a helm plugin for the dashboard yet I think. :/ | 21:33 |
kfox1111 | but as soon as they add one... :) | 21:33 |
*** fguillot has quit IRC | 21:34 | |
kfox1111 | is there an irc channel for golang templates? | 21:36 |
jascott1 | #go-nuts is the only one I know of | 21:41 |
*** srwilkers has quit IRC | 21:43 | |
*** dave-mccowan has joined #openstack-kolla | 21:43 | |
openstackgerrit | sean mooney proposed openstack/kolla: [WIP] adds support for ovs with dpdk netdev datapath https://review.openstack.org/342354 | 21:45 |
Pavo | have a good idea for you guys | 21:52 |
rhallisey | nice, got 3 node kube cluster going | 21:53 |
rhallisey | need to incorporate ceph now | 21:53 |
rhallisey | kube-depoy is super easy :) | 21:53 |
Pavo | rhallisey would it work on a 2 node deployment? | 21:53 |
rhallisey | that project is pretty solid | 21:53 |
rhallisey | Pavo, ya sure | 21:53 |
Pavo | using CentOS 7 as the base OS? | 21:53 |
rhallisey | ya | 21:53 |
rhallisey | Pavo, https://github.com/kubernetes/kube-deploy | 21:54 |
Pavo | nice, might have to look into that next | 21:54 |
rhallisey | docker-multinode repo | 21:54 |
rhallisey | just run master.sh on the master | 21:54 |
rhallisey | worker.sh on the workers | 21:54 |
Pavo | nice | 21:54 |
rhallisey | tmr I'll add in ceph | 21:55 |
Pavo | so my awesome idea is to add away into kolla-ansible to be able to change the OpenStack logo | 21:55 |
Pavo | to a logo of their choosing | 21:55 |
rhallisey | idk if you can get away with that :) | 21:56 |
Pavo | why not? its a simple change in the dashboard config | 21:56 |
*** msimonin1 has quit IRC | 21:56 | |
Pavo | pointing to what png you want | 21:56 |
rhallisey | I guess | 21:56 |
rhallisey | don't know if there is a conflict though being that kolla is in the openstack repo | 21:57 |
rhallisey | anyway | 21:57 |
Pavo | ah | 21:57 |
rhallisey | gotta run | 21:57 |
rhallisey | ttyl | 21:57 |
Pavo | yeah that might not work then | 21:57 |
Pavo | ttyl | 21:57 |
rhallisey | Pavo, you can always carry that patch in your fork :) | 21:57 |
rhallisey | see ya | 21:57 |
*** rhallisey has quit IRC | 21:57 | |
Pavo | yeah only if I knew ansible well enough to implement changes | 21:58 |
sean-k-mooney | with the ansiable extentions stuff inc0 is playing with it would not need to be a fork | 21:58 |
*** f13o has quit IRC | 21:59 | |
sean-k-mooney | you could proably do it with the docker customisation today too | 21:59 |
*** yee379 has joined #openstack-kolla | 22:00 | |
Pavo | yeah probably | 22:00 |
*** msimonin has joined #openstack-kolla | 22:01 | |
Pavo | if I am doing a 2 node ceph deployment do I still need to do docker exec ceph_mon ceph osd pool set rbd size 1 | 22:04 |
Pavo | but use 2 instead of 1? | 22:04 |
*** jtriley has quit IRC | 22:06 | |
*** portdirect_away is now known as portdirect | 22:07 | |
*** dave-mccowan has quit IRC | 22:08 | |
*** tonanhngo has quit IRC | 22:12 | |
*** schwicht has joined #openstack-kolla | 22:18 | |
Pavo | anyone ever seen this error before? | 22:21 |
Pavo | https://www.dropbox.com/s/an32ci49zyn9ey2/Screenshot%202016-11-10%2017.21.07.png?dl=0 | 22:21 |
*** sdake has quit IRC | 22:23 | |
inc0 | Pavo, looks like horizon issue | 22:24 |
inc0 | or glance | 22:24 |
inc0 | but I blame horizon | 22:24 |
Pavo | yeah guess it was just a fluke, just hit the create image again and worked | 22:24 |
inc0 | cool | 22:25 |
*** huikang has quit IRC | 22:25 | |
inc0 | I'm calling it a day before remainder of my brain evaporates | 22:25 |
inc0 | talk to you all tomorrow | 22:25 |
Pavo | hmmm does default flavors not get created now? | 22:25 |
*** huikang has joined #openstack-kolla | 22:25 | |
inc0 | Pavo, init-runonce creates flavors | 22:25 |
Pavo | ah | 22:25 |
inc0 | unless you want to run it, it's all manual | 22:26 |
Pavo | rgr | 22:26 |
*** schwicht has quit IRC | 22:26 | |
*** jheroux has quit IRC | 22:28 | |
*** inc0 has quit IRC | 22:28 | |
*** tonanhngo has joined #openstack-kolla | 22:30 | |
*** huikang has quit IRC | 22:30 | |
*** schwicht has joined #openstack-kolla | 22:31 | |
Pavo | woot, up and running | 22:31 |
Pavo | http://ddi.hopto.org | 22:31 |
Pavo | everything is looking good also | 22:32 |
Pavo | https://www.dropbox.com/s/idwcrd4ojcu7g87/Screenshot%202016-11-10%2017.32.37.png?dl=0 | 22:32 |
*** fragatin_ has joined #openstack-kolla | 22:34 | |
*** tonanhngo has quit IRC | 22:34 | |
*** huikang has joined #openstack-kolla | 22:37 | |
*** fragatina has quit IRC | 22:37 | |
jascott1 | Pavo: congrats! | 22:38 |
Pavo | ty | 22:38 |
Pavo | think I finally figured out the Ceph issue I was having | 22:38 |
Pavo | and seems like its working without any modifying | 22:39 |
*** huikang has quit IRC | 22:39 | |
*** schwicht has quit IRC | 22:40 | |
Pavo | seems ok | 22:40 |
Pavo | http://paste.openstack.org/show/588858/ | 22:40 |
*** lamt has quit IRC | 22:44 | |
*** mgiles has quit IRC | 22:48 | |
jascott1 | pavo did you have any notes/improvements for the ceph docs? | 22:50 |
jascott1 | I havent really tangled with ceph other than copying what the gate job does | 22:50 |
jascott1 | ceph docs = kolla ceph docs | 22:51 |
Pavo | only thing I can think of as an improvement would be to put what the default setting is and what needs to be done from that, the allinone seems pretty good but for a 2 node one nothing in there about it | 22:52 |
Pavo | like if you have more than 1 disk they need to be numbered accordingly in the command that is on the docs | 22:53 |
Pavo | like myself | 22:53 |
Pavo | on my controller which is also my storage and network node | 22:53 |
Pavo | I have 5 disk that I am using for Ceph | 22:54 |
Pavo | and the docs say use parted $DISK -s -- mklabel gpt mkpart KOLLA_CEPH_OSD_BOOTSTRAP 1 -1 | 22:54 |
Pavo | well thats fine for 1 disk | 22:54 |
Pavo | but the other disk need to be labeld parted $DISK -s -- mklabel gpt mkpart KOLLA_CEPH_OSD_BOOTSTRAP 2 -1 | 22:55 |
Pavo | parted $DISK -s -- mklabel gpt mkpart KOLLA_CEPH_OSD_BOOTSTRAP 3 -1 | 22:55 |
Pavo | and so on | 22:55 |
*** jrich523 has quit IRC | 22:57 | |
jascott1 | ah | 22:57 |
*** chas_ has joined #openstack-kolla | 22:58 | |
*** Pavo has quit IRC | 23:01 | |
*** chas_ has quit IRC | 23:02 | |
*** chas_ has joined #openstack-kolla | 23:04 | |
*** fragatin_ has quit IRC | 23:04 | |
*** Pavo has joined #openstack-kolla | 23:04 | |
*** fragatina has joined #openstack-kolla | 23:05 | |
Pavo | but thats about it jascott1 | 23:06 |
*** chas_ has quit IRC | 23:09 | |
*** ayoung has joined #openstack-kolla | 23:22 | |
*** msimonin has quit IRC | 23:24 | |
*** jrich523 has joined #openstack-kolla | 23:24 | |
*** schwicht has joined #openstack-kolla | 23:26 | |
*** TxGirlGeek has quit IRC | 23:26 | |
*** msimonin has joined #openstack-kolla | 23:28 | |
*** ntpttr has quit IRC | 23:30 | |
*** ntpttr has joined #openstack-kolla | 23:31 | |
*** Jeffrey4l has joined #openstack-kolla | 23:31 | |
*** diogogmt has quit IRC | 23:33 | |
*** yuanying has quit IRC | 23:34 | |
*** msimonin has quit IRC | 23:37 | |
*** msimonin has joined #openstack-kolla | 23:38 | |
*** msimonin has quit IRC | 23:38 | |
*** diogogmt has joined #openstack-kolla | 23:43 | |
*** yuanying has joined #openstack-kolla | 23:44 | |
*** krtaylor has quit IRC | 23:54 | |
*** Pavo has quit IRC | 23:58 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!