Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs to v0.2.1 #358

Merged
merged 1 commit into from
Aug 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG/CHANGELOG-0.2.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## v0.2.0
## v0.2.1

Changes since `v0.1.0`:

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ admission control can be delegated to controllers such as [gatekeeper](https://g
To install the latest release of Kueue in your cluster, run the following command:

```shell
kubectl apply -f https://github.com/kubernetes-sigs/kueue/releases/download/v0.2.0/manifests.yaml
kubectl apply -f https://github.com/kubernetes-sigs/kueue/releases/download/v0.2.1/manifests.yaml
```

The controller runs in the `kueue-system` namespace.
Expand Down
12 changes: 6 additions & 6 deletions docs/setup/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ The webhook server in kueue uses an internal cert management for provisioning ce
To install a released version of Kueue in your cluster, run the following command:

```shell
VERSION=v0.2.0
VERSION=v0.2.1
kubectl apply -f https://github.com/kubernetes-sigs/kueue/releases/download/$VERSION/manifests.yaml
```

### Add metrics scraping for prometheus-operator

_Available in Kueue v0.2.0 and later_
_Available in Kueue v0.2.1 and later_

To allow [prometheus-operator](https://github.com/prometheus-operator/prometheus-operator)
to scrape metrics from kueue components, run the following command:
Expand All @@ -44,7 +44,7 @@ kubectl apply -f https://github.com/kubernetes-sigs/kueue/releases/download/$VER
To uninstall a released version of Kueue from your cluster, run the following command:

```shell
VERSION=v0.2.0
VERSION=v0.2.1
kubectl delete -f https://github.com/kubernetes-sigs/kueue/releases/download/$VERSION/manifests.yaml
```

Expand All @@ -61,14 +61,14 @@ To install a custom-configured released version of Kueue in your cluster, execut
1. Download the release's `manifests.yaml` file:

```shell
VERSION=v0.2.0
VERSION=v0.2.1
wget https://github.com/kubernetes-sigs/kueue/releases/download/$VERSION/manifests.yaml
```
2. With an editor of your preference, open `manifests.yaml`.
3. In the `kueue-manager-config` ConfigMap manifest, edit the
`controller_manager_config.yaml` data entry. The entry represents
the default Kueue Configuration
struct ([[email protected].0](https://pkg.go.dev/sigs.k8s.io/[email protected].0/apis/config/v1alpha1#Configuration)).
struct ([[email protected].1](https://pkg.go.dev/sigs.k8s.io/[email protected].1/apis/config/v1alpha1#Configuration)).
The contents of the ConfigMap are similar to the following:

```yaml
Expand Down Expand Up @@ -128,7 +128,7 @@ IMAGE_REGISTRY=registry.example.com/my-user make image-build image-push deploy

### Add metrics scraping for prometheus-operator

_Available in Kueue v0.2.0 and later_
_Available in Kueue v0.2.1 and later_

To allow [prometheus-operator](https://github.com/prometheus-operator/prometheus-operator)
to scrape metrics from kueue components, run the following command:
Expand Down