From 650104c4df9b829e5bed76dd9d3552bf976b5b44 Mon Sep 17 00:00:00 2001 From: Rafael Vasquez Date: Tue, 9 May 2023 15:11:18 -0400 Subject: [PATCH] doc: Remove cert flag from quickstart (#364) Remove the `--enable-self-signed-ca` option from the quickstart guide and webhook information. The quickstart instructions explicitly install the latest release `v0.10` which does not include the recently added `--enable-self-signed-ca`. Following the document as-is results in an `Unknown option` error. Resolves #370 Signed-off-by: Rafael Vasquez --- docs/quickstart.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/quickstart.md b/docs/quickstart.md index e0561cf8..7eb52436 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -8,8 +8,6 @@ To quickly get started using ModelMesh Serving, here is a brief guide. - [kubectl](https://kubernetes.io/docs/tasks/tools/#kubectl) and [kustomize](https://kubectl.docs.kubernetes.io/installation/kustomize/) (v3.2.0+) - At least 4 vCPU and 8 GB memory. For more details, please see [here](install/README.md#deployed-components). -_(Note)_ Regarding webhook certificates, there are 2 options: `cert-manager` and `self-signed-certificate`. Please refer to [install help](install/install-script.md#installation-1). - ## 1. Install ModelMesh Serving ### Get the latest release @@ -24,7 +22,7 @@ cd modelmesh-serving ```shell kubectl create namespace modelmesh-serving -./scripts/install.sh --namespace-scope-mode --namespace modelmesh-serving --quickstart --enable-self-signed-ca +./scripts/install.sh --namespace-scope-mode --namespace modelmesh-serving --quickstart ``` This will install ModelMesh Serving in the `modelmesh-serving` namespace, along with an etcd and MinIO instances.