Preparation notes for the Certified Kubernetes Application Developer (CKAD) exam.
- Kubernetes Architecture
- Application Design & Build
- Application Deployment
- Application Observability & Maintenance(troubleshooting)
- Application Environment, Configuration & Security
- Services & Networking(exposing applications)
Note This is configured in the exam environment, but might be helpful to configure it on your local environment when preparing for the exam.
Create file with vim config
vim ~/.vimrc
Add the following lines:
set expandtab
set tabstop=2
set shiftwidth=2
Explanation:
expandtab
- use spaces for tabtabstop
- how many spaces used for tabshiftwidth
- how many spaces are used for indentation