From 3a287e55dd4449bf3ad68a3db00ddaa094725769 Mon Sep 17 00:00:00 2001 From: Aldo Culquicondor Date: Thu, 25 Aug 2022 20:01:32 -0400 Subject: [PATCH] Update docs to v0.2.1 Change-Id: I3a89a771aa8795b5b336bd06ac9fdc61cb24f502 --- CHANGELOG/CHANGELOG-0.2.md | 2 +- README.md | 2 +- docs/setup/install.md | 12 ++++++------ 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CHANGELOG/CHANGELOG-0.2.md b/CHANGELOG/CHANGELOG-0.2.md index 7b98690d29..0d85a68b67 100644 --- a/CHANGELOG/CHANGELOG-0.2.md +++ b/CHANGELOG/CHANGELOG-0.2.md @@ -1,4 +1,4 @@ -## v0.2.0 +## v0.2.1 Changes since `v0.1.0`: diff --git a/README.md b/README.md index 65a090037e..44ca670318 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/docs/setup/install.md b/docs/setup/install.md index 7f569d4cf8..ca964a3251 100644 --- a/docs/setup/install.md +++ b/docs/setup/install.md @@ -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: @@ -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 ``` @@ -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 ([v1alpha1@v0.2.0](https://pkg.go.dev/sigs.k8s.io/kueue@v0.2.0/apis/config/v1alpha1#Configuration)). +struct ([v1alpha1@v0.2.1](https://pkg.go.dev/sigs.k8s.io/kueue@v0.2.1/apis/config/v1alpha1#Configuration)). The contents of the ConfigMap are similar to the following: ```yaml @@ -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: