You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This directory contains the Helm Charts required to install Cortex.
5
+
6
+
## Structure
7
+
8
+
Helm charts are organized into three main directories:
9
+
-`bundles`: Contain the Helm charts for each supported scheduling domain, such as `cortex-manila`, `cortex-nova`. They are the highest level of abstraction and part of the Cortex release.
10
+
-`lib`: Contain shared library and common Helm charts, such as `cortex-core`, `cortex-postgres` used in the bundles.
11
+
-`dev`: Contain development-specific Helm charts. These are not bundles into releases but are used for local development and testing.
12
+
13
+
```
14
+
.
15
+
└── helm
16
+
│
17
+
├── bundles
18
+
│ ├── cortex-nova
19
+
│ │ ├── Chart.yaml
20
+
│ │ │ ├── lib/cortex-core
21
+
│ │ │ ├── lib/cortex-postgres
22
+
│ │ │ └── ...
23
+
│ │ └── < Scheduling domain specific configuration, alerts, dashboards, etc. >
0 commit comments