- Updated NodeDiscover to accept an optional subnet parameter, with auto-detection of local networks if none is provided. - Removed support for IP list format in NodeDiscover request body. - Implemented discovery cancellation functionality with NodeDiscoveryCancel endpoint. - Improved error handling and response messages for better clarity. feat(cluster): Add operation tracking for cluster bootstrap process - Integrated operations manager into cluster manager for tracking bootstrap progress. - Refactored Bootstrap method to run asynchronously with detailed progress updates. - Added methods to wait for various bootstrap steps (etcd health, VIP assignment, control plane readiness, etc.). fix(discovery): Optimize node discovery process and improve maintenance mode detection - Enhanced node discovery to run in parallel with a semaphore to limit concurrent scans. - Updated probeNode to detect maintenance mode more reliably. - Added functions to expand CIDR notation into individual IP addresses and retrieve local network interfaces. refactor(node): Update node manager to handle instance-specific configurations - Modified NewManager to accept instanceName for tailored talosconfig usage. - Improved hardware detection logic to handle maintenance mode scenarios. feat(operations): Implement detailed bootstrap progress tracking - Introduced BootstrapProgress struct to track and report the status of bootstrap operations. - Updated operation management to include bootstrap-specific details. fix(tools): Improve talosctl command execution with context and error handling - Added context with timeout to talosctl commands to prevent hanging on unreachable nodes. - Enhanced error handling for version retrieval in maintenance mode.
374 lines
11 KiB
Go
374 lines
11 KiB
Go
package v1
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/gorilla/mux"
|
|
|
|
"github.com/wild-cloud/wild-central/daemon/internal/discovery"
|
|
"github.com/wild-cloud/wild-central/daemon/internal/node"
|
|
)
|
|
|
|
// NodeDiscover initiates node discovery
|
|
// Accepts optional subnet parameter. If no subnet provided, auto-detects local networks.
|
|
func (api *API) NodeDiscover(w http.ResponseWriter, r *http.Request) {
|
|
vars := mux.Vars(r)
|
|
instanceName := vars["name"]
|
|
|
|
// Validate instance exists
|
|
if err := api.instance.ValidateInstance(instanceName); err != nil {
|
|
respondError(w, http.StatusNotFound, fmt.Sprintf("Instance not found: %v", err))
|
|
return
|
|
}
|
|
|
|
// Parse request body - only subnet is supported
|
|
var req struct {
|
|
Subnet string `json:"subnet,omitempty"`
|
|
}
|
|
|
|
if err := json.NewDecoder(r.Body).Decode(&req); err != nil {
|
|
respondError(w, http.StatusBadRequest, "Invalid request body")
|
|
return
|
|
}
|
|
|
|
// Build IP list
|
|
var ipList []string
|
|
var err error
|
|
|
|
if req.Subnet != "" {
|
|
// Expand provided CIDR notation to individual IPs
|
|
ipList, err = discovery.ExpandSubnet(req.Subnet)
|
|
if err != nil {
|
|
respondError(w, http.StatusBadRequest, fmt.Sprintf("Invalid subnet: %v", err))
|
|
return
|
|
}
|
|
} else {
|
|
// Auto-detect: Get local networks when no subnet provided
|
|
networks, err := discovery.GetLocalNetworks()
|
|
if err != nil {
|
|
respondError(w, http.StatusInternalServerError, fmt.Sprintf("Failed to detect local networks: %v", err))
|
|
return
|
|
}
|
|
|
|
if len(networks) == 0 {
|
|
respondError(w, http.StatusNotFound, "No local networks found")
|
|
return
|
|
}
|
|
|
|
// Expand all detected networks
|
|
for _, network := range networks {
|
|
ips, err := discovery.ExpandSubnet(network)
|
|
if err != nil {
|
|
continue // Skip invalid networks
|
|
}
|
|
ipList = append(ipList, ips...)
|
|
}
|
|
}
|
|
|
|
// Start discovery
|
|
discoveryMgr := discovery.NewManager(api.dataDir, instanceName)
|
|
if err := discoveryMgr.StartDiscovery(instanceName, ipList); err != nil {
|
|
respondError(w, http.StatusInternalServerError, fmt.Sprintf("Failed to start discovery: %v", err))
|
|
return
|
|
}
|
|
|
|
respondJSON(w, http.StatusAccepted, map[string]interface{}{
|
|
"message": "Discovery started",
|
|
"status": "running",
|
|
"ips_to_scan": len(ipList),
|
|
})
|
|
}
|
|
|
|
// NodeDiscoveryStatus returns discovery status
|
|
func (api *API) NodeDiscoveryStatus(w http.ResponseWriter, r *http.Request) {
|
|
vars := mux.Vars(r)
|
|
instanceName := vars["name"]
|
|
|
|
// Validate instance exists
|
|
if err := api.instance.ValidateInstance(instanceName); err != nil {
|
|
respondError(w, http.StatusNotFound, fmt.Sprintf("Instance not found: %v", err))
|
|
return
|
|
}
|
|
|
|
discoveryMgr := discovery.NewManager(api.dataDir, instanceName)
|
|
status, err := discoveryMgr.GetDiscoveryStatus(instanceName)
|
|
if err != nil {
|
|
respondError(w, http.StatusInternalServerError, fmt.Sprintf("Failed to get status: %v", err))
|
|
return
|
|
}
|
|
|
|
respondJSON(w, http.StatusOK, status)
|
|
}
|
|
|
|
// NodeHardware returns hardware info for a specific node
|
|
func (api *API) NodeHardware(w http.ResponseWriter, r *http.Request) {
|
|
vars := mux.Vars(r)
|
|
instanceName := vars["name"]
|
|
nodeIP := vars["ip"]
|
|
|
|
// Validate instance exists
|
|
if err := api.instance.ValidateInstance(instanceName); err != nil {
|
|
respondError(w, http.StatusNotFound, fmt.Sprintf("Instance not found: %v", err))
|
|
return
|
|
}
|
|
|
|
// Detect hardware
|
|
nodeMgr := node.NewManager(api.dataDir, instanceName)
|
|
hwInfo, err := nodeMgr.DetectHardware(nodeIP)
|
|
if err != nil {
|
|
respondError(w, http.StatusInternalServerError, fmt.Sprintf("Failed to detect hardware: %v", err))
|
|
return
|
|
}
|
|
|
|
respondJSON(w, http.StatusOK, hwInfo)
|
|
}
|
|
|
|
// NodeDetect detects hardware on a single node (POST with IP in body)
|
|
// IP address is required.
|
|
func (api *API) NodeDetect(w http.ResponseWriter, r *http.Request) {
|
|
vars := mux.Vars(r)
|
|
instanceName := vars["name"]
|
|
|
|
// Validate instance exists
|
|
if err := api.instance.ValidateInstance(instanceName); err != nil {
|
|
respondError(w, http.StatusNotFound, fmt.Sprintf("Instance not found: %v", err))
|
|
return
|
|
}
|
|
|
|
// Parse request body
|
|
var req struct {
|
|
IP string `json:"ip"`
|
|
}
|
|
|
|
if err := json.NewDecoder(r.Body).Decode(&req); err != nil {
|
|
respondError(w, http.StatusBadRequest, "Invalid request body")
|
|
return
|
|
}
|
|
|
|
// Validate IP is provided
|
|
if req.IP == "" {
|
|
respondError(w, http.StatusBadRequest, "IP address is required")
|
|
return
|
|
}
|
|
|
|
// Detect hardware for specific IP
|
|
nodeMgr := node.NewManager(api.dataDir, instanceName)
|
|
hwInfo, err := nodeMgr.DetectHardware(req.IP)
|
|
if err != nil {
|
|
respondError(w, http.StatusInternalServerError, fmt.Sprintf("Failed to detect hardware: %v", err))
|
|
return
|
|
}
|
|
|
|
respondJSON(w, http.StatusOK, hwInfo)
|
|
}
|
|
|
|
// NodeAdd registers a new node
|
|
func (api *API) NodeAdd(w http.ResponseWriter, r *http.Request) {
|
|
vars := mux.Vars(r)
|
|
instanceName := vars["name"]
|
|
|
|
// Validate instance exists
|
|
if err := api.instance.ValidateInstance(instanceName); err != nil {
|
|
respondError(w, http.StatusNotFound, fmt.Sprintf("Instance not found: %v", err))
|
|
return
|
|
}
|
|
|
|
// Parse node data
|
|
var nodeData node.Node
|
|
if err := json.NewDecoder(r.Body).Decode(&nodeData); err != nil {
|
|
respondError(w, http.StatusBadRequest, "Invalid request body")
|
|
return
|
|
}
|
|
|
|
// Add node
|
|
nodeMgr := node.NewManager(api.dataDir, instanceName)
|
|
if err := nodeMgr.Add(instanceName, &nodeData); err != nil {
|
|
respondError(w, http.StatusInternalServerError, fmt.Sprintf("Failed to add node: %v", err))
|
|
return
|
|
}
|
|
|
|
respondJSON(w, http.StatusCreated, map[string]interface{}{
|
|
"message": "Node added successfully",
|
|
"node": nodeData,
|
|
})
|
|
}
|
|
|
|
// NodeList returns all nodes for an instance
|
|
func (api *API) NodeList(w http.ResponseWriter, r *http.Request) {
|
|
vars := mux.Vars(r)
|
|
instanceName := vars["name"]
|
|
|
|
// Validate instance exists
|
|
if err := api.instance.ValidateInstance(instanceName); err != nil {
|
|
respondError(w, http.StatusNotFound, fmt.Sprintf("Instance not found: %v", err))
|
|
return
|
|
}
|
|
|
|
// List nodes
|
|
nodeMgr := node.NewManager(api.dataDir, instanceName)
|
|
nodes, err := nodeMgr.List(instanceName)
|
|
if err != nil {
|
|
respondError(w, http.StatusInternalServerError, fmt.Sprintf("Failed to list nodes: %v", err))
|
|
return
|
|
}
|
|
|
|
respondJSON(w, http.StatusOK, map[string]interface{}{
|
|
"nodes": nodes,
|
|
})
|
|
}
|
|
|
|
// NodeGet returns a specific node
|
|
func (api *API) NodeGet(w http.ResponseWriter, r *http.Request) {
|
|
vars := mux.Vars(r)
|
|
instanceName := vars["name"]
|
|
nodeIdentifier := vars["node"]
|
|
|
|
// Validate instance exists
|
|
if err := api.instance.ValidateInstance(instanceName); err != nil {
|
|
respondError(w, http.StatusNotFound, fmt.Sprintf("Instance not found: %v", err))
|
|
return
|
|
}
|
|
|
|
// Get node
|
|
nodeMgr := node.NewManager(api.dataDir, instanceName)
|
|
nodeData, err := nodeMgr.Get(instanceName, nodeIdentifier)
|
|
if err != nil {
|
|
respondError(w, http.StatusNotFound, fmt.Sprintf("Node not found: %v", err))
|
|
return
|
|
}
|
|
|
|
respondJSON(w, http.StatusOK, nodeData)
|
|
}
|
|
|
|
// NodeApply generates configuration and applies it to node
|
|
func (api *API) NodeApply(w http.ResponseWriter, r *http.Request) {
|
|
vars := mux.Vars(r)
|
|
instanceName := vars["name"]
|
|
nodeIdentifier := vars["node"]
|
|
|
|
// Validate instance exists
|
|
if err := api.instance.ValidateInstance(instanceName); err != nil {
|
|
respondError(w, http.StatusNotFound, fmt.Sprintf("Instance not found: %v", err))
|
|
return
|
|
}
|
|
|
|
// Apply always uses default options (no body needed)
|
|
opts := node.ApplyOptions{}
|
|
|
|
// Apply node configuration
|
|
nodeMgr := node.NewManager(api.dataDir, instanceName)
|
|
if err := nodeMgr.Apply(instanceName, nodeIdentifier, opts); err != nil {
|
|
respondError(w, http.StatusInternalServerError, fmt.Sprintf("Failed to apply node configuration: %v", err))
|
|
return
|
|
}
|
|
|
|
respondJSON(w, http.StatusOK, map[string]string{
|
|
"message": "Node configuration applied successfully",
|
|
"node": nodeIdentifier,
|
|
})
|
|
}
|
|
|
|
// NodeUpdate modifies existing node configuration
|
|
func (api *API) NodeUpdate(w http.ResponseWriter, r *http.Request) {
|
|
vars := mux.Vars(r)
|
|
instanceName := vars["name"]
|
|
nodeIdentifier := vars["node"]
|
|
|
|
// Validate instance exists
|
|
if err := api.instance.ValidateInstance(instanceName); err != nil {
|
|
respondError(w, http.StatusNotFound, fmt.Sprintf("Instance not found: %v", err))
|
|
return
|
|
}
|
|
|
|
// Parse update data
|
|
var updates map[string]interface{}
|
|
if err := json.NewDecoder(r.Body).Decode(&updates); err != nil {
|
|
respondError(w, http.StatusBadRequest, "Invalid request body")
|
|
return
|
|
}
|
|
|
|
// Update node
|
|
nodeMgr := node.NewManager(api.dataDir, instanceName)
|
|
if err := nodeMgr.Update(instanceName, nodeIdentifier, updates); err != nil {
|
|
respondError(w, http.StatusInternalServerError, fmt.Sprintf("Failed to update node: %v", err))
|
|
return
|
|
}
|
|
|
|
respondJSON(w, http.StatusOK, map[string]string{
|
|
"message": "Node updated successfully",
|
|
"node": nodeIdentifier,
|
|
})
|
|
}
|
|
|
|
// NodeFetchTemplates copies patch templates from directory to instance
|
|
func (api *API) NodeFetchTemplates(w http.ResponseWriter, r *http.Request) {
|
|
vars := mux.Vars(r)
|
|
instanceName := vars["name"]
|
|
|
|
// Validate instance exists
|
|
if err := api.instance.ValidateInstance(instanceName); err != nil {
|
|
respondError(w, http.StatusNotFound, fmt.Sprintf("Instance not found: %v", err))
|
|
return
|
|
}
|
|
|
|
// Fetch templates
|
|
nodeMgr := node.NewManager(api.dataDir, instanceName)
|
|
if err := nodeMgr.FetchTemplates(instanceName); err != nil {
|
|
respondError(w, http.StatusInternalServerError, fmt.Sprintf("Failed to fetch templates: %v", err))
|
|
return
|
|
}
|
|
|
|
respondJSON(w, http.StatusOK, map[string]string{
|
|
"message": "Templates fetched successfully",
|
|
})
|
|
}
|
|
|
|
// NodeDelete removes a node
|
|
func (api *API) NodeDelete(w http.ResponseWriter, r *http.Request) {
|
|
vars := mux.Vars(r)
|
|
instanceName := vars["name"]
|
|
nodeIdentifier := vars["node"]
|
|
|
|
// Validate instance exists
|
|
if err := api.instance.ValidateInstance(instanceName); err != nil {
|
|
respondError(w, http.StatusNotFound, fmt.Sprintf("Instance not found: %v", err))
|
|
return
|
|
}
|
|
|
|
// Delete node
|
|
nodeMgr := node.NewManager(api.dataDir, instanceName)
|
|
if err := nodeMgr.Delete(instanceName, nodeIdentifier); err != nil {
|
|
respondError(w, http.StatusInternalServerError, fmt.Sprintf("Failed to delete node: %v", err))
|
|
return
|
|
}
|
|
|
|
respondJSON(w, http.StatusOK, map[string]string{
|
|
"message": "Node deleted successfully",
|
|
})
|
|
}
|
|
|
|
// NodeDiscoveryCancel cancels an in-progress discovery operation
|
|
func (api *API) NodeDiscoveryCancel(w http.ResponseWriter, r *http.Request) {
|
|
vars := mux.Vars(r)
|
|
instanceName := vars["name"]
|
|
|
|
// Validate instance exists
|
|
if err := api.instance.ValidateInstance(instanceName); err != nil {
|
|
respondError(w, http.StatusNotFound, fmt.Sprintf("Instance not found: %v", err))
|
|
return
|
|
}
|
|
|
|
// Cancel discovery
|
|
discoveryMgr := discovery.NewManager(api.dataDir, instanceName)
|
|
if err := discoveryMgr.CancelDiscovery(instanceName); err != nil {
|
|
respondError(w, http.StatusBadRequest, fmt.Sprintf("Failed to cancel discovery: %v", err))
|
|
return
|
|
}
|
|
|
|
respondJSON(w, http.StatusOK, map[string]string{
|
|
"message": "Discovery cancelled successfully",
|
|
})
|
|
}
|