Skip to content

Commit ddadb5b

Browse files
authored
Merge pull request #357 from alculquicondor/release-0.2-update
Release 0.2 update
2 parents 5839bd3 + a8913bb commit ddadb5b

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ ifndef ignore-not-found
164164
ignore-not-found = false
165165
endif
166166

167-
clean-manifests = (cd config/components/manager && $(KUSTOMIZE) edit set image controller=gcr.io/k8s-staging-kueue/kueue:main)
167+
clean-manifests = (cd config/components/manager && $(KUSTOMIZE) edit set image controller=gcr.io/k8s-staging-kueue/kueue:release-0.2)
168168

169169
.PHONY: install
170170
install: manifests kustomize ## Install CRDs into the K8s cluster specified in ~/.kube/config.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ admission control can be delegated to controllers such as [gatekeeper](https://g
3333
To install the latest release of Kueue in your cluster, run the following command:
3434

3535
```shell
36-
kubectl apply -f https://github.com/kubernetes-sigs/kueue/releases/download/v0.1.1/manifests.yaml
36+
kubectl apply -f https://github.com/kubernetes-sigs/kueue/releases/download/v0.2.0/manifests.yaml
3737
```
3838

3939
The controller runs in the `kueue-system` namespace.

config/components/manager/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ kind: Kustomization
1414
images:
1515
- name: controller
1616
newName: gcr.io/k8s-staging-kueue/kueue
17-
newTag: main
17+
newTag: release-0.2

docs/setup/install.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The webhook server in kueue uses an internal cert management for provisioning ce
2424
To install a released version of Kueue in your cluster, run the following command:
2525

2626
```shell
27-
VERSION=v0.1.1
27+
VERSION=v0.2.0
2828
kubectl apply -f https://github.com/kubernetes-sigs/kueue/releases/download/$VERSION/manifests.yaml
2929
```
3030

@@ -44,7 +44,7 @@ kubectl apply -f https://github.com/kubernetes-sigs/kueue/releases/download/$VER
4444
To uninstall a released version of Kueue from your cluster, run the following command:
4545

4646
```shell
47-
VERSION=v0.1.1
47+
VERSION=v0.2.0
4848
kubectl delete -f https://github.com/kubernetes-sigs/kueue/releases/download/$VERSION/manifests.yaml
4949
```
5050

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

6262
```shell
63-
VERSION=v0.1.1
63+
VERSION=v0.2.0
6464
wget https://github.com/kubernetes-sigs/kueue/releases/download/$VERSION/manifests.yaml
6565
```
6666
2. With an editor of your preference, open `manifests.yaml`.
6767
3. In the `kueue-manager-config` ConfigMap manifest, edit the
6868
`controller_manager_config.yaml` data entry. The entry represents
6969
the default Kueue Configuration
70-
struct ([v1alpha1@v0.1.1](https://pkg.go.dev/sigs.k8s.io/kueue@v0.1.1/apis/config/v1alpha1#Configuration)).
70+
struct ([v1alpha1@v0.2.0](https://pkg.go.dev/sigs.k8s.io/kueue@v0.2.0/apis/config/v1alpha1#Configuration)).
7171
The contents of the ConfigMap are similar to the following:
7272

7373
```yaml
@@ -101,7 +101,7 @@ To install the latest development version of Kueue in your cluster, run the
101101
following command:
102102

103103
```shell
104-
kubectl apply -k github.com/kubernetes-sigs/kueue/config/default?ref=main
104+
kubectl apply -k github.com/kubernetes-sigs/kueue/config/default?ref=release-0.2
105105
```
106106

107107
The controller runs in the `kueue-system` namespace.

0 commit comments

Comments
 (0)