fix(datasource/CloudSigma): Populate public IPv4 address properly
This commit is contained in:
parent
5c5834863b
commit
c5fada6e69
@ -73,12 +73,13 @@ func (scs *serverContextService) FetchMetadata() ([]byte, error) {
|
|||||||
UUID string `json:"uuid"`
|
UUID string `json:"uuid"`
|
||||||
Meta map[string]string `json:"meta"`
|
Meta map[string]string `json:"meta"`
|
||||||
Nics []struct {
|
Nics []struct {
|
||||||
Runtime struct {
|
Mac string `json:"mac"`
|
||||||
|
IPv4Conf struct {
|
||||||
InterfaceType string `json:"interface_type"`
|
InterfaceType string `json:"interface_type"`
|
||||||
IPv4 struct {
|
IP struct {
|
||||||
IP string `json:"uuid"`
|
UUID string `json:"uuid"`
|
||||||
} `json:"ip_v4"`
|
} `json:"ip"`
|
||||||
} `json:"runtime"`
|
} `json:"ip_v4_conf"`
|
||||||
} `json:"nics"`
|
} `json:"nics"`
|
||||||
}
|
}
|
||||||
outputMetadata struct {
|
outputMetadata struct {
|
||||||
@ -112,12 +113,9 @@ func (scs *serverContextService) FetchMetadata() ([]byte, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
for _, nic := range inputMetadata.Nics {
|
for _, nic := range inputMetadata.Nics {
|
||||||
if nic.Runtime.IPv4.IP != "" {
|
if nic.IPv4Conf.IP.UUID != "" {
|
||||||
if nic.Runtime.InterfaceType == "public" {
|
outputMetadata.PublicIPv4 = nic.IPv4Conf.IP.UUID
|
||||||
outputMetadata.PublicIPv4 = nic.Runtime.IPv4.IP
|
break
|
||||||
} else {
|
|
||||||
outputMetadata.LocalIPv4 = nic.Runtime.IPv4.IP
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -74,14 +74,41 @@ func TestServerContextFetchMetadata(t *testing.T) {
|
|||||||
"name": "coreos",
|
"name": "coreos",
|
||||||
"nics": [
|
"nics": [
|
||||||
{
|
{
|
||||||
"runtime": {
|
"boot_order": null,
|
||||||
"interface_type": "public",
|
"ip_v4_conf": {
|
||||||
"ip_v4": {
|
"conf": "dhcp",
|
||||||
|
"ip": {
|
||||||
|
"gateway": "31.171.244.1",
|
||||||
|
"meta": {},
|
||||||
|
"nameservers": [
|
||||||
|
"178.22.66.167",
|
||||||
|
"178.22.71.56",
|
||||||
|
"8.8.8.8"
|
||||||
|
],
|
||||||
|
"netmask": 22,
|
||||||
|
"tags": [],
|
||||||
"uuid": "31.171.251.74"
|
"uuid": "31.171.251.74"
|
||||||
},
|
}
|
||||||
"ip_v6": null
|
|
||||||
},
|
},
|
||||||
|
"ip_v6_conf": null,
|
||||||
|
"mac": "22:3d:09:6b:90:f3",
|
||||||
|
"model": "virtio",
|
||||||
"vlan": null
|
"vlan": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"boot_order": null,
|
||||||
|
"ip_v4_conf": null,
|
||||||
|
"ip_v6_conf": null,
|
||||||
|
"mac": "22:ae:4a:fb:8f:31",
|
||||||
|
"model": "virtio",
|
||||||
|
"vlan": {
|
||||||
|
"meta": {
|
||||||
|
"description": "",
|
||||||
|
"name": "CoreOS"
|
||||||
|
},
|
||||||
|
"tags": [],
|
||||||
|
"uuid": "5dec030e-25b8-4621-a5a4-a3302c9d9619"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"smp": 2,
|
"smp": 2,
|
||||||
|
Loading…
Reference in New Issue
Block a user