This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
# deployment
## 常用命令
```bash
kubectl -n test get deploy
kubectl -n test describe deploy cmdb
## 一般重启deployment,常规操作是删掉对应的pod, 但如果有多个副本集的话一个个删很麻烦,可以执行 rollout
kubectl rollout restart deploy cmdb -n test
```