feat(helm): added observability to helm chart

This commit is contained in:
ITQ
2026-05-23 01:11:38 +03:00
parent f3754d1190
commit 5fcaeadcaf
11 changed files with 2516 additions and 4 deletions
+37
View File
@@ -180,6 +180,18 @@
},
"additionalProperties": true
},
"management": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean"
},
"port": {
"type": "integer"
}
},
"additionalProperties": true
},
"env": {
"type": "array",
"items": {
@@ -241,6 +253,31 @@
"routes": {
"type": "object",
"additionalProperties": true
},
"observability": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean"
},
"metrics": {
"type": "object",
"additionalProperties": true
},
"victoriaMetrics": {
"type": "object",
"additionalProperties": true
},
"vmagent": {
"type": "object",
"additionalProperties": true
},
"grafana": {
"type": "object",
"additionalProperties": true
}
},
"additionalProperties": true
}
}
}