From 0c515497d71d9c3abebbc5c692d94aac92b5afe0 Mon Sep 17 00:00:00 2001 From: Doug Smith Date: Wed, 24 Aug 2022 07:23:33 -0400 Subject: [PATCH] recommends thick plugin in quickstart (#894) --- docs/quickstart.md | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/docs/quickstart.md b/docs/quickstart.md index bdd41255..412dbe66 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -48,19 +48,20 @@ 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. +We'll apply a YAML file with `kubectl` from this repo, which installs the Multus components. -For thin-plugin (i.e. standalone implementation) case: - -``` -cat ./deployments/multus-daemonset.yml | kubectl apply -f - -``` - -For [thick-plugin](docks/thick-plugin.md) (i.e. client/server implementation) case: +Recommended installation: ``` cat ./deployments/multus-daemonset-thick.yml | kubectl apply -f - ``` +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 - +``` ### What the Multus daemonset does