Skip to content

Commit

Permalink
Merge branch 'grafana' of github.com:fastmachinelearning/SuperSONIC i…
Browse files Browse the repository at this point in the history
…nto grafana
  • Loading branch information
kondratyevd committed Jan 29, 2025
2 parents 36b1cf3 + 931d06d commit 9643baa
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docs/.values-table.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,10 @@
| ingress.ingressClassName | string | `""` | |
| ingress.annotations | object | `{}` | |
| nodeSelector | object | `{}` | Node selector for all pods (Triton and Envoy) |
| tolerations | list | `[]` | Tolerations for all pods (Triton and Envoy) |
| tolerations | list | `[]` | Tolerations for all pods (Triton and Envoy) |
| grafana.enabled | bool | `false` | Enable or disable Grafana deployment |
| grafana.ingress | object | `{"annotations":{},"enabled":false,"hostName":"","ingressClassName":"haproxy"}` | Ingress configuration for Grafana |
| grafana.ingress.enabled | bool | `false` | Enable or disable ingress for Grafana |
| grafana.ingress.hostName | string | `""` | Hostname for Grafana ingress |
| grafana.ingress.ingressClassName | string | `"haproxy"` | Ingress class name (e.g. nginx, haproxy) |
| grafana.ingress.annotations | object | `{}` | Additional annotations for Grafana ingress |
36 changes: 36 additions & 0 deletions helm/supersonic/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -476,11 +476,47 @@
},
"tolerations": {
"type": "array"
},
"grafana": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean"
},
"ingress": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean"
},
"hostName": {
"type": "string"
},
"ingressClassName": {
"type": "string"
},
"annotations": {
"type": "object"
}
},
"required": [
"annotations",
"enabled",
"hostName",
"ingressClassName"
]
}
},
"required": [
"enabled",
"ingress"
]
}
},
"required": [
"autoscaler",
"envoy",
"grafana",
"ingress",
"nameOverride",
"nodeSelector",
Expand Down

0 comments on commit 9643baa

Please sign in to comment.