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 installation docs for v0.2.0 (main branch) #217

Merged
merged 1 commit into from
Jun 30, 2023
Merged
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
10 changes: 5 additions & 5 deletions docs/setup/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Make sure the following conditions are met:
To install a released version of Jobset in your cluster, run the following command:

```shell
VERSION=v0.1.3
VERSION=v0.2.0
kubectl apply --server-side -f https://github.com/kubernetes-sigs/jobset/releases/download/$VERSION/manifests.yaml
```

Expand All @@ -38,7 +38,7 @@ If you are using [prometheus-operator](https://github.com/prometheus-operator/pr
to scrape metrics from jobset components, run the following command:

```shell
VERSION=v0.1.3
VERSION=v0.2.0
kubectl apply -f https://github.com/kubernetes-sigs/jobset/releases/download/$VERSION/prometheus.yaml
```

Expand All @@ -51,7 +51,7 @@ can be scraped without performing this step.
To uninstall a released version of JobSet from your cluster, run the following command:

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

Expand All @@ -63,14 +63,14 @@ kubectl delete -f https://github.com/kubernetes-sigs/jobset/releases/download/$V
<!-- <\!-- 1. Download the release's `manifests.yaml` file: -\-> -->

<!-- <\!-- ```shell -\-> -->
<!-- <\!-- VERSION=v0.1.3 -\-> -->
<!-- <\!-- VERSION=v0.2.0 -\-> -->
<!-- <\!-- wget https://github.com/kubernetes-sigs/jobset/releases/download/$VERSION/manifests.yaml -\-> -->
<!-- <\!-- ``` -\-> -->
<!-- <\!-- 2. With an editor of your preference, open `manifests.yaml`. -\-> -->
<!-- <\!-- 3. In the `jobset-manager-config` ConfigMap manifest, edit the -\-> -->
<!-- <\!-- `controller_manager_config.yaml` data entry. The entry represents -\-> -->
<!-- <\!-- the default JobSet Configuration -\-> -->
<!-- <\!-- struct ([v1alpha2@v0.1.3](https://pkg.go.dev/sigs.k8s.io/jobset@v0.1.3/apis/config/v1alpha2#Configuration)). -\-> -->
<!-- <\!-- struct ([v1alpha2@v0.2.0](https://pkg.go.dev/sigs.k8s.io/jobset@v0.2.0/apis/config/v1alpha2#Configuration)). -\-> -->
<!-- <\!-- The contents of the ConfigMap are similar to the following: -\-> -->


Expand Down