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.