Skip to content

Commit eaac0f5

Browse files
committed
Openstack: register metadata.hostname as node name
1 parent 0770ef0 commit eaac0f5

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

pkg/cloudprovider/providers/openstack/metadata.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ type DeviceMetadata struct {
6969
// See http://docs.openstack.org/user-guide/cli_config_drive.html
7070
type Metadata struct {
7171
Uuid string `json:"uuid"`
72-
Name string `json:"name"`
72+
Hostname string `json:"hostname"`
7373
AvailabilityZone string `json:"availability_zone"`
7474
Devices []DeviceMetadata `json:"devices,omitempty"`
7575
// .. and other fields we don't care about. Expand as necessary.

pkg/cloudprovider/providers/openstack/metadata_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323

2424
var FakeMetadata = Metadata{
2525
Uuid: "83679162-1378-4288-a2d4-70e13ec132aa",
26-
Name: "test",
26+
Hostname: "test",
2727
AvailabilityZone: "nova",
2828
}
2929

@@ -81,8 +81,8 @@ func TestParseMetadata(t *testing.T) {
8181
t.Fatalf("Should succeed when provided with valid data: %s", err)
8282
}
8383

84-
if md.Name != "test" {
85-
t.Errorf("incorrect name: %s", md.Name)
84+
if md.Hostname != "test.novalocal" {
85+
t.Errorf("incorrect hostname: %s", md.Hostname)
8686
}
8787

8888
if md.Uuid != "83679162-1378-4288-a2d4-70e13ec132aa" {

pkg/cloudprovider/providers/openstack/openstack_instances.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ func (i *Instances) CurrentNodeName(hostname string) (types.NodeName, error) {
5858
if err != nil {
5959
return "", err
6060
}
61-
return types.NodeName(md.Name), nil
61+
return types.NodeName(md.Hostname), nil
6262
}
6363

6464
func (i *Instances) AddSSHKeyToAllInstances(user string, keyData []byte) error {

0 commit comments

Comments
 (0)