Qq - Exercise questin 5 under section “explore CNI weave” of Networking Practice . . .

Anand:
qq - Exercise questin 5 under section “explore CNI weave” of Networking Practice:

Question: What binary executable file will be run by kubelet after a container and its associated namespace are created.

Here is the weave conf file:

Should it be the name of the plugin or the type of the plugin? Answer says “type” (weave-net) which is confusing….

controlplane $ cat 10-weave.conflist 
{
    "cniVersion": "0.3.0",
    "name": "weave",
    "plugins": [
        {
            "name": "weave",
            "type": "weave-net",
            "hairpinMode": true
        },
        {
            "type": "portmap",
            "capabilities": {"portMappings": true},
            "snat": true
        }
    ]
}

Mohamed Ayman:
It will be the type of the plugin.