Skip to content
Open
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
28 changes: 13 additions & 15 deletions docs/getting-started/quickstart-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,10 @@ Install KServe controller only without additional components.

```
# Standard mode
curl -s "https://raw.githubusercontent.com/kserve/kserve/refs/tags/v0.17.0/install/v0.17.0/kserve-standard-mode-full-install-with-manifests.sh" | bash
curl -s "https://raw.githubusercontent.com/kserve/kserve/refs/heads/master/install/v0.17.0/kserve-standard-mode-full-install-with-manifests.sh" | bash
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why not use the hack folder ? As Dan pointed out

since these are published as release artifacts, we probably no longer need to store in the install directory.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@sivanantha321 Are you referring to the hack folder in each release branch?


# Knative mode (serverless)
curl -s "https://raw.githubusercontent.com/kserve/kserve/refs/tags/v0.17.0/install/v0.17.0/kserve-knative-mode-full-install-with-manifests.sh" | bash
curl -s "https://raw.githubusercontent.com/kserve/kserve/refs/heads/master/install/v0.17.0/kserve-knative-mode-full-install-with-manifests.sh" | bash
```
</details>

Expand Down Expand Up @@ -203,7 +203,7 @@ Install LLMInferenceService controller only for Generative AI model serving.
<summary>Using Quick Install Script</summary>

```
curl -s "https://raw.githubusercontent.com/kserve/kserve/refs/tags/v0.17.0/install/v0.17.0/llmisvc-full-install-with-manifests.sh" | bash
curl -s "https://raw.githubusercontent.com/kserve/kserve/refs/heads/master/install/v0.17.0/llmisvc-full-install-with-manifests.sh" | bash
```
</details>

Expand Down Expand Up @@ -240,12 +240,12 @@ Choose either Standard mode or Knative mode:

```bash
# Option A: Standard Mode Dependencies
curl -s "https://raw.githubusercontent.com/kserve/kserve/refs/tags/v0.17.0/install/v0.17.0/kserve-standard-mode-dependency-install.sh" | bash
curl -fsSL https://github.com/kserve/kserve/releases/download/v0.17.0/kserve-standard-mode-dependency-install.sh | bash

# OR

# Option B: Knative Mode Dependencies
curl -s "https://raw.githubusercontent.com/kserve/kserve/refs/tags/v0.17.0/install/v0.17.0/kserve-knative-mode-dependency-install.sh" | bash
curl -fsSL https://github.com/kserve/kserve/releases/download/v0.17.0/kserve-knative-mode-dependency-install.sh | bash
```

**Step 2: Install All Components**
Expand All @@ -254,16 +254,16 @@ After installing dependencies above, run these commands:

```bash
# Install LLMInferenceService Dependencies
curl -s "https://raw.githubusercontent.com/kserve/kserve/refs/tags/v0.17.0/install/v0.17.0/llmisvc-dependency-install.sh" | bash
curl -fsSL https://github.com/kserve/kserve/releases/download/v0.17.0/llmisvc-dependency-install.sh | bash

# Install CRDs
kubectl apply -f https://raw.githubusercontent.com/kserve/kserve/refs/tags/v0.17.0/install/v0.17.0/kserve-crds.yaml

# Install CRDs
kubectl apply -f https://github.com/kserve/kserve/releases/download/v0.17.0/kserve-crds.yaml
# Install Controllers
kubectl apply -f https://raw.githubusercontent.com/kserve/kserve/refs/tags/v0.17.0/install/v0.17.0/kserve.yaml
kubectl apply -f https://github.com/kserve/kserve/releases/download/v0.17.0/kserve.yaml

# Install ClusterServingRuntimes/LLMIsvcConfigs
kubectl apply -f https://raw.githubusercontent.com/kserve/kserve/refs/tags/v0.17.0/install/v0.17.0/kserve-cluster-resources.yaml
kubectl apply -f https://github.com/kserve/kserve/releases/download/v0.17.0/kserve-cluster-resources.yaml
```

</details>
Expand Down Expand Up @@ -305,22 +305,20 @@ Install only infrastructure dependencies without KServe components.
**Standard Mode Dependencies**:

```bash
curl -s "https://raw.githubusercontent.com/kserve/kserve/refs/tags/v0.17.0/install/v0.17.0/kserve-standard-mode-dependency-install.sh" | bash
curl -fsSL https://github.com/kserve/kserve/releases/download/v0.17.0/kserve-standard-mode-dependency-install.sh | bash
```

**Knative Mode Dependencies**:

```bash
curl -s "https://raw.githubusercontent.com/kserve/kserve/refs/tags/v0.17.0/install/v0.17.0/kserve-knative-mode-dependency-install.sh" | bash
curl -fsSL https://github.com/kserve/kserve/releases/download/v0.17.0/kserve-knative-mode-dependency-install.sh | bash
```

**LLMIsvc Dependencies**:

```bash
curl -s "https://raw.githubusercontent.com/kserve/kserve/refs/tags/v0.17.0/install/v0.17.0/llmisvc-dependency-install.sh" | bash
curl -fsSL https://github.com/kserve/kserve/releases/download/v0.17.0/llmisvc-dependency-install.sh | bash
```


</details>

<details>
Expand Down
26 changes: 13 additions & 13 deletions versioned_docs/version-0.17/getting-started/quickstart-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,10 @@ Install KServe controller only without additional components.

```
# Standard mode
curl -s "https://raw.githubusercontent.com/kserve/kserve/refs/tags/v0.17.0/install/v0.17.0/kserve-standard-mode-full-install-with-manifests.sh" | bash
curl -s "https://raw.githubusercontent.com/kserve/kserve/refs/heads/master/install/v0.17.0/kserve-standard-mode-full-install-with-manifests.sh" | bash

# Knative mode (serverless)
curl -s "https://raw.githubusercontent.com/kserve/kserve/refs/tags/v0.17.0/install/v0.17.0/kserve-knative-mode-full-install-with-manifests.sh" | bash
curl -s "https://raw.githubusercontent.com/kserve/kserve/refs/heads/master/install/v0.17.0/kserve-knative-mode-full-install-with-manifests.sh" | bash
```
</details>

Expand Down Expand Up @@ -203,7 +203,7 @@ Install LLMInferenceService controller only for Generative AI model serving.
<summary>Using Quick Install Script</summary>

```
curl -s "https://raw.githubusercontent.com/kserve/kserve/refs/tags/v0.17.0/install/v0.17.0/llmisvc-full-install-with-manifests.sh" | bash
curl -s "https://raw.githubusercontent.com/kserve/kserve/refs/heads/master/install/v0.17.0/llmisvc-full-install-with-manifests.sh" | bash
```
</details>

Expand Down Expand Up @@ -240,12 +240,12 @@ Choose either Standard mode or Knative mode:

```bash
# Option A: Standard Mode Dependencies
curl -s "https://raw.githubusercontent.com/kserve/kserve/refs/tags/v0.17.0/install/v0.17.0/kserve-standard-mode-dependency-install.sh" | bash
curl -fsSL https://github.com/kserve/kserve/releases/download/v0.17.0/kserve-standard-mode-dependency-install.sh | bash

# OR

# Option B: Knative Mode Dependencies
curl -s "https://raw.githubusercontent.com/kserve/kserve/refs/tags/v0.17.0/install/v0.17.0/kserve-knative-mode-dependency-install.sh" | bash
curl -fsSL https://github.com/kserve/kserve/releases/download/v0.17.0/kserve-knative-mode-dependency-install.sh | bash
```

**Step 2: Install All Components**
Expand All @@ -254,16 +254,16 @@ After installing dependencies above, run these commands:

```bash
# Install LLMInferenceService Dependencies
curl -s "https://raw.githubusercontent.com/kserve/kserve/refs/tags/v0.17.0/install/v0.17.0/llmisvc-dependency-install.sh" | bash
curl -fsSL https://github.com/kserve/kserve/releases/download/v0.17.0/llmisvc-dependency-install.sh | bash

# Install CRDs
kubectl apply -f https://raw.githubusercontent.com/kserve/kserve/refs/tags/v0.17.0/install/v0.17.0/kserve-crds.yaml

# Install CRDs
kubectl apply -f https://github.com/kserve/kserve/releases/download/v0.17.0/kserve-crds.yaml
# Install Controllers
kubectl apply -f https://raw.githubusercontent.com/kserve/kserve/refs/tags/v0.17.0/install/v0.17.0/kserve.yaml
kubectl apply -f https://github.com/kserve/kserve/releases/download/v0.17.0/kserve.yaml

# Install ClusterServingRuntimes/LLMIsvcConfigs
kubectl apply -f https://raw.githubusercontent.com/kserve/kserve/refs/tags/v0.17.0/install/v0.17.0/kserve-cluster-resources.yaml
kubectl apply -f https://github.com/kserve/kserve/releases/download/v0.17.0/kserve-cluster-resources.yaml
```

</details>
Expand Down Expand Up @@ -305,19 +305,19 @@ Install only infrastructure dependencies without KServe components.
**Standard Mode Dependencies**:

```bash
curl -s "https://raw.githubusercontent.com/kserve/kserve/refs/tags/v0.17.0/install/v0.17.0/kserve-standard-mode-dependency-install.sh" | bash
curl -fsSL https://github.com/kserve/kserve/releases/download/v0.17.0/kserve-standard-mode-dependency-install.sh | bash
```

**Knative Mode Dependencies**:

```bash
curl -s "https://raw.githubusercontent.com/kserve/kserve/refs/tags/v0.17.0/install/v0.17.0/kserve-knative-mode-dependency-install.sh" | bash
curl -fsSL https://github.com/kserve/kserve/releases/download/v0.17.0/kserve-knative-mode-dependency-install.sh | bash
```

**LLMIsvc Dependencies**:

```bash
curl -s "https://raw.githubusercontent.com/kserve/kserve/refs/tags/v0.17.0/install/v0.17.0/llmisvc-dependency-install.sh" | bash
curl -fsSL https://github.com/kserve/kserve/releases/download/v0.17.0/llmisvc-dependency-install.sh | bash
```


Expand Down