Skip to content

Commit

Permalink
Bump to 1.19, add pdf
Browse files Browse the repository at this point in the history
  • Loading branch information
krzko committed Sep 15, 2020
1 parent 85e0a6d commit aab751a
Show file tree
Hide file tree
Showing 7 changed files with 71 additions and 40 deletions.
32 changes: 0 additions & 32 deletions .circleci/config.yml

This file was deleted.

23 changes: 23 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
; https://editorconfig.org/

root = true

[*]
insert_final_newline = true
charset = utf-8
trim_trailing_whitespace = true
indent_style = space
indent_size = 2

[{Makefile,go.mod,go.sum,*.go,.gitmodules}]
indent_style = tab
indent_size = 8

[*.md]
indent_size = 4
trim_trailing_whitespace = false

eclint_indent_style = unset

[Dockerfile]
indent_size = 4
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto
22 changes: 19 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@

# Created by https://www.gitignore.io/api/macos,windows,visualstudiocode
# Edit at https://www.gitignore.io/?templates=macos,windows,visualstudiocode
# Created by https://www.toptal.com/developers/gitignore/api/macos,windows,visualstudiocode,git
# Edit at https://www.toptal.com/developers/gitignore?templates=macos,windows,visualstudiocode,git

### Git ###
# Created by git for backups. To disable backups in Git:
# $ git config --global mergetool.keepBackup false
*.orig

# Created by git when using merge tools for conflicts
*.BACKUP.*
*.BASE.*
*.LOCAL.*
*.REMOTE.*
*_BACKUP_*.txt
*_BASE_*.txt
*_LOCAL_*.txt
*_REMOTE_*.txt

### macOS ###
# General
Expand Down Expand Up @@ -36,6 +51,7 @@ Temporary Items
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace

### VisualStudioCode Patch ###
# Ignore all local history of files
Expand Down Expand Up @@ -67,4 +83,4 @@ $RECYCLE.BIN/
# Windows shortcuts
*.lnk

# End of https://www.gitignore.io/api/macos,windows,visualstudiocode
# End of https://www.toptal.com/developers/gitignore/api/macos,windows,visualstudiocode,git
8 changes: 8 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
MIT License
Copyright (c) 2019 Kristof Kowalski

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 changes: 20 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# ☸ awesome-cka
# awesome-cka

A curated list for awesome resources needed to pass your [Certified Kubernetes Administrator (CKA)](https://www.cncf.io/certification/cka/) exam.

## 📟 Background

The exam consists of the following, as of writing it is based on curriculum `1.14.1`;
The exam consists of the following, as of writing it is based on curriculum `1.19`;

* 3 hours
* 24 questions
Expand All @@ -13,7 +13,19 @@ The exam consists of the following, as of writing it is based on curriculum `1.1
* Chrome browser plus an extension
* Government-issued non-expired ID
* Webcam and microphone
* Steady internet, preferably 5MB up/down.
* Steady internet, preferably 5MB up/down

### Topics

The exam consists of the following topics and their total points allocation;

* 25% - Cluster Architecture, Installation & Configuration
* 15% - Workloads & Scheduling
* 20% - Services & Networking
* 10% - Storage
* 30% - Troubleshooting

-

The latest curriculum can always be found at [https://github.com/cncf/curriculum](https://github.com/cncf/curriculum).

Expand All @@ -33,7 +45,7 @@ You need to be very comfortable with the following tools, so that you are not wa

### tmux

You only get one console, tmux and screen area allowed. This will allow you to split your single console into multiple windows. ie one master, two nodes. Try and use it in your daily workflow to get comfortable with the default settings.
You only get one console, tmux and screen area allowed. This will allow you to split your single console into multiple windows. ie one master, two nodes. Try and use it in your daily workflow to get comfortable with the default settings. This is purely optional, most people pass the exam without the needed of `tmux`.

- [ ] **Perform tmux deepdive** - [https://thoughtbot.com/upcase/tmux](https://thoughtbot.com/upcase/tmux) - This course teaches you about tmux's pane and window management, session management, copy-paste, and more.

Expand All @@ -58,7 +70,10 @@ You only get one console, tmux and screen area allowed. This will allow you to s
These aliases will help save the precious time you have. Use these during your studies, so you are used to them on the day.

```sh
alias kc='kubectl'
# Needed
alias k='kubectl'

# Optional
alias kgp='kubectl get pods'
alias kgs='kubectl get svc'
alias kgc='kubectl get componentstatuses'
Expand Down
Binary file added README.pdf
Binary file not shown.

0 comments on commit aab751a

Please sign in to comment.