Practice Test - Deploy Networking Solution
Solution
-
We have deployed an application called app in the default namespace. What is the state of the pod?
```bash
kubectl get pods
```
Note it is stuck at `ContainerCreating`. It will reamin this way.
> NotRunning
-
Inspect why the POD is not running.
```bash
kubectl describe pod app
```
The answer is in the `Events` section. It cannot allocate an IP address, therefore...
> No network configured
-
Deploy weave-net networking solution to the cluster.
Apply the manifest found under the `/root/weave` directory.