Add WAL file for database and log instance deployment failures
Some checks failed
Build and Publish Docker Image / build-and-push (push) Has been cancelled
Some checks failed
Build and Publish Docker Image / build-and-push (push) Has been cancelled
This commit is contained in:
16
OTSSignsOrchestrator.Core/Models/DTOs/NodeInfo.cs
Normal file
16
OTSSignsOrchestrator.Core/Models/DTOs/NodeInfo.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
namespace OTSSignsOrchestrator.Core.Models.DTOs;
|
||||
|
||||
/// <summary>
|
||||
/// Represents a node in the Docker Swarm cluster,
|
||||
/// parsed from <c>docker node ls</c> output.
|
||||
/// </summary>
|
||||
public class NodeInfo
|
||||
{
|
||||
public string Id { get; set; } = string.Empty;
|
||||
public string Hostname { get; set; } = string.Empty;
|
||||
public string Status { get; set; } = string.Empty;
|
||||
public string Availability { get; set; } = string.Empty;
|
||||
public string ManagerStatus { get; set; } = string.Empty;
|
||||
public string EngineVersion { get; set; } = string.Empty;
|
||||
public string IpAddress { get; set; } = string.Empty;
|
||||
}
|
||||
Reference in New Issue
Block a user