Latest News
Read all latest blog posts

Learn AWS EKS Kubernetes cluster and devops in AWS (Part 1)
Learn AWS EKS Kubernetes cluster and devops in AWS (Part 1) Starting AWS EKS cluster manually in AWS web console
Read More

My tmux conf
# ---- # Our .tmux.conf file # Setting the prefix from C-b to C-a # set -g default-terminal "xterm-256color" set -g default-terminal "screen-256color" set -g default-command /bin/zsh set -g prefix C-a set -g history-limit 50000 # Free the original Ctrl-b prefix keybinding unbind C-b #setting the delay between prefix and command set -sg escape-time 1 # Ensure that we can send Ctrl-A to other apps bind C-a send-prefix # Set the base index for windows to 1 instead of 0 set -g base-index 1 # Set the base index for panes to 1 instead of 0 setw -g pane-base-index 1 # Reload the file with Prefix r bind r source-file ~/.
Read More
My NVIM init file
" plugins" curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vimcall plug#begin("~/.config/nvim/plugged")" Plugin SenohlsearchctionPlug 'ryanoasis/vim-devicons'Plug 'morhetz/gruvbox'Plug 'neoclide/coc.
Read More
My zshrc file
HISTFILE=~/.zsh_history HISTSIZE=10000 SAVEHIST=10000 setopt appendhistory # source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh # source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.
Read More
Kubernetes network policies
Here is an example of network policies k taint node scw-k8s-cks node-role.
Read More
CKS setup Scaleway kubernetes cluster at Ubuntu 18.04
Create SSH key pair to be used for Kubernetes master and node machine
Read More