forked from tkestack/charts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME.md.gotmpl
More file actions
86 lines (62 loc) · 2.36 KB
/
README.md.gotmpl
File metadata and controls
86 lines (62 loc) · 2.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{{ template "chart.header" . }}
{{ template "chart.badgesSection" . }}
{{ template "chart.description" . }}
{{ template "chart.homepage" . }}
### Installation
Quick start instructions for the setup and configuration of kueue using Helm.
#### Prerequisites
- [Helm](https://helm.sh/docs/intro/quickstart/#install-helm)
- (Optional) [Cert-manager](https://cert-manager.io/docs/installation/)
#### Installing the chart
##### Install chart using Helm v3.0+
Either clone the kueue repository:
```bash
$ git clone git@github.com:kubernetes-sigs/kueue.git
$ cd kueue/charts
$ helm install kueue kueue/ --create-namespace --namespace kueue-system
```
Or use the charts pushed to `oci://registry.k8s.io/kueue/charts/kueue`:
```bash
helm install kueue oci://registry.k8s.io/kueue/charts/kueue --version="0.14.3" --create-namespace --namespace=kueue-system
```
For more advanced parametrization of Kueue, we recommend using a local overrides file, passed via the `--values` flag. For example:
```yaml
controllerManager:
featureGates:
- name: TopologyAwareScheduling
enabled: true
replicas: 2
manager:
resources:
limits:
cpu: "2"
memory: 2Gi
requests:
cpu: "2"
memory: 2Gi
```
```bash
helm install kueue oci://registry.k8s.io/kueue/charts/kueue --version="0.14.3" \
--create-namespace --namespace=kueue-system \
--values overrides.yaml
```
You can also use the `--set` flag. For example, to enable a feature gate (e.g., `TopologyAwareScheduling`):
```bash
helm install kueue oci://registry.k8s.io/kueue/charts/kueue --version="0.14.3" \
--create-namespace --namespace=kueue-system \
--set "controllerManager.featureGates[0].name=TopologyAwareScheduling" \
--set "controllerManager.featureGates[0].enabled=true"
```
##### Verify that controller pods are running properly.
```bash
$ kubectl get deploy -n kueue-system
NAME READY UP-TO-DATE AVAILABLE AGE
kueue-controller-manager 1/1 1 1 7s
```
##### Prometheus
Kueue supports Prometheus metrics.
Check out the [site](https://kueue.sigs.k8s.io/docs/tasks/manage/productization/prometheus/)
for more information on installing kueue with metrics using our Helm chart.
### Configuration
The following table lists the configurable parameters of the kueue chart and their default values.
{{ template "chart.valuesTable" . }}