most of the working app

This commit is contained in:
allanice001
2025-09-16 22:26:53 +01:00
parent d83efa4068
commit 2f432239b8
16 changed files with 4698 additions and 49 deletions

View File

@@ -54,7 +54,7 @@ type taintBrief struct {
type annotationBrief struct {
ID uuid.UUID `json:"id"`
Name string `json:"name"`
Key string `json:"key"`
Value string `json:"value"`
}

View File

@@ -851,7 +851,7 @@ func ListNodePoolAnnotations(w http.ResponseWriter, r *http.Request) {
for _, a := range ng.Annotations {
out = append(out, annotationBrief{
ID: a.ID,
Name: a.Name,
Key: a.Key,
Value: a.Value,
})
}