network-tools/README.md

38 lines
1.1 KiB
Markdown
Raw Normal View History

2020-03-13 12:20:53 +00:00
# network-tools
2020-06-06 17:05:16 +00:00
[![Build Status](https://drone.cryptic.systems/api/badges/volker.raschek/network-tools/status.svg)](https://drone.cryptic.systems/volker.raschek/network-tools)
2020-03-13 12:20:53 +00:00
[![Docker Pulls](https://img.shields.io/docker/pulls/volkerraschek/network-tools)](https://hub.docker.com/r/volkerraschek/network-tools)
2020-06-06 17:05:16 +00:00
This project, hosted on
[git.cryptic.systems](https://git.cryptic.systems/volker.raschek/network-tools),
2020-06-23 05:35:29 +00:00
contains only files to build the container image. The container image contains
2020-06-06 17:05:16 +00:00
network tools to analyse or monitor network communication. This can be helpful
in a containerized environment.
## Usage
2020-06-23 05:35:29 +00:00
### Docker
To use this image execute the following command in a docker environment.
2020-06-06 17:05:16 +00:00
```bash
$ docker run \
--rm \
volkerraschek/network-tools:latest \
bash
2020-06-23 05:35:29 +00:00
```
### Kubernetes
For a kubernetes environment you can use the [YAML-File](network-tools.yaml) by
executing the following command.
```bash
$ kubectl create -f https://git.cryptic.systems/volker.raschek/network-tools/network-tools.yml
```
Execute a shell inside the container by
```bash
kubectl exec -it network-tools -- sh
2020-06-06 17:05:16 +00:00
```