recommends thick plugin in quickstart (#894)

This commit is contained in:
Doug Smith 2022-08-24 07:23:33 -04:00 committed by GitHub
parent 68a9593f84
commit 0c515497d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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