Skip to content

gebertdominik/ckad-notes

Repository files navigation

CKAD preparation notes

Preparation notes for the Certified Kubernetes Application Developer (CKAD) exam.

ckad_curriculum_map

Table of contents

  1. Kubernetes Architecture
  2. Application Design & Build
  3. Application Deployment
  4. Application Observability & Maintenance(troubleshooting)
  5. Application Environment, Configuration & Security
  6. Services & Networking(exposing applications)

Vim config for editing yaml files

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 tab
  • tabstop - how many spaces used for tab
  • shiftwidth - how many spaces are used for indentation

Useful links