Haomeng|2 | naohirot: moring | 00:08 |
---|---|---|
Haomeng|2 | mrda: morning:) | 00:08 |
naohirot | Haomeng|2: good morning :) | 00:09 |
mrda | Morning Haomeng|2 | 00:09 |
Haomeng|2 | naohirot: :) | 00:14 |
Haomeng|2 | mrda: :) | 00:14 |
*** Masahiro has joined #openstack-ironic | 00:18 | |
*** chen has left #openstack-ironic | 00:19 | |
*** Masahiro has quit IRC | 00:22 | |
*** alexpilotti has quit IRC | 00:43 | |
dlaube | hey ironic | 00:43 |
* dlaube tips his hat to mrda and Haomeng|2 | 00:44 | |
*** Masahiro has joined #openstack-ironic | 01:01 | |
mrda | hi dlaube | 01:20 |
*** jerryz has joined #openstack-ironic | 01:34 | |
*** ryanpetrello has joined #openstack-ironic | 01:46 | |
*** Haomeng|2 has quit IRC | 01:51 | |
*** Haomeng has joined #openstack-ironic | 02:07 | |
*** nosnos has joined #openstack-ironic | 02:10 | |
*** smoriya has joined #openstack-ironic | 02:10 | |
*** ryanpetrello has quit IRC | 02:14 | |
*** achanda has joined #openstack-ironic | 03:06 | |
*** jerryz has quit IRC | 03:12 | |
*** achanda has quit IRC | 03:19 | |
openstackgerrit | Haomeng,Wang proposed openstack/ironic: improve the neutron configuration in install-guide https://review.openstack.org/143349 | 03:19 |
openstackgerrit | Haomeng,Wang proposed openstack/ironic: improve the neutron configuration in install-guide https://review.openstack.org/143349 | 03:23 |
*** chenglch has joined #openstack-ironic | 03:25 | |
*** dlaube has quit IRC | 03:26 | |
*** naohirot has quit IRC | 03:26 | |
*** Masahiro has quit IRC | 03:26 | |
*** dlaube has joined #openstack-ironic | 03:37 | |
*** nosnos has quit IRC | 03:41 | |
*** nosnos has joined #openstack-ironic | 03:42 | |
*** nosnos has quit IRC | 03:46 | |
*** ramineni has joined #openstack-ironic | 04:01 | |
*** naohirot has joined #openstack-ironic | 04:09 | |
*** nosnos has joined #openstack-ironic | 04:15 | |
*** mitz has quit IRC | 04:16 | |
*** mitz has joined #openstack-ironic | 04:18 | |
*** Masahiro has joined #openstack-ironic | 04:27 | |
*** rameshg87 has joined #openstack-ironic | 04:32 | |
*** yuanying_ has joined #openstack-ironic | 05:04 | |
*** zyluo has joined #openstack-ironic | 05:04 | |
*** ZhangYang has quit IRC | 05:04 | |
*** keekz has quit IRC | 05:05 | |
*** ZhangYang has joined #openstack-ironic | 05:05 | |
zyluo | no meeting today? | 05:06 |
*** yuanying has quit IRC | 05:06 | |
*** kylestev has quit IRC | 05:09 | |
*** keekz has joined #openstack-ironic | 05:09 | |
*** kylestev has joined #openstack-ironic | 05:09 | |
*** Haomeng|2 has joined #openstack-ironic | 05:09 | |
*** cinerama` has joined #openstack-ironic | 05:10 | |
*** Haomeng has quit IRC | 05:11 | |
*** Madasi has quit IRC | 05:11 | |
*** cinerama has quit IRC | 05:11 | |
*** devananda has quit IRC | 05:11 | |
*** devanand1 has joined #openstack-ironic | 05:11 | |
*** Madasi has joined #openstack-ironic | 05:12 | |
*** chenglch has quit IRC | 05:16 | |
Haomeng|2 | zyluo: should be tomorrow I think | 05:25 |
naohirot | rameshg87: Hi, thank you for the review, can I ask some questions regarding the comment 1 and 3? | 05:25 |
rameshg87 | naohirot, sure | 05:26 |
naohirot | rameshg87: regarding the comment 1, can we have the super user password of the OS where the conductor is running? | 05:27 |
rameshg87 | naohirot, generally we don't do that | 05:27 |
rameshg87 | naohirot, instead we use rootwrap to run some commands with root user priveleges | 05:27 |
rameshg87 | naohirot, https://github.com/openstack/ironic/tree/master/etc/ironic/rootwrap.d | 05:28 |
naohirot | rameshg87: do you mean we can create setuid script? | 05:28 |
rameshg87 | naohirot, it works like this | 05:29 |
rameshg87 | naohirot, we have a command-line called ironic-rootwrap installed on the conductor | 05:29 |
rameshg87 | naohirot, we use this command-line to run commands with root priveleges | 05:29 |
rameshg87 | naohirot, it looks at /etc/ironic/rootwrap.d for some filter files in specific format | 05:30 |
rameshg87 | naohirot, for example we can run mount command from ironic conductor: https://github.com/openstack/ironic/blob/master/etc/ironic/rootwrap.d/ironic-utils.filters#L13 | 05:30 |
*** chenglch has joined #openstack-ironic | 05:31 | |
rameshg87 | naohirot, and we do like this in code: https://github.com/openstack/ironic/blob/master/ironic/common/utils.py#L507-L518 | 05:31 |
rameshg87 | naohirot, if that was what you were looking for. did i answer your question ? :) | 05:31 |
naohirot | rameshg87: I haven't fully understood how the ironic-utils.filters works | 05:32 |
rameshg87 | naohirot, may be this will help: https://wiki.openstack.org/wiki/Rootwrap | 05:33 |
rameshg87 | naohirot, it is a common practise across openstack projects | 05:33 |
naohirot | rameshg87: If I followed the way ironic-utils.filters does, do I provide a shell script under ironic / etc / ironic / rootwrap.d ? | 05:33 |
rameshg87 | naohirot, what's the shell script here ? | 05:34 |
rameshg87 | naohirot, is it for running a single command as root ? | 05:34 |
naohirot | rameshg87: I think I need a shell script, because I need to check if the specified NFS/CIFS server has already mounted or not. | 05:35 |
rameshg87 | naohirot, who will mount it ? operator ? | 05:36 |
naohirot | rameshg87: I'm thinking a case deployer has multiple of NFS/CIFS server. | 05:36 |
naohirot | rameshg87: Before getting your comment, I thought that the conductor doesn't have the super user password, so I thought that the deplyer mount manually. | 05:37 |
naohirot | rameshg87: s/deplyer/deployer/ | 05:38 |
rameshg87 | naohirot, if the deployer mounts manually, why would conductor need username/password of the nfs/cifs share ? | 05:38 |
naohirot | rameshg87: Oh that's because the conductor has to tell the username/password to iRMC/ | 05:39 |
naohirot | rameshg87: /\/\./ | 05:40 |
rameshg87 | naohirot, ah okay | 05:40 |
rameshg87 | naohirot, i get it now | 05:40 |
rameshg87 | naohirot, i was under assumption that we would mount the nfs/cifs on the conductor for each deploy | 05:41 |
naohirot | rameshg87: Okay, I'll take a look https://wiki.openstack.org/wiki/Rootwrap thoroughly later. | 05:41 |
rameshg87 | naohirot, i too feel the deployer can mount it manually | 05:41 |
rameshg87 | naohirot, 1 question | 05:42 |
naohirot | rameshg87: are you thinking to mount only when it is necessary? | 05:42 |
naohirot | rameshg87: please go ahead | 05:42 |
rameshg87 | naohirot, i was under that assumption reading the spec. i feel that is not required. | 05:42 |
rameshg87 | naohirot, we could leave the nfs/cifs share mounted on the conductor | 05:42 |
rameshg87 | naohirot, i agree to your thought | 05:42 |
rameshg87 | naohirot, but how would irmc deploy driver know where it is mounted on the ironic conducotr ? | 05:43 |
naohirot | rameshg87: which my thought? | 05:43 |
rameshg87 | naohirot, your thought that "deployer mounts manually on the conductor" | 05:43 |
naohirot | rameshg87: Okay about my thought. | 05:44 |
rameshg87 | naohirot, how would irmc deploy driver know where it is mounted on the ironic conducotr ? | 05:45 |
naohirot | rameshg87: I thought that the mount point is fixed like /nfs_root or something. | 05:45 |
rameshg87 | naohirot, yeah so better to put it as a config option with default value as "/nfs_root" instead of hard-coding it | 05:46 |
naohirot | rameshg87: Then the conductor create a mount point under /nfs_root for each NIF/CIFS server. | 05:46 |
*** dlaube has quit IRC | 05:46 | |
rameshg87 | naohirot, like we have tftp_root https://github.com/openstack/ironic/blob/master/etc/ironic/ironic.conf.sample#L1172-L1173 | 05:47 |
rameshg87 | naohirot, "for each nfs/cifs server" ? will we have multiple nfs/cifs servers then ? | 05:47 |
naohirot | rameshg87: Okay I'll put the mount point in the config file, thanks | 05:47 |
rameshg87 | naohirot, will we have multiple nfs/cifs servers for a single conductor ? | 05:48 |
naohirot | rameshg87: Yes, that's the reason I keep driver_info optional filed which is related to your comment 2. | 05:49 |
rameshg87 | naohirot, why would we require multiple nfs/cifs servers ? | 05:50 |
naohirot | rameshg87: the config file is for all managed baremetal nodes, so it is one to many relationship. | 05:50 |
rameshg87 | naohirot, if we have 1 nfs/cifs server per conductor, things would be lot simpler | 05:50 |
naohirot | rameshg87: basically the conductor and NIF/CIFS is one to one relationship. | 05:51 |
rameshg87 | naohirot, i am still confused | 05:51 |
naohirot | rameshg87: let me explain why I need optional driver_info field. | 05:52 |
naohirot | rameshg87: driver_info has field which is one to one relation ship with a bearmetal node. | 05:53 |
naohirot | rameshg87: let's say the deplyer have 10 bearmetal nodes. | 05:53 |
rameshg87 | naohirot, actually i will need to leave in 5 mins, will be back in an hour or so | 05:54 |
naohirot | rameshg87: one deployer put 9 deploy ios image into NIF server A. | 05:54 |
rameshg87 | naohirot, shall we continue after i come back ? | 05:54 |
naohirot | rameshg87: sure! | 05:54 |
rameshg87 | naohirot, thanks | 05:54 |
*** rameshg87 is now known as rameshg87-away | 05:54 | |
naohirot | rameshg87: no problem :) | 05:54 |
naohirot | rameshg87-away: another deployer might put different deploy iso image into NFS server B for the last one baremetal node. | 05:56 |
*** krtaylor has joined #openstack-ironic | 05:57 | |
openstackgerrit | Syed Ismail Faizan Barmawer proposed openstack/ironic-specs: Partition image support for agent driver https://review.openstack.org/137363 | 06:00 |
*** pensu has joined #openstack-ironic | 06:22 | |
*** lazy_prince has quit IRC | 06:27 | |
*** lazy_prince has joined #openstack-ironic | 06:27 | |
*** mrda is now known as mrda-away | 06:29 | |
*** chenglch has quit IRC | 06:57 | |
*** chenglch has joined #openstack-ironic | 06:57 | |
lintan | zyluo: we have the meeting tomorrow afternoon | 07:09 |
*** rameshg87-away is now known as rameshg87 | 07:30 | |
rameshg87 | naohirot, hi | 07:30 |
naohirot | rameshg87: welcome back:-) | 07:30 |
*** k4n0 has joined #openstack-ironic | 07:30 | |
rameshg87 | naohirot, :) | 07:30 |
naohirot | rameshg87: so let's talk about your comment 2. | 07:31 |
rameshg87 | naohirot, yes | 07:31 |
rameshg87 | naohirot, you may go ahead and explain your scenario | 07:31 |
naohirot | rameshg87: Okay, let me explain the reason why I keep disk_util options by the usecase. | 07:32 |
naohirot | rameshg87: The use case is that two deployers manage 10 bare metal servers. | 07:33 |
naohirot | rameshg87: One deployer put 9 deploy ISO image in NFS server A, which is configured in ironic.conf. | 07:33 |
naohirot | rameshg87: The other deployer put one ISO image into NFS server B for the remaining one bearmetal due to some reason. | 07:34 |
naohirot | rameshg87: The case needs to supersede the setting in ironic.conf by optional driver_info. | 07:35 |
naohirot | rameshg87: do you understand my explanation? | 07:36 |
rameshg87 | naohirot, do you mean two different deployers (who can't share credentials with each other) managing a set of bare metal nodes | 07:36 |
rameshg87 | naohirot, i assume "sharing of credentials" is the reason why 2 deployers chose to have 2 different NFS servers | 07:37 |
rameshg87 | naohirot, is that correct ? | 07:37 |
naohirot | rameshg87: Yes, the first deployer my be sick :-) | 07:37 |
naohirot | rameshg87: s/my/may/ | 07:37 |
rameshg87 | naohirot, i don't think anything in Ironic is designed for 2 different deployers who don't want to share credentials | 07:38 |
rameshg87 | naohirot, take for example keystone admin credentials | 07:38 |
rameshg87 | naohirot, we don't have different keystone admin credentials per node in Ironic | 07:39 |
rameshg87 | naohirot, i might be wrong, but that's my knowledge | 07:39 |
rameshg87 | naohirot, the keystone admin credentials are mentioned in ironic.conf and this is used for accessing other services like Swift | 07:40 |
naohirot | rameshg87: Umm, my point would not be "sharing of credentials", but keep opportunity to supersede the one-to-many setting. | 07:40 |
rameshg87 | naohirot, and Neutron | 07:40 |
rameshg87 | naohirot, yeah but i just worry it complicates things. | 07:40 |
rameshg87 | naohirot, okay if we do that | 07:41 |
rameshg87 | naohirot, using your scenario | 07:41 |
rameshg87 | naohirot, i chose to deploy 10th bare metal node | 07:41 |
naohirot | rameshg87: do you think it is going to complicate? | 07:41 |
rameshg87 | naohirot, 10th bare metal node is going to use NFS server B | 07:42 |
naohirot | rameshg87: I don't like to complicate the first implementation either :) | 07:42 |
rameshg87 | naohirot, irmc deploy driver generates floppy image | 07:43 |
rameshg87 | naohirot, now it wants to expose the floppy image to the bare metal node | 07:43 |
rameshg87 | naohirot, where would it create the image on the conductor node ? | 07:43 |
rameshg87 | naohirot, there is only one nfs_root setting ? | 07:43 |
rameshg87 | naohirot, right ? | 07:43 |
naohirot | rameshg87: not quite right or different from what I thought | 07:44 |
rameshg87 | naohirot, hmm okay | 07:45 |
rameshg87 | naohirot, my worry is putting these fields like irmc_remote_image_server into the DB is going to complicate - because at one moment a node might be managed by conductor A and next moment by conductor B | 07:46 |
naohirot | rameshg87: let's say there is a partition /export in a NFS server | 07:46 |
rameshg87 | naohirot, both conductor A and conductor B has to know how to put things into a different NFS Server than what it is configured | 07:47 |
*** subscope has joined #openstack-ironic | 07:48 | |
*** ZhangYang has quit IRC | 07:49 | |
naohirot | rameshg87: let me ask basic question. Is the DB you mention driver_info? | 07:49 |
rameshg87 | naohirot, yes | 07:50 |
*** ZhangYang has joined #openstack-ironic | 07:50 | |
naohirot | rameshg87: My understanding is that the driver_info has one-to-one relation ship with a bearmetal node. Why is the thing likely to be complicate? | 07:51 |
rameshg87 | naohirot, let me try to put it this way :) | 07:52 |
rameshg87 | naohirot, let's say i have 2 conductors - X and Y | 07:52 |
rameshg87 | naohirot, conductor X is configured to use nfs server A in ironic.conf | 07:52 |
rameshg87 | naohirot, conductor Y is configured to use nfs server B in ironic.conf | 07:52 |
rameshg87 | naohirot, we agreed that there will be a nfs_root config setting, right ? | 07:53 |
naohirot | rameshg87: Yes | 07:53 |
rameshg87 | naohirot, let's say nfs_root on ironic.conf of conductor X is on /nfs_server_a | 07:54 |
rameshg87 | naohirot, let's say nfs_root on ironic.conf of conductor Y is on /nfs_server_b | 07:54 |
naohirot | rameshg87: Yes | 07:54 |
rameshg87 | naohirot, as long as i *don't* provide irmc_remote_image_server in node's driver_info, things are fine | 07:54 |
rameshg87 | naohirot, if the node is managed by conductor X, it will use nfs server A | 07:55 |
rameshg87 | naohirot, if the node is managed by conductor Y, it will use nfs server B | 07:55 |
rameshg87 | naohirot, right so far ? | 07:55 |
naohirot | rameshg87: Yes | 07:56 |
rameshg87 | naohirot, the deploy driver will just create the images on nfs_root as per the conductor's setting (whether X or Y) | 07:56 |
naohirot | Yes | 07:56 |
rameshg87 | naohirot, now imagine i register another node with irmc_remote_image_server and other fields | 07:56 |
rameshg87 | naohirot, node with irmc_remote_image_server in it's driver_info | 07:57 |
rameshg87 | naohirot, the irmc_remote_image_server is set of nfs server C | 07:57 |
rameshg87 | naohirot, imagine node is managed by conductor X | 07:57 |
naohirot | rameshg87: Yes | 07:57 |
naohirot | rameshg87: Yes | 07:58 |
rameshg87 | naohirot, how will conductor X know where to create the images ? | 07:58 |
rameshg87 | naohirot, it can't create in it's nfs_root in ironic.conf because it is actually nfs server A | 07:58 |
naohirot | rameshg87: I got your point. | 08:00 |
naohirot | rameshg87: However maybe what I thought how to use /nfs_root would be different what you thought. Let me explain. | 08:01 |
naohirot | rameshg87: What I thought is I create another layer of mount point under /nfs_root, for example /nfs_root/nfs_server_A, /nfs_root/nfs_server_b, like that. | 08:03 |
rameshg87 | naohirot, okay | 08:04 |
rameshg87 | naohirot, but if we do that the deployer has to make sure that /nfs_root/nfs_server_c is mounted on both conductors X and Y | 08:04 |
rameshg87 | naohirot, in our case | 08:04 |
rameshg87 | naohirot, in short the moment a deployer registers a node with irmc_remote_image_server in it's driver_info | 08:05 |
rameshg87 | naohirot, deployer has to make sure that it is manually mounted on all the conductor nodes | 08:05 |
rameshg87 | naohirot, which actually i think complicates life for deployer :) | 08:06 |
naohirot | rameshg87: let me ask another basic question, are you thinking to share a boot ISO among multiple baremetal nodes? | 08:07 |
rameshg87 | naohirot, yes, we have that in plan for ilo driver | 08:07 |
rameshg87 | naohirot, https://review.openstack.org/#/c/137291/ | 08:08 |
naohirot | rameshg87: but current implementation of iLO is that each bearmetal nodes require its own 3 images right?, deploy iso, fd image, boot iso. | 08:09 |
naohirot | rameshg87: s/nodes/node/ | 08:09 |
rameshg87 | naohirot, deploy iso is shared | 08:09 |
rameshg87 | naohirot, each bare metal has other 2 images | 08:09 |
*** ifarkas has joined #openstack-ironic | 08:10 | |
*** ifarkas_ has joined #openstack-ironic | 08:10 | |
naohirot | rameshg87: I see, is the https://review.openstack.org/#/c/137291/ make all three image sharable? | 08:11 |
naohirot | rameshg87: s/is/does/ | 08:11 |
rameshg87 | naohirot, only the boot image will be shareable | 08:11 |
*** ifarkas_ has quit IRC | 08:12 | |
naohirot | rameshg87: Okay | 08:13 |
naohirot | rameshg87: I think I got your point, let me think a little bit about driver_info. | 08:14 |
rameshg87 | naohirot, okay | 08:14 |
naohirot | rameshg87: I'll ask you if I got stuck. | 08:14 |
rameshg87 | naohirot, sure | 08:15 |
naohirot | rameshg87: thanks! | 08:15 |
rameshg87 | naohirot, wc :) | 08:15 |
naohirot | rameshg87: One thing, regarding CIFS, do you think it's reasonable to have /cifs_root too? | 08:17 |
rameshg87 | naohirot, i would think we combine nfs and cifs root into one | 08:18 |
rameshg87 | naohirot, something like remote_fs_root | 08:18 |
rameshg87 | naohirot, anyway it's upto the deployer to choose nfs or cifs | 08:19 |
openstackgerrit | Haomeng,Wang proposed openstack/ironic: improve the neutron configuration in install-guide https://review.openstack.org/143349 | 08:19 |
naohirot | rameshg87: Yeah, what you think is one file server per a conductor. so the parameter name should be like "/nfs_cifs_root"? | 08:19 |
rameshg87 | naohirot, yeah looks good too :) | 08:20 |
naohirot | rameshg87: Okay, thanks | 08:20 |
* naohirot may be "/share_file_root" is better :) | 08:23 | |
*** dorry has quit IRC | 08:23 | |
*** kongfy has joined #openstack-ironic | 08:26 | |
kongfy | hi, I have a problem when I deploy ironic using devstack’s stable/juno branch, | 08:29 |
kongfy | [ERROR] /home/stack/devstack/lib/ironic:477 Nova hypervisor-stats did not register at least 3 nodes | 08:29 |
kongfy | This message comes out at the end of the process, do you guys have some idea? | 08:29 |
*** jerryz has joined #openstack-ironic | 08:36 | |
Haomeng|2 | kongfy: hi, we have existing bug for devstack - https://bugs.launchpad.net/ironic/+bug/1398128 , maybe it should be back-port to juno branch | 08:37 |
kongfy | OK, I will try it, but I’m not sure whether it’s a bug or just my personnal mistake | 08:40 |
kongfy | It seems promising! thank you Haomeng ! | 08:43 |
Haomeng|2 | kongfy: welcome | 08:44 |
Haomeng|2 | kongfy: but this is unstable issue, maybe you can get it working with next round retry:) | 08:44 |
kongfy | to me it’s very stable , I tried many times , every time ends up with this message | 08:46 |
Haomeng|2 | kongfy: :) | 08:51 |
*** kongfy has quit IRC | 09:03 | |
*** zyluo has quit IRC | 09:10 | |
*** derekh has joined #openstack-ironic | 09:13 | |
*** subscope has quit IRC | 09:16 | |
*** anderbubble has joined #openstack-ironic | 09:20 | |
*** andreykurilin_ has joined #openstack-ironic | 09:24 | |
*** anderbubble has quit IRC | 09:24 | |
*** andreykurilin_ has quit IRC | 09:30 | |
*** andreykurilin__ has joined #openstack-ironic | 09:30 | |
*** athomas has joined #openstack-ironic | 09:37 | |
*** Marga_ has joined #openstack-ironic | 09:38 | |
*** romcheg has joined #openstack-ironic | 10:01 | |
*** ifarkas has quit IRC | 10:18 | |
*** Masahiro has quit IRC | 10:21 | |
*** Masahiro has joined #openstack-ironic | 10:21 | |
*** andreykurilin__ has quit IRC | 10:25 | |
*** ifarkas has joined #openstack-ironic | 10:27 | |
*** naohirot has quit IRC | 10:27 | |
*** MattMan has joined #openstack-ironic | 10:28 | |
*** Masahiro has quit IRC | 10:37 | |
*** chenglch has quit IRC | 10:42 | |
*** Marga_ has quit IRC | 10:59 | |
rameshg87 | ifarkas, hi | 10:59 |
*** Marga_ has joined #openstack-ironic | 10:59 | |
ifarkas | rameshg87, hi | 11:00 |
rameshg87 | ifarkas, any updates on the wwn issue on the raid configuration spec: https://review.openstack.org/#/c/135899/ ? | 11:01 |
ifarkas | rameshg87, not yet, I am planning to look into that later today | 11:02 |
rameshg87 | ifarkas, okay | 11:03 |
ifarkas | rameshg87, realistically I can fully investigate it next year as I will be on vacation from tomorrow | 11:03 |
rameshg87 | ifarkas, actually i am thinking if we can make root_device_hint a driver-specific thing and then move on with the generic spec | 11:03 |
rameshg87 | ifarkas, like currently the root_device may be specified in many ways and let driver choose which one it should present | 11:04 |
ifarkas | rameshg87, +1 | 11:04 |
rameshg87 | ifarkas, okay i will rewrite the spec, may be it will unblock from people reviewing the general spec | 11:05 |
ifarkas | rameshg87, that was actually my original idea, that's why I didn't include that in my original spec | 11:05 |
ifarkas | rameshg87, ok | 11:05 |
rameshg87 | ifarkas, i will do that then, thanks | 11:05 |
*** lucasagomes has joined #openstack-ironic | 11:07 | |
openstackgerrit | Ramakrishnan G proposed openstack/ironic-specs: New driver interface for RAID configuration https://review.openstack.org/135899 | 11:10 |
rameshg87 | ifarkas, ^^ | 11:11 |
rameshg87 | ifarkas, please remove the workflow-1 if this looks fine to you and then review it once please | 11:11 |
rameshg87 | ifarkas, oh W-1 is already removed :) so please review it | 11:11 |
ifarkas | rameshg87, will do | 11:11 |
ifarkas | rameshg87, excellent :-) | 11:12 |
*** nosnos has quit IRC | 11:13 | |
*** nosnos has joined #openstack-ironic | 11:13 | |
openstackgerrit | Ramakrishnan G proposed openstack/ironic-specs: Add support for VirtualBox WebService. https://review.openstack.org/137926 | 11:15 |
*** rameshg87 has quit IRC | 11:15 | |
*** nosnos has quit IRC | 11:17 | |
*** Masahiro has joined #openstack-ironic | 11:18 | |
*** Masahiro has quit IRC | 11:20 | |
*** Haomeng has joined #openstack-ironic | 11:23 | |
*** Haomeng|2 has quit IRC | 11:24 | |
*** kongfy has joined #openstack-ironic | 11:33 | |
*** romcheg has quit IRC | 11:40 | |
*** smoriya has quit IRC | 11:41 | |
*** Marga_ has quit IRC | 11:45 | |
*** achanda has joined #openstack-ironic | 11:46 | |
*** romcheg has joined #openstack-ironic | 11:46 | |
*** kongfy has quit IRC | 11:48 | |
*** Marga_ has joined #openstack-ironic | 11:58 | |
*** naohirot has joined #openstack-ironic | 12:00 | |
*** Marga_ has quit IRC | 12:06 | |
*** Marga_ has joined #openstack-ironic | 12:08 | |
*** Marga_ has quit IRC | 12:16 | |
*** Marga_ has joined #openstack-ironic | 12:19 | |
*** ijw has joined #openstack-ironic | 12:19 | |
*** achanda has quit IRC | 12:32 | |
*** achanda has joined #openstack-ironic | 12:33 | |
*** achanda has quit IRC | 12:37 | |
*** Marga_ has quit IRC | 12:44 | |
*** lazy_prince has quit IRC | 12:45 | |
*** Haomeng has quit IRC | 12:46 | |
*** rameshg87 has joined #openstack-ironic | 12:49 | |
*** Haomeng has joined #openstack-ironic | 12:49 | |
*** subscope has joined #openstack-ironic | 13:05 | |
*** killer_prince has joined #openstack-ironic | 13:08 | |
*** killer_prince is now known as lazy_prince | 13:08 | |
*** subscope has quit IRC | 13:10 | |
*** rameshg87 has quit IRC | 13:11 | |
*** dprince has joined #openstack-ironic | 13:13 | |
*** ijw has quit IRC | 13:16 | |
*** ijw has joined #openstack-ironic | 13:17 | |
*** Haomeng|2 has joined #openstack-ironic | 13:19 | |
*** Haomeng has quit IRC | 13:20 | |
*** Haomeng has joined #openstack-ironic | 13:24 | |
*** Haomeng|2 has quit IRC | 13:25 | |
*** Masahiro has joined #openstack-ironic | 13:29 | |
*** aswadr has joined #openstack-ironic | 13:31 | |
romcheg | Hi guys! | 13:32 |
*** Masahiro_ has joined #openstack-ironic | 13:32 | |
romcheg | Could please someone remind me what is preferable way to make a reference on a specific commit in my commit msg? | 13:33 |
openstackgerrit | Lucas Alvares Gomes proposed openstack/ironic: PXE: Pass root device hints via kernel cmdline https://review.openstack.org/142109 | 13:33 |
romcheg | Is that a change-id or a sha hash? | 13:33 |
lucasagomes | romcheg, I think sha hash, because it would work on gerrit (clicking) and with git log, git log <sha hash> | 13:34 |
lucasagomes | where commit if only works with gerrit | 13:34 |
*** Masahiro has quit IRC | 13:34 | |
romcheg | lucasagomes: thanks! | 13:35 |
lucasagomes | commit id only* | 13:35 |
lucasagomes | romcheg, yw! | 13:35 |
*** Masahiro has joined #openstack-ironic | 13:35 | |
*** Masahiro_ has quit IRC | 13:36 | |
openstackgerrit | Vladyslav Drok proposed openstack/ironic: Support for non-Glance image references https://review.openstack.org/136741 | 13:39 |
*** Masahiro has quit IRC | 13:40 | |
*** Masahiro has joined #openstack-ironic | 13:41 | |
openstackgerrit | Naohiro Tamura proposed openstack/ironic-specs: iRMC Virtual Media Deploy Driver for Ironic https://review.openstack.org/134865 | 13:43 |
*** Masahiro has quit IRC | 13:49 | |
openstackgerrit | Roman Prykhodchenko proposed openstack/ironic: Refactoring for Ironic policy https://review.openstack.org/126265 | 13:51 |
*** Masahiro has joined #openstack-ironic | 13:54 | |
*** pensu has quit IRC | 13:55 | |
*** ijw has quit IRC | 13:56 | |
*** Masahiro has quit IRC | 13:58 | |
*** Masahiro has joined #openstack-ironic | 13:58 | |
*** athomas has quit IRC | 13:59 | |
*** ijw_ has joined #openstack-ironic | 14:00 | |
*** ijw_ has quit IRC | 14:02 | |
*** ijw has joined #openstack-ironic | 14:02 | |
*** Masahiro has quit IRC | 14:03 | |
*** Masahiro has joined #openstack-ironic | 14:03 | |
*** athomas has joined #openstack-ironic | 14:06 | |
*** rloo has joined #openstack-ironic | 14:11 | |
openstackgerrit | Roman Prykhodchenko proposed openstack/ironic: Refactoring for Ironic policy https://review.openstack.org/126265 | 14:12 |
*** Masahiro has quit IRC | 14:12 | |
*** Guest32161 has joined #openstack-ironic | 14:15 | |
*** Masahiro has joined #openstack-ironic | 14:15 | |
*** naohirot has quit IRC | 14:18 | |
*** Masahiro has quit IRC | 14:20 | |
*** ijw has quit IRC | 14:35 | |
yuriyz|2 | hi lucasagomes | 14:50 |
*** yuriyz|2 has quit IRC | 14:51 | |
*** yuriyz has joined #openstack-ironic | 14:51 | |
openstackgerrit | Tan Lin proposed openstack/ironic: Add AMT-PXE-Driver to deploy cloud on PC https://review.openstack.org/135184 | 14:54 |
*** mjturek has joined #openstack-ironic | 14:58 | |
lucasagomes | yuriyz, hi there | 15:00 |
* lucasagomes is in a call will finish pretty soon | 15:00 | |
yuriyz | lucasagomes, can you look at the new version of FA spec https://review.openstack.org/#/c/138115/ ? | 15:05 |
lucasagomes | yuriyz, yes, sorry I haven't reviewed that often. I was reading the ML about it | 15:05 |
lucasagomes | haven't catch up with all yet | 15:06 |
lucasagomes | but I will take a look today | 15:06 |
yuriyz | lucasagomes, thanks | 15:06 |
ianco | hi all! i need a sanity check | 15:07 |
ianco | so if i install an ironic node, when it comes back up after install, it should dhcp and be able to reach the metadata service for its real config info | 15:07 |
ianco | is that not accurate? | 15:08 |
*** lucasagomes is now known as lucas-hungry | 15:13 | |
*** ryanpetrello has joined #openstack-ironic | 15:16 | |
*** Masahiro has joined #openstack-ironic | 15:16 | |
*** Nisha has joined #openstack-ironic | 15:17 | |
*** jerryz has quit IRC | 15:19 | |
*** Masahiro has quit IRC | 15:21 | |
*** ifarkas has quit IRC | 15:24 | |
NobodyCam | good morning Ironic | 15:25 |
yuriyz | morning NobodyCam | 15:28 |
NobodyCam | morning yuriyz :) | 15:28 |
*** ryanpetrello has quit IRC | 15:34 | |
*** jrist has joined #openstack-ironic | 15:43 | |
Nisha | morning NobodyCam | 15:45 |
NobodyCam | morning Nisha :) | 15:46 |
Nisha | NobodyCam, :) | 15:46 |
Nisha | rloo, there? | 15:46 |
*** EmilienM is now known as EmilienM|afk | 15:47 | |
rloo | hi Nisha | 15:47 |
Nisha | i was addressing your comments on introspection spec | 15:47 |
Nisha | hi rloo | 15:47 |
Nisha | rloo, regarding comment "We'll probably want these methods too: | 15:48 |
Nisha | - validate() | 15:48 |
Nisha | - get_properties()" | 15:48 |
Nisha | rloo, do we need to add these in spec? | 15:48 |
rloo | Nisha: yes, they should be added because this spec introduces the new InspectInterface class. | 15:49 |
NobodyCam | oh morning rloo :) | 15:49 |
rloo | Nisha: did your code have validate() and get_properties()? | 15:49 |
rloo | morning NobodyCam | 15:49 |
Nisha | as of now , no | 15:49 |
Nisha | but i intended to add them | 15:49 |
rloo | Nisha: that's why it should be added to the spec. In case you forgot to code it ;) | 15:49 |
Nisha | because i need to do changes to add them as InspectInterface() | 15:50 |
*** datajerk has quit IRC | 15:50 | |
Nisha | Ok. i will add them :) | 15:50 |
rloo | thx Nisha. | 15:50 |
Nisha | Thanks rloo | 15:50 |
*** achanda has joined #openstack-ironic | 15:51 | |
*** ryanpetrello has joined #openstack-ironic | 16:02 | |
*** bradjones has joined #openstack-ironic | 16:06 | |
NobodyCam | yuriyz: question. does the fuel data file need to be generated per Node (depoly), or can it also be generic (use for multiable deploys)? | 16:07 |
openstackgerrit | Nisha Agarwal proposed openstack/ironic-specs: Discover node properties using new target inspect with node-set-provision-state https://review.openstack.org/100951 | 16:09 |
Nisha | rloo, NobodyCam devanand1 ^^^^ | 16:09 |
yuriyz | NobodyCam, there is a link to datafile node's parameter, this link can be the same for all nodes or different | 16:09 |
*** ryanpetrello has quit IRC | 16:11 | |
*** lucas-hungry is now known as lucasagomes | 16:11 | |
NobodyCam | :) | 16:13 |
lucasagomes | NobodyCam, rloo Nisha morning :) | 16:14 |
NobodyCam | morning lucasagomes :) | 16:14 |
Nisha | lucasagomes, morning | 16:14 |
rloo | hi lucasagomes | 16:14 |
openstackgerrit | Jim Rollenhagen proposed openstack/ironic-specs: Add pluggable network provider spec https://review.openstack.org/143480 | 16:19 |
NobodyCam | jroll: your suspost to be on holiday | 16:20 |
*** datajerk has joined #openstack-ironic | 16:21 | |
jroll | NobodyCam: you weren't supposed to see that >.> | 16:24 |
* jroll says good morning to everyone and disappears again | 16:24 | |
NobodyCam | :) | 16:25 |
NobodyCam | have a good HOLIDAY *cough* jroll :) | 16:26 |
jroll | :) you too | 16:27 |
lucasagomes | jroll, heh morning, enjoy ur holidays! | 16:32 |
*** pcrews has joined #openstack-ironic | 16:34 | |
*** dlaube has joined #openstack-ironic | 16:37 | |
*** ryanpetrello has joined #openstack-ironic | 16:41 | |
NobodyCam | anyone know the best way a script could get out gate status? I'm looking at http://no-carrier.net/~adam/openstack/ironic_gate_status.html | 16:42 |
openstackgerrit | Roman Prykhodchenko proposed openstack/ironic: Refactoring for Ironic policy https://review.openstack.org/126265 | 16:43 |
*** ryanpetrello has quit IRC | 16:50 | |
*** achanda has quit IRC | 16:50 | |
*** openstack has joined #openstack-ironic | 17:01 | |
*** Masahiro has joined #openstack-ironic | 17:05 | |
*** Masahiro has quit IRC | 17:10 | |
*** achanda has joined #openstack-ironic | 17:10 | |
*** k4n0 has quit IRC | 17:13 | |
*** EmilienM|afk is now known as EmilienM | 17:19 | |
*** romcheg has quit IRC | 17:34 | |
*** EmilienM is now known as EmilienM|afk | 17:42 | |
*** pcaruana has quit IRC | 17:53 | |
*** derekh has quit IRC | 17:56 | |
openstackgerrit | Lucas Alvares Gomes proposed openstack/ironic: PXE: Add configdrive support https://review.openstack.org/143510 | 17:57 |
*** anderbubble has joined #openstack-ironic | 17:59 | |
*** ryanpetrello has joined #openstack-ironic | 18:01 | |
*** anderbubble has quit IRC | 18:02 | |
*** ChuckC has quit IRC | 18:03 | |
NobodyCam | lucasagomes: question. in what way we're you thinking of PixieBoots checking gate status. read it from the white board or some other way? | 18:05 |
jroll | lucasagomes: nice one, left a comment on that | 18:07 |
lucasagomes | jroll, http://paste.openstack.org/show/153944/ | 18:07 |
lucasagomes | cloud-init picked it directly and all:) | 18:07 |
lucasagomes | so seems it's working | 18:07 |
*** bradjones has quit IRC | 18:07 | |
lucasagomes | I'm using the iso u gave me to test | 18:07 |
lucasagomes | NobodyCam, I was thinking about getting from launchpad | 18:08 |
jroll | sick | 18:08 |
lucasagomes | NobodyCam, oh gate status hmmm | 18:08 |
lucasagomes | NobodyCam, yeah for gate probably on launchpad, unless we start watching the patches in gerrit | 18:09 |
lucasagomes | idk any other way off the top of my head | 18:09 |
NobodyCam | we have http://no-carrier.net/~adam/openstack/ironic_gate_status.html | 18:09 |
jroll | yeah, I would see how adam_g gets that info and do something similar | 18:09 |
lucasagomes | jroll, oh the always making the config part seems like a good idea | 18:10 |
jroll | if >50% are failing, mark it failed | 18:10 |
lucasagomes | jroll, I haven't thought about the rebuild it, I'm aware that it may introduce some problems | 18:10 |
jroll | lucasagomes: yeah, just something to keep in mind | 18:11 |
lucasagomes | NobodyCam, jroll yeah the >50% failing sounds good | 18:11 |
jroll | it still won't work if ironic is upgraded after the first build | 18:11 |
jroll | idk if you can even pass --config-drive to nova for a rebuild | 18:11 |
jroll | would be interesting to try | 18:11 |
lucasagomes | yeah I will investigate that | 18:12 |
*** bradjones has joined #openstack-ironic | 18:12 | |
lucasagomes | I'm still playing with all that stuff, not familiar with confidrives at all | 18:12 |
lucasagomes | I mean, "not all" = I'm a little familiar now :) | 18:12 |
jroll | ha, right | 18:13 |
*** athomas has quit IRC | 18:21 | |
lucasagomes | this is pretty cool http://benkurtovic.com/2014/06/01/obfuscating-hello-world.html | 18:21 |
lucasagomes | never thought someone could make some unreadable code in python | 18:21 |
NobodyCam | thats kewl | 18:24 |
*** ryanpetrello has quit IRC | 18:24 | |
NobodyCam | i wouldn't want to debug it | 18:24 |
*** ChuckC has joined #openstack-ironic | 18:35 | |
*** romcheg1 has joined #openstack-ironic | 18:40 | |
*** romcheg has joined #openstack-ironic | 18:44 | |
*** romcheg1 has quit IRC | 18:46 | |
Nisha | lucasagomes, could you look at https://review.openstack.org/#/c/100951 | 18:48 |
*** harlowja has joined #openstack-ironic | 18:50 | |
*** achanda has quit IRC | 18:51 | |
*** achanda has joined #openstack-ironic | 18:51 | |
Nisha | rloo, i would correct the typo if i do another revision, i hope thats fine | 18:51 |
rloo | Nisha: yes, that's fine. thx. | 18:52 |
Nisha | rloo, but i have still corrected and posted back | 18:53 |
openstackgerrit | Nisha Agarwal proposed openstack/ironic-specs: Discover node properties using new target inspect with node-set-provision-state https://review.openstack.org/100951 | 18:54 |
*** Masahiro has joined #openstack-ironic | 18:54 | |
Nisha | NobodyCam, rloo lucasagomes ^^^^^^ | 18:54 |
*** achanda has quit IRC | 18:54 | |
*** achanda_ has joined #openstack-ironic | 18:54 | |
Nisha | jroll ^^^^^ | 18:56 |
*** Haomeng has quit IRC | 18:56 | |
*** Masahiro has quit IRC | 18:58 | |
*** Haomeng has joined #openstack-ironic | 18:59 | |
*** Nisha has quit IRC | 19:11 | |
adam_g | NobodyCam, that script is kinda dumb. it runs on crontab and just queries jenkins[1-7].openstack.org via its bad API for recent builds of a specific job and saves ecah builds status and build params to a db | 19:25 |
adam_g | NobodyCam, if it'd help i can have it also dump data in a machine readable format | 19:26 |
adam_g | NobodyCam, if you're trying to make an IRC bot post status to here, you can probably just have it listen to the gerrit stream via SSH. openstack-qa runs a similar bot that chimes in with gate failures | 19:29 |
*** dprince has quit IRC | 19:29 | |
*** eghobo has joined #openstack-ironic | 19:29 | |
*** eghobo has quit IRC | 19:30 | |
NobodyCam | adam_g: ok I'll take a look at what the qa bot is doing :) | 19:32 |
NobodyCam | Thank you :) | 19:32 |
adam_g | the newer version of gerrit we started using added a REST API that i haven't looked at yet, that may be of interest too | 19:35 |
*** eghobo has joined #openstack-ironic | 19:37 | |
lucasagomes | jroll, re rebuild with config-drive http://paste.openstack.org/show/153963/ | 19:39 |
lucasagomes | need more investigation but apparently it's not supported to pass --config-drive as part of the rebuild command | 19:39 |
*** mjturek has quit IRC | 19:48 | |
lucasagomes | I will call it a day, have a great night everyone | 19:50 |
*** lucasagomes is now known as lucas-dinner | 19:52 | |
*** eghobo has quit IRC | 19:55 | |
*** ramineni has quit IRC | 19:58 | |
*** mjturek has joined #openstack-ironic | 19:58 | |
*** eghobo has joined #openstack-ironic | 20:01 | |
*** ijw has joined #openstack-ironic | 20:01 | |
*** ijw_ has joined #openstack-ironic | 20:02 | |
*** eghobo has quit IRC | 20:03 | |
*** ndipanov has joined #openstack-ironic | 20:04 | |
*** ijw has quit IRC | 20:06 | |
*** eghobo has joined #openstack-ironic | 20:09 | |
*** igordcard has joined #openstack-ironic | 20:21 | |
*** ijw_ is now known as ijw | 20:23 | |
*** igordcard has quit IRC | 20:27 | |
*** lucas-dinner has quit IRC | 20:27 | |
*** EmilienM|afk is now known as EmilienM | 20:34 | |
*** Masahiro has joined #openstack-ironic | 20:42 | |
*** Guest32161 is now known as annegentle | 20:44 | |
*** ryanpetrello has joined #openstack-ironic | 20:44 | |
*** Masahiro has quit IRC | 20:47 | |
*** enikanorov_ has joined #openstack-ironic | 20:49 | |
*** enikanorov has quit IRC | 20:51 | |
*** harlowja_ has joined #openstack-ironic | 20:58 | |
*** mrda-away is now known as mrda | 20:59 | |
mrda | Morning Ironic! | 20:59 |
*** harlowja has quit IRC | 21:00 | |
*** achanda_ has quit IRC | 21:04 | |
*** achanda has joined #openstack-ironic | 21:05 | |
*** aswadr has quit IRC | 21:06 | |
*** ryanpetrello has quit IRC | 21:08 | |
*** andreykurilin_ has joined #openstack-ironic | 21:09 | |
*** achanda has quit IRC | 21:09 | |
*** ijw_ has joined #openstack-ironic | 21:12 | |
*** ijw has quit IRC | 21:15 | |
openstackgerrit | Josh Gachnang proposed openstack/ironic-specs: Implement Cleaning States https://review.openstack.org/102685 | 21:21 |
openstackgerrit | Josh Gachnang proposed openstack/ironic-specs: Implement Zapping States https://review.openstack.org/140826 | 21:21 |
*** Marga_ has joined #openstack-ironic | 21:25 | |
*** Marga_ has quit IRC | 21:25 | |
*** ijw_ has quit IRC | 21:25 | |
*** Marga_ has joined #openstack-ironic | 21:26 | |
*** ijw has joined #openstack-ironic | 21:28 | |
rloo | how long do things pasted in paste.openstack.org stick around? | 21:37 |
mrda | rloo: i don't know, but am interested too | 21:37 |
rloo | mrda: I'll let you know if I find out :-) | 21:37 |
rloo | oh, morning mrda! | 21:38 |
* mrda is poking some infra peeps | 21:38 | |
mrda | And good morning rloo to you too! | 21:38 |
*** ijw has quit IRC | 21:38 | |
*** ndipanov has quit IRC | 21:41 | |
*** ChuckC has quit IRC | 21:48 | |
*** ijw has joined #openstack-ironic | 21:50 | |
*** andreykurilin_ has quit IRC | 21:53 | |
mrda | rloo: no-one knows, but the guess is "forever" | 21:58 |
rloo | mrda: ha ha. I shouldn't laugh. Personally, I'd err on the side of not forever. Thx for asking! | 21:58 |
*** ijw has quit IRC | 22:08 | |
*** ijw has joined #openstack-ironic | 22:10 | |
rloo | FYI, I think gate is broken due to https://bugs.launchpad.net/os-apply-config/+bug/143504 & 143501. I've updated our whiteboard. | 22:14 |
*** harlowja_ has quit IRC | 22:21 | |
*** Marga_ has quit IRC | 22:28 | |
*** ryanpetrello has joined #openstack-ironic | 22:30 | |
*** Masahiro has joined #openstack-ironic | 22:31 | |
*** Masahiro has quit IRC | 22:36 | |
openstackgerrit | Josh Gachnang proposed openstack/ironic-specs: Implement Cleaning States https://review.openstack.org/102685 | 22:37 |
*** ryanpetrello has quit IRC | 22:37 | |
openstackgerrit | Josh Gachnang proposed openstack/ironic-specs: Implement Zapping States https://review.openstack.org/140826 | 22:38 |
*** EmilienM is now known as EmilienM|afk | 22:38 | |
dlaube | hey guys, do you happen to have any info on how to go about running isc-dhcp-server with neutron as opposed to dnsmasq? | 22:42 |
dlaube | I would think there must be some dhcp_driver floating around for that or something | 22:43 |
jroll | dlaube: I don't know of a dhcp provider for it, we run it with static configs | 22:45 |
dlaube | jroll: interesting… so, all boxes get the same DHCP IP for life? | 22:48 |
dlaube | we'll, we were only considering switching from dnsmasq to something else because we are having issues with metadata service returning data, despite having the baremetal box deployed, installed and rebooted into the OS which then obtains a DHCP IP | 22:49 |
dlaube | when we curl the magic IP 169.254.269.254 it either wants the X-Instance-ID and some auth token stuff OR the request has to originate from an IP that neutron/nova knows about | 22:50 |
*** ijw has quit IRC | 22:50 | |
*** ijw has joined #openstack-ironic | 22:51 | |
jroll | dlaube: for provisioning / deploy ramdisks, yes, it gets the same IP | 22:55 |
jroll | ah, I see | 22:55 |
jroll | I don't pretend to know how to make the metadata service work | 22:56 |
jroll | but neutron and nova should know about the DHCP IP given to the instance | 22:56 |
dlaube | I appreciate the honesty jroll. I know you guys dont even use the metadata service | 22:58 |
jroll | yeah, exactly :P | 22:59 |
dlaube | any idea who might know? I'm also over in #openstack right now | 22:59 |
jroll | mmm, no idea, other ironic deployers? :) | 23:00 |
ianco | hmm. metadata service will only ever know about fixed addresses returned by neutron port-list | 23:00 |
dlaube | finding other ironic deployers that are using real servers with real switches feels like trying to find a grain of salt in a desert sometimes | 23:01 |
jroll | heh | 23:01 |
*** mjturek has quit IRC | 23:03 | |
*** ryanpetrello has joined #openstack-ironic | 23:05 | |
*** ryanpetrello has quit IRC | 23:09 | |
*** eghobo has quit IRC | 23:11 | |
*** eghobo has joined #openstack-ironic | 23:17 | |
*** eghobo has quit IRC | 23:21 | |
*** ijw has quit IRC | 23:24 | |
*** ijw has joined #openstack-ironic | 23:24 | |
*** ijw has quit IRC | 23:34 | |
*** ijw has joined #openstack-ironic | 23:35 | |
adam_g | dlaube, 'the request has to originate from an IP that neutron/nova knows about' it should be originating from the guest, via its fixed ip | 23:38 |
adam_g | if you're requesting it elsewhere, you need the headers | 23:39 |
dlaube | adam_g: got it | 23:52 |
dlaube | i'm actually looking at https://community.hpcloud.com/article/creating-instance-specific-fixed-ip right now | 23:52 |
dlaube | so if we specify fixed-ip, any idea if that means a leases file/config is written out just for that IP/MAC? | 23:53 |
adam_g | dlaube, neutron manages dnsmasq processes per network/namespace, and manages its leases based on ports | 23:54 |
*** ijw_ has joined #openstack-ironic | 23:58 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!