v1.5.0-gamma

This commit is contained in:
2023-06-30 11:21:47 +03:00
parent 29c7f143fe
commit f50f71ab0d
98 changed files with 2369 additions and 1150 deletions

View File

@@ -5,12 +5,34 @@ type ItemK8CI struct {
// Created time
CreatedTime uint64 `json:"createdTime"`
// Main information about K8CI
RecordK8CI
// Description
Description string `json:"desc"`
// ID
ID uint64 `json:"id"`
// LB image ID
LBImageID uint64 `json:"lbImageId"`
// Name
Name string `json:"name"`
// Network plugins
NetworkPlugins []string `json:"networkPlugins"`
// Status
Status string `json:"status"`
// Version
Version string `json:"version"`
}
// List of K8CI
type ListK8CI []ItemK8CI
type ListK8CI struct {
Data []ItemK8CI `json:"data"`
EntryCount uint64 `json:"entryCount"`
}
// Main information about K8CI
type RecordK8CI struct {