Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 695 Bytes

README.md

File metadata and controls

21 lines (14 loc) · 695 Bytes

kubernetes-formation

This repository contains hands-on instructions for the Containers and Kubernetes fundamentals and Kubernetes fundamentals trainings.

Each exercise is a tutorial written for Google Cloud Shell, the hosted development environment managing resources hosted on Google Cloud Platform.

kubectl extra configuration

Allow completion in kubectl command (activate with TAB). bash-completion package should be installed first :

source <(kubectl completion bash)

Create a shortcut alias k to kubectl and activation completion for this alias :

alias k=kubectl
complete -o default -F __start_kubectl k