1 export interface nodeDetailss {
8 export interface nodeDetails {
12 export interface nodinfo {
22 containerRuntime: string;
25 export interface podNamespace {
26 podNamespaces: string[];
29 export interface podDetails {
33 export interface podinfo {
46 export interface uninstallinfo {
51 runningStatus: string;
54 export interface currentDeployDetails {
55 currentDeployArray: currentDeployInfo[];
58 export interface currentDeployInfo {
63 runningStatus: string;
67 export interface nodesDropDownDetails {
68 nodesArray: nodesDropDown[];
71 export interface nodesDropDown {
76 export interface serviceDetails {
77 eliotServices: serviceinfo[];
80 export interface serviceinfo {
90 export interface deploymentData {
94 export interface historyDetails {
95 eliotHistory: historyInformation[];
98 export interface historyinfo {
103 export interface historyInformation {
112 export interface historyPostInfo {
113 fileDownload: fileDownload[];
116 export interface fileDownload {
121 export interface nodeDeploy {
122 deployNodeName: string;
123 deployNodeLabel: string;
127 export interface dashboardInfo {
128 appDeployStatus: appDeployStatus;
129 stabilityStatus: stabilityStatus;
130 historyStatus: historyStatus;
133 export interface appDeployStatus {
134 deploySuccess: number;
135 deployFailed: number;
136 deployPending: number;
139 export interface stabilityStatus {
141 nodesUnstable: number;
143 podsUnstable: number;
144 servicesRunning: number;
147 export interface historyStatus {