Browse Source

Update Readme

master
Maxim Likhachev 5 years ago
parent
commit
f45e6082fb
  1. 6
      Makefile
  2. 3
      README.md

6
Makefile

@ -12,18 +12,18 @@ rmdir: @@ -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

3
README.md

@ -19,4 +19,7 @@ will create the symbolic link for each script in the \<path> directory. @@ -19,4 +19,7 @@ will create the symbolic link for each script in the \<path> 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.

Loading…
Cancel
Save