Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/kubernetes/pouch_with_kubernetes_deploying.md
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,12 @@ The above command `kubeadm join` is used by any node except master node which wi

> NOTE: Kubernetes installation part does not include the CNI network part. CNI network setup is an individual part, refer [Setup CNI network]().

Optional: enable schedule pods on the master node

```sh
kubectl taint nodes --all node-role.kubernetes.io/master:NoSchedule-
```

### Verify Kubernetes Correctness

After installing PouchContainer and Kubernetes, user could create a running pod to verify the correctness of cluster. The following example creates a very simple pod which contains only one busybox container. If we see the pod is running, it means that you succeed in deploying Kubernetes with PouchContainer.
Expand Down