From c34b0f0183fa231d0b2233f7c59150f6bba61278 Mon Sep 17 00:00:00 2001 From: Mickael Asseline Date: Fri, 16 Jun 2023 07:24:35 +0000 Subject: [PATCH] docs: update Conteneurisation/k8s/Cheat-sheet --- Conteneurisation/k8s/Cheat-sheet.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/Conteneurisation/k8s/Cheat-sheet.md b/Conteneurisation/k8s/Cheat-sheet.md index 9f47d64..7bb5ef0 100644 --- a/Conteneurisation/k8s/Cheat-sheet.md +++ b/Conteneurisation/k8s/Cheat-sheet.md @@ -2,7 +2,7 @@ title: Kubernetes - Cheat Sheet description: Un petit pense bĂȘte pour les principales commandes de K8S published: true -date: 2023-06-16T07:19:47.687Z +date: 2023-06-16T07:24:33.204Z tags: cheatsheet, k8s editor: markdown dateCreated: 2023-06-16T07:00:45.096Z @@ -10,6 +10,22 @@ dateCreated: 2023-06-16T07:00:45.096Z # Autocompletion ## Bash + +Installer `bash-completion` +### tables {.tabset} +#### MacOS +```bash +brew install bash-completion + +echo "[ -f /usr/local/etc/bash_completion ] && . /usr/local/etc/bash_completion" >> ~/.bash_profile + +``` + +#### Linux +```bash +sudo apt-get install -y bash-completion +``` + Installer `bash-completion` ```bash sudo apt-get install -y bash-completion