From f45e6082fbf679c2b44f9c47ca2f67353b21a1ee Mon Sep 17 00:00:00 2001 From: Maxim Likhachev Date: Mon, 14 Sep 2020 18:22:51 +0300 Subject: [PATCH] Update Readme --- Makefile | 6 +++--- README.md | 3 +++ 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index daae2c6..3d1bde3 100644 --- a/Makefile +++ b/Makefile @@ -12,18 +12,18 @@ rmdir: install: mkdir @$(find) . \ -maxdepth 1 \ - -type f \ + \( -type f -o -type l \) \ -executable \ -exec basename {} \; \ | while read -r line; do \ - ln -s $$(realpath -- $$line) $(path)/$$line 2>&-; \ + ln -v -s $$(realpath -- $$line) $(path)/$$line 2>&-; \ done; \ true rmlinks: @$(find) . \ -maxdepth 1 \ - -type f \ + \( -type f -o -type l \) \ -executable \ -exec basename {} \; \ | xargs -IF rm -fv $(path)/F diff --git a/README.md b/README.md index 1c536a0..d38174b 100644 --- a/README.md +++ b/README.md @@ -19,4 +19,7 @@ will create the symbolic link for each script in the \ directory. # Index - [kubectl-compare](kubectl-compare) allows to juxtapose kubernetes resource with any diff-like utilities. +- [kubectl-http](kubectl-http) exposes Kubernetes API using kubectl proxy command but adding extra links to the services and pods. +- [kubectl-ingress](kubectl-ingress) shows ingresses with clickable links. +- [kubectl-secrets](kubectl-secrets) decodes secrets in plain text or hiding them under links.