From 72bf5c0ed73cbe303c7d0966d6b0800d2faf5849 Mon Sep 17 00:00:00 2001 From: Sandhya Dasu Date: Thu, 26 Sep 2019 10:15:26 -0400 Subject: [PATCH] WIP: Add Metal3 specific config items to Baremetal Infrastructure status --- config/v1/types_infrastructure.go | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/config/v1/types_infrastructure.go b/config/v1/types_infrastructure.go index 4632e6ada06..a955b2d5a63 100644 --- a/config/v1/types_infrastructure.go +++ b/config/v1/types_infrastructure.go @@ -172,6 +172,17 @@ type BareMetalPlatformStatus struct { // datacenter DNS, a DNS service is hosted as a static pod to serve those hostnames // to the nodes in the cluster. NodeDNSIP string `json:"nodeDNSIP,omitempty"` + + HttpPort string `json:"httpPort"` + ProvisioningInterface string `json:"provisioningInterface"` + ProvisioningIp string `json:"provisioningIp"` + DhcpRange string `json:"dhcpRange"` + DeployKernelUrl string `json:"deployKernelUrl"` + DeployRamdiskUrl string `json:"deployRamdiskUrl"` + IronicEndpoint string `json:"ironicEndpoint"` + IronicInspectorEndpoint string `json:"ironicInspectorEndpoint"` + CacheUrl string `json:"cacheUrl"` + RhcosImageUrl string `json:"rhcosImageUrl"` } // OpenStackPlatformStatus holds the current status of the OpenStack infrastructure provider.