Skip to content

Commit

Permalink
Merge pull request #357 from alculquicondor/release-0.2-update
Browse files Browse the repository at this point in the history
Release 0.2 update
  • Loading branch information
k8s-ci-robot authored Aug 25, 2022
2 parents 5839bd3 + a8913bb commit ddadb5b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ ifndef ignore-not-found
ignore-not-found = false
endif

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

.PHONY: install
install: manifests kustomize ## Install CRDs into the K8s cluster specified in ~/.kube/config.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,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.1.1/manifests.yaml
kubectl apply -f https://github.com/kubernetes-sigs/kueue/releases/download/v0.2.0/manifests.yaml
```

The controller runs in the `kueue-system` namespace.
Expand Down
2 changes: 1 addition & 1 deletion config/components/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ kind: Kustomization
images:
- name: controller
newName: gcr.io/k8s-staging-kueue/kueue
newTag: main
newTag: release-0.2
10 changes: 5 additions & 5 deletions docs/setup/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ 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.1.1
VERSION=v0.2.0
kubectl apply -f https://github.com/kubernetes-sigs/kueue/releases/download/$VERSION/manifests.yaml
```

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.1.1
VERSION=v0.2.0
kubectl delete -f https://github.com/kubernetes-sigs/kueue/releases/download/$VERSION/manifests.yaml
```

Expand All @@ -60,14 +60,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.1.1
VERSION=v0.2.0
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.1.1](https://pkg.go.dev/sigs.k8s.io/kueue@v0.1.1/apis/config/v1alpha1#Configuration)).
struct ([v1alpha1@v0.2.0](https://pkg.go.dev/sigs.k8s.io/kueue@v0.2.0/apis/config/v1alpha1#Configuration)).
The contents of the ConfigMap are similar to the following:

```yaml
Expand Down Expand Up @@ -101,7 +101,7 @@ To install the latest development version of Kueue in your cluster, run the
following command:

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

The controller runs in the `kueue-system` namespace.
Expand Down

0 comments on commit ddadb5b

Please sign in to comment.