*** p4tux has joined #openstack-containers | 00:00 | |
*** sdake_ has quit IRC | 00:01 | |
*** sdake_ has joined #openstack-containers | 00:02 | |
*** p4tux has quit IRC | 00:05 | |
*** erkules_ is now known as erkules | 00:06 | |
*** erkules has joined #openstack-containers | 00:06 | |
sdake_ | kennan did your update.py change any versions? | 00:06 |
---|---|---|
*** sdake has quit IRC | 00:06 | |
sdake_ | just went through rabbit hunt on global requirements looks like we should be enabled | 00:06 |
openstackgerrit | Steven Dake proposed openstack/magnum: Reorder requirements into ascii-betical order. https://review.openstack.org/185467 | 00:14 |
Kennan | sdake_ not found any new updates about version | 00:30 |
sdake_ | ya i ran the script | 00:30 |
sdake_ | it made a minor update (added a header) | 00:30 |
Kennan | yes | 00:30 |
*** p4tux has joined #openstack-containers | 00:35 | |
*** p4tux has quit IRC | 00:40 | |
*** jjlehr has quit IRC | 00:41 | |
*** tobe has joined #openstack-containers | 00:44 | |
openstackgerrit | Merged openstack/magnum: Backport "kubenode -> kubeminion" https://review.openstack.org/185156 | 00:44 |
*** mahito has joined #openstack-containers | 00:47 | |
openstackgerrit | Kai Qiang Wu(Kennan) proposed openstack/magnum: Rename bay_k8s_heat to more general name https://review.openstack.org/182946 | 00:54 |
sdake_ | this will be painful: https://blueprints.launchpad.net/magnum/+spec/objects-from-bay | 01:05 |
sdake_ | yay pain :) | 01:05 |
*** adrian_otto has joined #openstack-containers | 01:07 | |
sdake_ | tcammann around? | 01:07 |
sdake_ | hey adrian_otto | 01:07 |
adrian_otto | hi sdake_ | 01:09 |
*** jjlehr has joined #openstack-containers | 01:09 | |
sdake_ | say adrian first order of business with native clients i s https://blueprints.launchpad.net/magnum/+spec/objects-from-bay | 01:09 |
*** dimsum__ has joined #openstack-containers | 01:12 | |
tobe | I have no idea why it said "must be read from the ReST bay endpoint" | 01:12 |
sdake_ | right now its read from the database (the pod/rc/service info) | 01:12 |
sdake_ | it must be read directly from the k8s endpoint in the bay | 01:13 |
sdake_ | then native cleint/magnum client - source doesn't matter | 01:13 |
adrian_otto | agreed. | 01:14 |
sdake_ | atm we have two databases | 01:14 |
sdake_ | we need only one | 01:14 |
sdake_ | not sure how we will sort out migrations or if they can be sorted out at all | 01:15 |
*** dimsum__ has quit IRC | 01:15 | |
*** fangfenghua has joined #openstack-containers | 01:15 | |
adrian_otto | we would just need to drop the local copy of redundant records. | 01:15 |
*** dimsum__ has joined #openstack-containers | 01:15 | |
sdake_ | perhaps migration is a mapping of the internal object id to the external one | 01:15 |
sdake_ | ya, that hsould be super easy! | 01:15 |
* sdake_ dons sarcasm hat :) | 01:16 | |
tobe | You're great :-) | 01:17 |
tobe | Hi @adrian_otto I have watched your presentation on OpenStack Summit | 01:18 |
tobe | I know about why docker exec only supports copying files from container into local server but not inverse | 01:19 |
tobe | Because it's not implemented yet and it will be released in next version, maybe docker 1.7. Refer to docker#5846 :-) | 01:20 |
adrian_otto | tobe: I think you mean "docker cp" | 01:20 |
adrian_otto | that allows you to copy files out. You can copy files in by using a bind mount, and copying the file from that after a docker exec of a shell inside the container. | 01:21 |
tobe | Opoos, sorry, you're right | 01:21 |
*** julim has joined #openstack-containers | 01:21 | |
adrian_otto | but that's usually a bad idea | 01:21 |
sdake_ | ya and that second model is terrible ;) | 01:21 |
*** julim has quit IRC | 01:21 | |
adrian_otto | it's a better idea to use a Dockerfile to generate your image. | 01:21 |
adrian_otto | so that it can be easily reproduced based on a different base OS version | 01:22 |
tobe | You're right. But sometimes we use docker for development and copying file into container is convience | 01:22 |
adrian_otto | that will come in handy next time your OS has a new release | 01:22 |
sdake_ | until you forget what file you copied where ;-) | 01:22 |
adrian_otto | 1.7 will not be a long wait | 01:22 |
sdake_ | then repeatability goes out the window | 01:22 |
sdake_ | july for 1.7 | 01:22 |
tobe | @adrian_otto @sdake_ All of you are right and that's why we love to use docker :-) | 01:23 |
tobe | And looking forward to magnum as well | 01:23 |
*** fangfenghua has quit IRC | 01:24 | |
sdake_ | tobe or not tobe may I point you at http://sdake.io/2015/04/13/preserving-contaner-properties-via-volume-mounts/ | 01:24 |
*** logan2 has joined #openstack-containers | 01:25 | |
tobe | Thanks @sdake_ I know about docker volume and we have to admit its limitation | 01:26 |
*** chandankumar has joined #openstack-containers | 01:26 | |
tobe | The volume should be set when we run the container | 01:26 |
openstackgerrit | Merged openstack/magnum: Correct the wrong parameter pass https://review.openstack.org/185319 | 01:26 |
sdake_ | which limitation | 01:26 |
tobe | If we want to copy file into the running containers, we should use `docker exec` to workaround | 01:27 |
sdake_ | i would highly recommend from copying files into containers | 01:27 |
sdake_ | unless you do so via a docker run operation (encode file in the environment) | 01:27 |
sdake_ | did you read my blog post about the 3 properties your giving up ? :) | 01:28 |
tobe | Yes, it's not a good idea to copy files into containers after docker run | 01:28 |
tobe | Just for development | 01:28 |
sdake_ | docker build to add new files imo - that way you know where they came from and where they are going ;) | 01:29 |
sdake_ | just dont push the container - it should be as fast as any copy operation you can setup | 01:30 |
sdake_ | docker cdn needs more minerals for push | 01:30 |
*** dimsum__ has quit IRC | 01:37 | |
madhuri | sdake_, hi | 01:38 |
sdake_ | hey madhuri | 01:38 |
madhuri | About https://blueprints.launchpad.net/magnum/+spec/objects-from-bay | 01:38 |
sdake_ | yar | 01:38 |
madhuri | I also have registered a similar blueprint | 01:39 |
madhuri | Where the state of the k8s resources are synced to magnum db | 01:39 |
sdake_ | that would mean polling? | 01:39 |
madhuri | https://blueprints.launchpad.net/magnum/+spec/k8s-resource-status | 01:39 |
sdake_ | have a link hadny? | 01:39 |
madhuri | This time no polling | 01:40 |
madhuri | But just to sync everytime when the HEAD is called | 01:40 |
*** jay-lau-513 has joined #openstack-containers | 01:40 | |
sdake_ | which head | 01:40 |
jay-lau-513 | e | 01:40 |
madhuri | There are not much detail on the bp | 01:40 |
madhuri | But I thought of syncing the state whenever any read is called | 01:41 |
sdake_ | i thought you were working on secure-kube? | 01:41 |
madhuri | HEAD like readPod, readService etc | 01:41 |
madhuri | Yes I am working on it | 01:41 |
madhuri | But I just submitted the bp as I found it missing | 01:41 |
sdake_ | got it | 01:41 |
madhuri | But it's ok if you're working | 01:41 |
sdake_ | i'm going to actively work on it | 01:42 |
madhuri | I just wanted to tell you about it | 01:42 |
sdake_ | thanks | 01:42 |
*** tcammann has quit IRC | 01:42 | |
madhuri | Ok go ahead | 01:42 |
sdake_ | interesting model | 01:42 |
madhuri | I had created a patch for it before vancover summit | 01:42 |
sdake_ | did it work? | 01:42 |
sdake_ | I really would rather remove the database entries for pods/rc/services | 01:43 |
*** dimsum__ has joined #openstack-containers | 01:43 | |
madhuri | No, there are some issues with the python-ksclient code | 01:44 |
madhuri | Some error | 01:44 |
madhuri | I figured out the issue | 01:44 |
sdake_ | but master is using that code | 01:44 |
madhuri | Yes that is fine | 01:44 |
madhuri | But the readPod API is not used | 01:44 |
sdake_ | oh and its busted? | 01:44 |
madhuri | And it has error | 01:45 |
madhuri | Yes | 01:45 |
sdake_ | can you get a review up for that? :) | 01:45 |
madhuri | Sure | 01:45 |
*** p4tux has joined #openstack-containers | 01:45 | |
madhuri | For all the read APIs | 01:45 |
sdake_ | bug in k8s? | 01:45 |
madhuri | No but swagger-codegen I gues | 01:46 |
sdake_ | fantastic! | 01:46 |
madhuri | I have to create a new stackforge project also to maintain it | 01:47 |
madhuri | And that will be too difficult for me | 01:47 |
sdake_ | did we decide to do that? | 01:47 |
madhuri | Probably I will do it after TLS work | 01:47 |
madhuri | Yes we had discuss it in containers meeting | 01:47 |
madhuri | Cumbersome | 01:48 |
sdake_ | i'd say wait until google gets done with their first 6 versions of their version v1 api ;) | 01:48 |
sdake_ | e.g. wait for their codebase to stablize | 01:48 |
madhuri | Yes I also think so | 01:48 |
madhuri | But I must say this code is threat for us | 01:49 |
*** tcammann has joined #openstack-containers | 01:49 | |
madhuri | When will they get a stable release? | 01:49 |
sdake_ | adrian_otto any idea? | 01:49 |
sdake_ | I think when their velocity slows down and maturity increases | 01:49 |
sdake_ | when that will be - not clear | 01:49 |
sdake_ | the core team will help maintain the client | 01:50 |
*** p4tux has quit IRC | 01:50 | |
sdake_ | but it would be nice if we didn't have to redo it every 1 mo on a minor api bump | 01:50 |
sdake_ | stackforge for that seems reasonable when v1 is released | 01:51 |
*** erkules has quit IRC | 01:51 | |
*** erkules_ has joined #openstack-containers | 01:51 | |
sdake_ | creating the project is mechanical | 01:52 |
sdake_ | takes about 2 hours max | 01:52 |
sdake_ | i think when v1 is cut, we just roll our own tls enabled client in python | 01:52 |
sdake_ | without the swagger codegen nonsense | 01:52 |
sdake_ | or start from that and turn it into something a human would write | 01:53 |
sdake_ | in a perfect world the v1 api would be published in the next 3 mo | 01:56 |
sdake_ | which gives us 3 months of bake time on the client | 01:56 |
madhuri | Do you mean we will write a new client? | 01:57 |
*** adrian_otto has quit IRC | 01:58 | |
sdake_ | i mean we will take whatever swagger codegen generates with v1 api, plus the tls work, and use that as a starting point | 01:59 |
sdake_ | and then ignore swagger for v1 | 01:59 |
sdake_ | and refactor the client not to be written by a machine | 02:00 |
sdake_ | does swagger codegen impose any license? | 02:02 |
*** kitch has quit IRC | 02:07 | |
*** chandankumar has quit IRC | 02:08 | |
sdake_ | looks like answer is asl2.0 | 02:11 |
sdake_ | so we ar egood there | 02:11 |
sdake_ | we can make whatever change we like | 02:11 |
madhuri | Yes that sounds better | 02:13 |
sdake_ | dont sweat the stackforge project | 02:13 |
sdake_ | when time is right we will pull that off as a team | 02:13 |
madhuri | Sure. Thanks. | 02:16 |
madhuri | That was a pain for me | 02:16 |
sdake_ | which was pain | 02:16 |
madhuri | But anyhow I have to make read APIs work | 02:16 |
madhuri | Creating a new stackforge project now | 02:16 |
madhuri | with TLS work | 02:16 |
sdake_ | oh you mean worry | 02:16 |
madhuri | Yes | 02:16 |
madhuri | :D | 02:17 |
sdake_ | there worry no more ;) | 02:17 |
madhuri | :) | 02:18 |
*** p4tux has joined #openstack-containers | 02:20 | |
*** p4tux has quit IRC | 02:24 | |
sdake_ | tcammann awake | 02:25 |
*** tobe has quit IRC | 02:31 | |
*** macjack has joined #openstack-containers | 02:41 | |
*** tobe has joined #openstack-containers | 02:41 | |
*** dimsum__ has quit IRC | 02:45 | |
*** dimsum__ has joined #openstack-containers | 02:46 | |
*** sdake has joined #openstack-containers | 02:48 | |
*** sdake_ has quit IRC | 02:50 | |
*** sdake_ has joined #openstack-containers | 02:50 | |
*** dimsum__ has quit IRC | 02:51 | |
*** p4tux has joined #openstack-containers | 02:54 | |
*** sdake has quit IRC | 02:54 | |
*** p4tux has quit IRC | 02:59 | |
*** kebray has joined #openstack-containers | 03:00 | |
openstackgerrit | Ronald Bradford proposed openstack/magnum: Improving Unit Test coverage and using these tests to provide a documented example to demonstrate writing unit tests for new contributors for increasing project code coverage. https://review.openstack.org/185454 | 03:00 |
*** kebray has quit IRC | 03:10 | |
openstackgerrit | Merged openstack/magnum: Reorder requirements into ascii-betical order. https://review.openstack.org/185467 | 03:14 |
*** kebray has joined #openstack-containers | 03:15 | |
*** kebray has quit IRC | 03:17 | |
*** sdake_ has quit IRC | 03:23 | |
*** p4tux has joined #openstack-containers | 03:29 | |
*** Kennan2 has joined #openstack-containers | 03:33 | |
*** p4tux has quit IRC | 03:34 | |
*** tobe has quit IRC | 03:34 | |
*** Kennan has quit IRC | 03:34 | |
*** fangfenghua has joined #openstack-containers | 03:40 | |
fangfenghua | magnum can create a k8 | 03:42 |
*** unicell has joined #openstack-containers | 03:42 | |
fangfenghua | K8s cluster at gce or aws? | 03:43 |
*** tobe has joined #openstack-containers | 03:47 | |
*** jjlehr has quit IRC | 04:00 | |
*** p4tux has joined #openstack-containers | 04:04 | |
*** p4tux has quit IRC | 04:08 | |
*** achanda has joined #openstack-containers | 04:12 | |
*** blakec has joined #openstack-containers | 04:13 | |
*** blakec has quit IRC | 04:17 | |
*** eghobo has joined #openstack-containers | 04:23 | |
*** gose has joined #openstack-containers | 04:25 | |
*** dboik has joined #openstack-containers | 04:27 | |
*** achanda has quit IRC | 04:30 | |
*** p4tux has joined #openstack-containers | 04:39 | |
*** p4tux has quit IRC | 04:43 | |
*** tobe has quit IRC | 04:56 | |
*** logan2 has quit IRC | 05:08 | |
*** tobe has joined #openstack-containers | 05:13 | |
*** p4tux has joined #openstack-containers | 05:13 | |
*** dboik has quit IRC | 05:14 | |
*** dboik has joined #openstack-containers | 05:14 | |
*** p4tux has quit IRC | 05:18 | |
*** dboik has quit IRC | 05:30 | |
*** dimsum__ has joined #openstack-containers | 05:36 | |
*** dimsum__ has quit IRC | 05:41 | |
*** p4tux has joined #openstack-containers | 05:48 | |
*** p4tux has quit IRC | 05:53 | |
openstackgerrit | yuntongjin proposed openstack/magnum: introduce policy for magnum https://review.openstack.org/184433 | 06:02 |
openstackgerrit | yuntongjin proposed openstack/magnum: first policy check for bay https://review.openstack.org/185501 | 06:02 |
*** tobe has quit IRC | 06:04 | |
openstackgerrit | yuntongjin proposed openstack/magnum: remove allow_logical_names check https://review.openstack.org/184974 | 06:10 |
openstackgerrit | yuntongjin proposed openstack/magnum: Add support for API microversions https://review.openstack.org/184975 | 06:10 |
*** chandankumar has joined #openstack-containers | 06:11 | |
*** tobe has joined #openstack-containers | 06:23 | |
*** p4tux has joined #openstack-containers | 06:23 | |
*** nshaikh has joined #openstack-containers | 06:24 | |
*** p4tux has quit IRC | 06:27 | |
*** nshaikh has left #openstack-containers | 06:51 | |
*** yuanying_ has joined #openstack-containers | 06:54 | |
*** yuanying has quit IRC | 06:54 | |
*** p4tux has joined #openstack-containers | 06:58 | |
*** p4tux has quit IRC | 07:03 | |
*** achanda has joined #openstack-containers | 07:04 | |
*** logan2 has joined #openstack-containers | 07:06 | |
*** yuanying_ has quit IRC | 07:12 | |
*** yuanying has joined #openstack-containers | 07:13 | |
*** eghobo has quit IRC | 07:15 | |
*** logan2 has quit IRC | 07:17 | |
*** gose has quit IRC | 07:19 | |
*** snrism has joined #openstack-containers | 07:27 | |
*** snrism has quit IRC | 07:29 | |
*** achanda has quit IRC | 07:30 | |
*** erkules_ is now known as erkules | 07:33 | |
*** p4tux has joined #openstack-containers | 07:33 | |
*** erkules has quit IRC | 07:33 | |
*** erkules has joined #openstack-containers | 07:33 | |
*** snrism has joined #openstack-containers | 07:35 | |
*** p4tux has quit IRC | 07:37 | |
*** snrism has quit IRC | 07:40 | |
*** achanda has joined #openstack-containers | 07:48 | |
*** belmoreira has joined #openstack-containers | 07:49 | |
*** apuimedo has joined #openstack-containers | 08:06 | |
*** p4tux has joined #openstack-containers | 08:09 | |
*** yuanying has quit IRC | 08:09 | |
*** tobe has quit IRC | 08:10 | |
*** p4tux has quit IRC | 08:13 | |
*** sankarshan_away is now known as sankarshan_ | 08:41 | |
*** p4tux has joined #openstack-containers | 08:44 | |
*** p4tux has quit IRC | 08:49 | |
*** alex_klimov has joined #openstack-containers | 08:52 | |
*** nshaikh has joined #openstack-containers | 08:59 | |
*** logan2 has joined #openstack-containers | 09:02 | |
*** p4tux has joined #openstack-containers | 09:20 | |
*** p4tux has quit IRC | 09:25 | |
*** nshaikh has quit IRC | 09:42 | |
*** nshaikh has joined #openstack-containers | 09:51 | |
*** p4tux has joined #openstack-containers | 09:56 | |
*** p4tux has quit IRC | 10:01 | |
*** fangfenghua has quit IRC | 10:13 | |
*** jay-lau-513 has quit IRC | 10:14 | |
openstackgerrit | Tom Cammann proposed openstack/magnum: Backport "minor updates to README" https://review.openstack.org/185275 | 10:25 |
openstackgerrit | Tom Cammann proposed openstack/magnum: Backport "added some output descriptions" https://review.openstack.org/185274 | 10:25 |
openstackgerrit | Tom Cammann proposed openstack/magnum: Semi-Backport "successfully add new minions via stack-update" https://review.openstack.org/185278 | 10:25 |
openstackgerrit | Tom Cammann proposed openstack/magnum: Backport "fixup! added script for dynamically registering a minion" https://review.openstack.org/185277 | 10:25 |
openstackgerrit | Tom Cammann proposed openstack/magnum: Backport "added script for dynamically registering a minion" https://review.openstack.org/185276 | 10:25 |
*** chandankumar has quit IRC | 10:29 | |
*** p4tux has joined #openstack-containers | 10:32 | |
*** mahito has quit IRC | 10:34 | |
*** p4tux has quit IRC | 10:36 | |
*** chandankumar has joined #openstack-containers | 10:43 | |
openstackgerrit | Tom Cammann proposed openstack/magnum: Backport "Replace CFN resources with heat native" https://review.openstack.org/185558 | 10:52 |
openstackgerrit | Tom Cammann proposed openstack/magnum: Backport "added required id: top-level key" https://review.openstack.org/185559 | 10:52 |
openstackgerrit | Tom Cammann proposed openstack/magnum: Backport "Added basic autoscaling support with OS::Heat::AutoScalingGroup" https://review.openstack.org/185560 | 10:52 |
*** p4tux has joined #openstack-containers | 11:07 | |
*** p4tux has quit IRC | 11:12 | |
*** chandankumar has quit IRC | 11:26 | |
*** p4tux has joined #openstack-containers | 11:43 | |
*** p4tux has quit IRC | 11:49 | |
*** chandankumar has joined #openstack-containers | 12:01 | |
*** logan2 has quit IRC | 12:12 | |
*** fangfenghua has joined #openstack-containers | 12:14 | |
*** p4tux has joined #openstack-containers | 12:19 | |
*** prad has joined #openstack-containers | 12:21 | |
*** p4tux has quit IRC | 12:24 | |
*** achanda has quit IRC | 12:33 | |
*** achanda has joined #openstack-containers | 12:41 | |
*** chandankumar has quit IRC | 12:48 | |
*** dimsum__ has joined #openstack-containers | 12:49 | |
*** hongbin has joined #openstack-containers | 12:53 | |
*** dimsum__ is now known as dims | 12:56 | |
*** achanda has quit IRC | 13:05 | |
openstackgerrit | Merged openstack/magnum: Setup for translation https://review.openstack.org/182835 | 13:09 |
*** fangfeng_ has joined #openstack-containers | 13:11 | |
*** fangfeng_ has quit IRC | 13:12 | |
*** fangfeng_ has joined #openstack-containers | 13:12 | |
*** julim has joined #openstack-containers | 13:12 | |
*** rlrevell has joined #openstack-containers | 13:13 | |
openstackgerrit | Tom Cammann proposed openstack/magnum: Backport "Added basic autoscaling support with OS::Heat::AutoScalingGroup" https://review.openstack.org/185560 | 13:15 |
openstackgerrit | Tom Cammann proposed openstack/magnum: Backport "Added basic autoscaling support with OS::Heat::AutoScalingGroup" https://review.openstack.org/185560 | 13:18 |
openstackgerrit | Tom Cammann proposed openstack/magnum: Backport "added required id: top-level key" https://review.openstack.org/185559 | 13:18 |
openstackgerrit | Tom Cammann proposed openstack/magnum: Backport "Replace CFN resources with heat native" https://review.openstack.org/185558 | 13:18 |
openstackgerrit | Tom Cammann proposed openstack/magnum: Semi-Backport "successfully add new minions via stack-update" https://review.openstack.org/185278 | 13:18 |
*** logan2 has joined #openstack-containers | 13:21 | |
*** kitch has joined #openstack-containers | 13:24 | |
*** jfarschman has joined #openstack-containers | 13:38 | |
*** jfarschman is now known as MilesDenver | 13:38 | |
*** chandankumar has joined #openstack-containers | 13:40 | |
*** dims has quit IRC | 13:45 | |
openstackgerrit | Ronald Bradford proposed openstack/magnum: Improving Unit Test coverage of k8s_manifest https://review.openstack.org/185454 | 13:53 |
*** logan2 has quit IRC | 13:54 | |
*** sdake has joined #openstack-containers | 13:56 | |
*** Kennan has joined #openstack-containers | 14:03 | |
*** Kennan2 has quit IRC | 14:04 | |
*** p4tux has joined #openstack-containers | 14:07 | |
sdake | morning | 14:11 |
tcammann | hello! | 14:14 |
tcammann | You were looking for me yesterday, sdake? | 14:14 |
*** rpothier has joined #openstack-containers | 14:14 | |
sdake | trying to figure out devstack | 14:14 |
sdake | I think I got it sorted out - i'll ping if I run into qs | 14:15 |
sdake | (your plugin) | 14:15 |
sdake | getting my dev env setup after the chaos that was summit ;-) | 14:15 |
*** jjlehr has joined #openstack-containers | 14:16 | |
tcammann | hah :) Well I'm still on the wrong timezone so I will definitely so I might be asleep soon :/ | 14:16 |
rbradfor | tcammann, sdake Having just added magnum to devstack I have a question regarding the neutron configuration, specifically I am unable to reconnect when restarting my VM. Is this something you may be able to assist with? | 14:17 |
sdake | bradfor I am having similar troubles getting my networking working with master branch of devstack | 14:18 |
tcammann | sdake: I'm so tired I don't type in real sentences either | 14:18 |
sdake | so I'm the wrong guy to ask ;) | 14:18 |
tcammann | rbradfor: Haven't run into that issue before I'm afraid | 14:18 |
*** nshaikh has quit IRC | 14:19 | |
rbradfor | tcammann, When creating a virtualbox vm, I am creating two networks. I initially ssh to eth1, but if you restart the VM, while it appears the controller and routing is ok, all connectivity (ssh, horizon, identity) is lost. | 14:20 |
*** dims has joined #openstack-containers | 14:35 | |
*** jhova has joined #openstack-containers | 14:37 | |
openstackgerrit | Ronald Bradford proposed openstack/magnum: Improving Unit Test coverage of k8s_manifest https://review.openstack.org/185454 | 14:39 |
*** achanda has joined #openstack-containers | 14:45 | |
sdake | first off, run on bare metal ;-) | 14:45 |
sdake | tcammann oslo.versionedobjects needs to be in global requirements | 14:46 |
sdake | have you seen a stack problem with this issue? | 14:46 |
rbradfor | sdake: all my spare bare metal is in my own physical cloud at present :) | 14:50 |
*** jay-lau-513 has joined #openstack-containers | 15:05 | |
*** ewindisch has joined #openstack-containers | 15:07 | |
*** fangfeng_ is now known as fangfenghua_ | 15:10 | |
*** fangfenghua_ has quit IRC | 15:11 | |
*** alejandrito has joined #openstack-containers | 15:14 | |
*** fangfeng_ has joined #openstack-containers | 15:15 | |
*** fangfenghua_ has joined #openstack-containers | 15:17 | |
*** nihilifer has joined #openstack-containers | 15:19 | |
*** nihilifer has quit IRC | 15:19 | |
*** vahidh has joined #openstack-containers | 15:20 | |
*** fangfeng_ has quit IRC | 15:20 | |
*** nihilifer has joined #openstack-containers | 15:20 | |
*** fangfeng_ has joined #openstack-containers | 15:20 | |
*** fangfeng_ is now known as fangfenghua__ | 15:21 | |
*** achanda_ has joined #openstack-containers | 15:22 | |
*** fangfenghua_ has quit IRC | 15:22 | |
*** achanda has quit IRC | 15:22 | |
*** snrism has joined #openstack-containers | 15:30 | |
*** kitch has quit IRC | 15:32 | |
*** fangfenghua__ has quit IRC | 15:32 | |
*** Tango has joined #openstack-containers | 15:33 | |
*** kitch has joined #openstack-containers | 15:33 | |
*** kebray has joined #openstack-containers | 15:34 | |
*** chandankumar has quit IRC | 15:35 | |
*** thomasem_ is now known as thomasem | 15:45 | |
*** achanda has joined #openstack-containers | 15:56 | |
*** achanda_ has quit IRC | 15:56 | |
*** diga has quit IRC | 15:57 | |
*** diga has joined #openstack-containers | 15:58 | |
*** EricGonczer_ has joined #openstack-containers | 15:58 | |
*** erw has joined #openstack-containers | 15:59 | |
*** belmoreira has quit IRC | 15:59 | |
*** eghobo has joined #openstack-containers | 15:59 | |
*** juggler has quit IRC | 15:59 | |
*** juggler has joined #openstack-containers | 16:00 | |
*** joffter has joined #openstack-containers | 16:00 | |
tcammann | sdake: meeting now? | 16:01 |
sdake | yes | 16:01 |
*** brendenblanco has quit IRC | 16:02 | |
*** Drago has joined #openstack-containers | 16:02 | |
*** brendenblanco has joined #openstack-containers | 16:02 | |
*** Drago has quit IRC | 16:02 | |
*** Drago has joined #openstack-containers | 16:02 | |
*** snrism has quit IRC | 16:02 | |
*** EricGonc_ has joined #openstack-containers | 16:04 | |
*** EricGonczer_ has quit IRC | 16:08 | |
*** alex_klimov has quit IRC | 16:10 | |
*** EricGonc_ has quit IRC | 16:10 | |
*** EricGonczer_ has joined #openstack-containers | 16:13 | |
*** EricGonc_ has joined #openstack-containers | 16:15 | |
*** EricGonczer_ has quit IRC | 16:18 | |
*** unicell has quit IRC | 16:19 | |
*** Drago has quit IRC | 16:29 | |
*** vahidh has quit IRC | 16:30 | |
*** PaulCzar has joined #openstack-containers | 16:32 | |
*** rbradfor has quit IRC | 16:34 | |
*** rbradfor_ has joined #openstack-containers | 16:43 | |
*** unicell has joined #openstack-containers | 16:45 | |
*** achanda has quit IRC | 16:48 | |
*** jwang_ has joined #openstack-containers | 16:48 | |
*** jwang_ has quit IRC | 16:49 | |
apuimedo | so, as I was saying, adding as many devices to the VM as containers are needed would lead to too many open files on the host and other issues | 17:01 |
*** joffter has left #openstack-containers | 17:01 | |
hongbin | eghobo: you mentioned that you may have time to work on registry BP? | 17:01 |
tcammann | I'm off. +2 my templates patches while I'm alseep :) | 17:01 |
juggler | gotta catch an appt here...take care everyone | 17:02 |
eghobo | hongbin: yes. but somebody need to guide me, becase I don't know code base at all (planning pickup in two weeks) | 17:02 |
brendenblanco | apuimedo I think it will have to be some other subinterface mechanism | 17:02 |
apuimedo | brendenblanco: in the guest? | 17:03 |
*** jwang_ has joined #openstack-containers | 17:03 | |
hongbin | eghobo: Sure. I believe the entire team will help you. Just come to here whenever you are blocked | 17:03 |
eghobo | any good pointers to setup dev environment? should I worry about specific devstack versions, etc? | 17:03 |
brendenblanco | apuimedo: as in only really a vlan/ipvlan/etc implementation will scale | 17:04 |
hongbin | eghobo: try this one https://github.com/openstack/magnum/blob/master/doc/source/dev/dev-quickstart.rst#exercising-the-services-using-devstack | 17:04 |
apuimedo | brendenblanco: what would you think about having each node (VM or otherwise) have a container were a device that is connected to the compute host uplink is created | 17:04 |
brendenblanco | apuimedo: so that would require some instrumentation of the libnetwork/etc. driver, which I'm too fresh to understand yet | 17:04 |
*** Tango has quit IRC | 17:04 | |
apuimedo | and then in that container an *agent* runs | 17:04 |
*** kebray has quit IRC | 17:04 | |
eghobo | hongbin: thx | 17:04 |
apuimedo | brendenblanco: well, my idea for libnetwork is to have a remote driver that asks ports to neutron | 17:05 |
brendenblanco | apuimedo: I think an agent of some sort will have to be the way | 17:05 |
apuimedo | and then it is pluggable | 17:05 |
apuimedo | for performing the binding | 17:05 |
apuimedo | and my crazy idea of the day is to have the binding happen in a container | 17:05 |
apuimedo | one veth in the target container, one veth in the *networking* container | 17:06 |
apuimedo | and in the networking container the binding happens | 17:06 |
apuimedo | (note that the networking container will probably be a requirement of the libnetwork remote driver itself, so I don't think it will mean extra overhead) | 17:07 |
apuimedo | brendenblanco: ^^ | 17:07 |
brendenblanco | apuimedo: I think the idea makes sense, but can be done with/without a networking container | 17:08 |
*** Drago has joined #openstack-containers | 17:08 | |
apuimedo | brendenblanco: well, as I put above, IIRC the docker people told me that the remote driver should be a container with which libnetwork talks via some RPC | 17:08 |
apuimedo | I'll talk to them this week | 17:08 |
apuimedo | brendenblanco: what's your timezone? | 17:09 |
brendenblanco | apuimedo: Pacific | 17:09 |
apuimedo | Europe/CEST here | 17:09 |
*** rbradfor has joined #openstack-containers | 17:09 | |
brendenblanco | apumedo: If as you say the container requirement is libnetwork's, then thats fine | 17:09 |
apuimedo | I'll keep you all posted about that part of the equation | 17:09 |
*** Drago has quit IRC | 17:10 | |
*** Drago has joined #openstack-containers | 17:10 | |
apuimedo | and I'd probably look into starting the docker libnetwork neutron driver development next week | 17:10 |
brendenblanco | apuimedo: sounds good | 17:10 |
apuimedo | hopefully we can use it to prototype the next magnum networking ;-) | 17:10 |
apuimedo | brendenblanco: have you looked at kubernetes networking? | 17:11 |
apuimedo | I haven't had the time to see how much they override | 17:11 |
apuimedo | but it is something we should check | 17:11 |
apuimedo | I've gotta run now | 17:11 |
apuimedo | my kid is waiting for me | 17:11 |
brendenblanco | apuimedo: yes, though other people on our team have tried it in practice, not me personally | 17:11 |
apuimedo | brendenblanco: good | 17:11 |
apuimedo | talk to you tomorrow ;-) | 17:12 |
*** apuimedo is now known as apuimedo|away | 17:12 | |
eghobo | if you are in bay area there is meetup about kub and networking this week | 17:12 |
*** vilobhmm1 has joined #openstack-containers | 17:14 | |
*** snrism has joined #openstack-containers | 17:15 | |
apuimedo|away | eghobo: I won't be there till dockercon | 17:16 |
eghobo | apuimedo|away: see you their ;) | 17:19 |
*** achanda has joined #openstack-containers | 17:33 | |
*** blakec has joined #openstack-containers | 17:37 | |
*** eghobo has quit IRC | 17:39 | |
*** blakec has quit IRC | 17:41 | |
*** eghobo has joined #openstack-containers | 17:43 | |
*** adrian_otto has joined #openstack-containers | 17:44 | |
*** pavel_ has joined #openstack-containers | 17:48 | |
pavel_ | Hello | 17:49 |
*** Tango has joined #openstack-containers | 17:49 | |
*** cloudm2 has joined #openstack-containers | 17:49 | |
pavel_ | I am trying to play with magnum by using it with devstack, I have issues with the network configuration, can anyone send me what is the configuration that he or she is using? | 17:50 |
pavel_ | I am talking about local.conf | 17:50 |
dims | pavel_: these are the settings used in our devstack CI job - http://git.openstack.org/cgit/openstack/magnum/tree/devstack/settings | 17:52 |
dims | please see README.rst in the same directory as well | 17:52 |
rbradfor | pavel_: I was able to follow these instructions and successfully install devstack in a VM with magnum — http://git.openstack.org/cgit/openstack/magnum/tree/doc/source/dev/dev-quickstart.rst I have some improvements to the docs also. | 17:54 |
*** blakec has joined #openstack-containers | 17:57 | |
pavel_ | rbradfor: were you using fedora or ubuntu? I am using fedora21 | 17:58 |
rbradfor | pavel_: This is an Ubuntu 14.04 LTS VM | 17:59 |
pavel_ | can you explain what should I put in: | 18:00 |
pavel_ | # FLOATING_RANGE=192.168.1.224/27 # PUBLIC_NETWORK_GATEWAY=192.168.1.225 # FIXED_RANGE=10.0.0.0/24 | 18:00 |
*** xek has quit IRC | 18:01 | |
*** hongbin has quit IRC | 18:01 | |
pavel_ | my network at the office is 10.0.0.0 netmask 255.255.252.0 | 18:02 |
*** Kennan has quit IRC | 18:02 | |
*** xek has joined #openstack-containers | 18:03 | |
*** hongbin has joined #openstack-containers | 18:03 | |
*** Kennan has joined #openstack-containers | 18:03 | |
*** brendenblanco has quit IRC | 18:04 | |
apuimedo|away | eghobo: looking forward to that | 18:06 |
*** brendenblanco has joined #openstack-containers | 18:11 | |
pavel_ | can you explain what should I write in: FLOATING_RANGE, PUBLIC_NETWORK_GATEWAY, FIXED_RANGE | 18:11 |
rbradfor | pavel_: for devstack, I used the quickstart instructions which are much simplier then the tree/devstack/settings. I have not yet finished testing my own VM, but it’s operational and I can for example create a baymodel and bay. | 18:13 |
*** fangfenghua has quit IRC | 18:13 | |
pavel_ | rbradfor: after running the ./stack.sh I loose connectivity from the machine outside | 18:15 |
rbradfor | pavel_: did you restart the VM, or just after stack.sh finishes? | 18:16 |
pavel_ | I am running it on a physical machine and didn't restart | 18:17 |
rbradfor | I had a similar problem using VMs yesterday, when restarting, while the interface and route seemed correct, I could not connect to public interface. It happened 3 times. Today, I am able to connect to the VM, shut it down, and restart and connect and start stack.sh with no problems. | 18:19 |
rbradfor | I was unable to determine the cause of the problem. | 18:19 |
*** achanda has quit IRC | 18:32 | |
*** vilobhmm1 has quit IRC | 18:33 | |
*** daneyon has joined #openstack-containers | 18:33 | |
*** alejandrito has quit IRC | 18:38 | |
*** vilobhmm1 has joined #openstack-containers | 18:39 | |
*** vilobhmm1 has quit IRC | 18:42 | |
*** snrism has quit IRC | 18:46 | |
*** logan2 has joined #openstack-containers | 18:47 | |
*** vilobhmm has joined #openstack-containers | 18:50 | |
*** p4tux has quit IRC | 19:01 | |
*** geronimo_ has joined #openstack-containers | 19:01 | |
*** daneyon has quit IRC | 19:11 | |
*** apuimedo|away has quit IRC | 19:12 | |
*** barra204 has joined #openstack-containers | 19:16 | |
*** apuimedo|away has joined #openstack-containers | 19:17 | |
*** MilesDenver has quit IRC | 19:27 | |
*** apuimedo|away has quit IRC | 19:28 | |
*** kebray has joined #openstack-containers | 19:32 | |
*** kebray has quit IRC | 19:34 | |
*** kebray has joined #openstack-containers | 19:36 | |
*** geronimo_ has quit IRC | 19:36 | |
*** jfarschman has joined #openstack-containers | 19:36 | |
*** jfarschman is now known as MilesDenver | 19:36 | |
*** blakec has quit IRC | 19:39 | |
*** p4tux has joined #openstack-containers | 19:41 | |
*** adrian_otto has quit IRC | 19:44 | |
*** adrian_otto has joined #openstack-containers | 19:45 | |
*** kebray has quit IRC | 19:51 | |
*** kebray has joined #openstack-containers | 19:52 | |
adrian_otto | sdake, I am ready to tag 2015.1.1 today. | 19:56 |
adrian_otto | based on stable/kilo | 19:56 |
adrian_otto | there is also an automatic tarrball of master that gets released each day, if something more recent is desired. | 19:57 |
*** rbradfor has left #openstack-containers | 20:06 | |
*** prad has quit IRC | 20:13 | |
*** abhide has joined #openstack-containers | 20:23 | |
*** julim has quit IRC | 20:27 | |
dims | adrian_otto: +1 | 20:29 |
*** adrian_otto1 has joined #openstack-containers | 20:34 | |
*** adrian_otto has quit IRC | 20:34 | |
*** prad has joined #openstack-containers | 20:38 | |
*** EricGonc_ has quit IRC | 20:45 | |
*** EricGonczer_ has joined #openstack-containers | 20:47 | |
*** adrian_otto1 is now known as adrian_otto | 20:56 | |
*** eghobo has quit IRC | 20:58 | |
*** EricGonczer_ has quit IRC | 20:58 | |
*** eghobo has joined #openstack-containers | 21:00 | |
*** daneyon has joined #openstack-containers | 21:00 | |
*** snrism has joined #openstack-containers | 21:02 | |
*** eghobo_ has joined #openstack-containers | 21:03 | |
*** EricGonczer_ has joined #openstack-containers | 21:03 | |
*** rlrevell has quit IRC | 21:04 | |
*** daneyon has quit IRC | 21:05 | |
*** eghobo has quit IRC | 21:07 | |
*** EricGonczer_ has quit IRC | 21:11 | |
*** alex_klimov has joined #openstack-containers | 21:13 | |
*** kitch has quit IRC | 21:29 | |
*** rpothier has quit IRC | 21:33 | |
*** blakec has joined #openstack-containers | 21:45 | |
*** eghobo_ has quit IRC | 21:50 | |
*** p4tux has quit IRC | 22:01 | |
*** eghobo has joined #openstack-containers | 22:01 | |
*** eghobo_ has joined #openstack-containers | 22:03 | |
*** eghobo has quit IRC | 22:06 | |
*** jjlehr has quit IRC | 22:19 | |
sdake | adrian_otto wfm | 22:22 |
sdake | https://pbs.twimg.com/media/B-t69ZTWsAMbind.jpg:large | 22:23 |
*** EricGonczer_ has joined #openstack-containers | 22:25 | |
*** dims has quit IRC | 22:25 | |
*** dims has joined #openstack-containers | 22:28 | |
*** hongbin has quit IRC | 22:43 | |
*** daneyon has joined #openstack-containers | 22:49 | |
*** prad has quit IRC | 22:50 | |
*** adrian_otto has quit IRC | 22:51 | |
*** daneyon has quit IRC | 22:54 | |
*** yuanying has joined #openstack-containers | 22:59 | |
*** eghobo_ has quit IRC | 23:01 | |
*** eghobo has joined #openstack-containers | 23:02 | |
*** suro-patz has joined #openstack-containers | 23:20 | |
Kennan | sdake apmelton there? | 23:21 |
sdake | sound me | 23:21 |
Kennan | https://blueprints.launchpad.net/magnum/+spec/configurable-coe-api-port | 23:21 |
sdake | wound | 23:22 |
Kennan | I just want to assigned it to me | 23:22 |
Kennan | not sure how to do that | 23:22 |
sdake | what is your gerrit id | 23:22 |
Kennan | gerrit review id ? | 23:22 |
Kennan | or launchpad id ? | 23:23 |
sdake | they should be the same ;-) | 23:23 |
Kennan | wkqwu | 23:23 |
sdake | and you can commit to june 25th deadine? | 23:24 |
Kennan | I think so | 23:24 |
sdake | the port is specified in the cnofig files | 23:25 |
sdake | it is a configurable option there | 23:25 |
sdake | the template will have to be modified to take it as a parameter and cofigure it in the fragments | 23:25 |
Kennan | yes, seems we have apiserver_port, when created baymodel | 23:25 |
Kennan | we can pass to heatb finally | 23:25 |
Kennan | and for apiserver_port it should not bind to k8s, it also applied for swarm master I think | 23:29 |
*** Tango has quit IRC | 23:29 | |
Kennan | it should be swarm manager port | 23:30 |
Kennan | it then can be picked by heat template | 23:30 |
Kennan | and do heat soft config | 23:30 |
*** alex_klimov has quit IRC | 23:30 | |
Kennan | sdake BTW I also checked some bp code merged, but not set bp approve or something, seems we missed :) | 23:35 |
sdake | link | 23:35 |
Kennan | https://blueprints.launchpad.net/magnum/+spec/magnum-i18n-support | 23:35 |
Kennan | I drafted that before | 23:36 |
Kennan | adrian_otto forget to check it | 23:36 |
sdake | the core team ideally would deal with launchpad rather then 1 person :) | 23:37 |
sdake | adrian_otto around? | 23:38 |
Kennan | not find him | 23:39 |
*** eghobo has quit IRC | 23:43 | |
*** suro-patz has quit IRC | 23:50 | |
openstackgerrit | Kai Qiang Wu(Kennan) proposed openstack/magnum: Rename bay_k8s_heat to more general name https://review.openstack.org/182946 | 23:54 |
*** vilobhmm has quit IRC | 23:57 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!