From 3477c9c827b838ff5bc545d88cb4d14dd90f88cd Mon Sep 17 00:00:00 2001 From: Fish-pro Date: Thu, 18 Jan 2024 22:45:57 +0800 Subject: [PATCH] fix(quick start)-You do not need to clone the repository and directly deliver the installation file (#1210) Signed-off-by: Zechun Chen --- docs/quickstart.md | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/docs/quickstart.md b/docs/quickstart.md index 412dbe66c..bcf501de2 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -42,25 +42,19 @@ master-2 Ready master 1h v1.17.1 Our recommended quickstart method to deploy Multus is to deploy using a Daemonset (a method of running pods on each nodes in your cluster), this spins up pods which install a Multus binary and configure Multus for usage. -Firstly, clone this GitHub repository. - -``` -git clone https://github.com/k8snetworkplumbingwg/multus-cni.git && cd multus-cni -``` - We'll apply a YAML file with `kubectl` from this repo, which installs the Multus components. Recommended installation: ``` -cat ./deployments/multus-daemonset-thick.yml | kubectl apply -f - +kubectl apply -f https://raw.githubusercontent.com/k8snetworkplumbingwg/multus-cni/master/deployments/multus-daemonset-thick.yml ``` See the [thick plugin docs](./thick-plugin.md) for more information about this architecture. Alternatively, you may install the thin-plugin with: ``` -cat ./deployments/multus-daemonset.yml | kubectl apply -f - +kubectl apply -f https://raw.githubusercontent.com/k8snetworkplumbingwg/multus-cni/master/deployments/multus-daemonset.yml ``` ### What the Multus daemonset does