diff --git a/docs/quickstart.md b/docs/quickstart.md index bdd41255b..412dbe66c 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