Skip to content

Commit

Permalink
Add packages kubectl, wget, netcat and ca-certificates
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Metz committed Sep 26, 2020
1 parent 8452f54 commit c533b54
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,17 @@ FROM ubuntu:latest

RUN apt-get update && \
apt-get install -y --no-install-recommends \
ca-certificates \
openssh-client \
inetutils-ping \
inetutils-traceroute \
dnsutils \
net-tools \
netcat \
curl \
wget \
postgresql-client

# Install Kubectl
RUN wget https://storage.googleapis.com/kubernetes-release/release/v1.18.8/bin/linux/amd64/kubectl -O /usr/local/bin/kubectl \
&& chmod +x /usr/local/bin/kubectl
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This container will provide all required tools to debug Kubernetes cluster issue
Deploy toolkit container as pod into your Kubernetes cluster and login:

```
$ kubectl apply -f https://raw.githubusercontent.com/wasfree/toolkit-container/master/pod.yaml
$ kubectl apply -f https://raw.githubusercontent.com/wasfree/toolkit/master/pod.yaml
$ kubectl exec -it toolkit /bin/bash
```

Expand Down

0 comments on commit c533b54

Please sign in to comment.