Skip to content

Commit

Permalink
upgraded version and fixed install notes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ramilito committed Aug 20, 2022
1 parent c6ca654 commit 1b474d2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kubesess"
version = "1.2.2"
version = "1.2.3"
authors = ["https://github.com/ramilito"]
edition = "2021"

Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,11 @@ Probably most of the speed gains are because I am bypassing kubectl and just edi

Download and extract the binary.
```
wget "https://github.com/Ramilito/kubesess/releases/download/1.2.2/kubesess_1.2.2_x86_64-unknown-linux-musl.tar.gz" && \
mkdir -p $HOME/.kube/kubesess && tar zxpf kubesess_1.2.2_x86_64-unknown-linux-musl.tar.gz -C $HOME/.kube/kubesess && \
sudo mv ~/.kube/kubesess/kubesess /usr/local/bin/kubesess
KUBESESS_VERSION=1.2.3 && \
KUBESESS_OS=x86_64-unknown-linux-gnu && \
wget "https://github.com/Ramilito/kubesess/releases/download/${KUBESESS_VERSION}/kubesess_${KUBESESS_VERSION}_${KUBESESS_OS}.tar.gz" && \
mkdir -p $HOME/.kube/kubesess && tar zxpf kubesess_${KUBESESS_VERSION}_${KUBESESS_OS}.tar.gz -C $HOME/.kube/kubesess && \
sudo mv ~/.kube/kubesess/target/${KUBESESS_OS}/release/kubesess /usr/local/bin/kubesess
```

A script wrapper called kubesess.sh is provided for easier use, source the script wrapper in your .bashrc, .zshrc.
Expand Down

0 comments on commit 1b474d2

Please sign in to comment.