CentOS SystemD container - basic tools
1.1K
CentOS 7 container with load test and other tools
contains:
net-tools (netstat, arp, ether-wake, ifconfig, ipmaddr, iptunnel, mii-diag, mii-tool, nameif, plipconfig, route, slattach )
bind-utils ( dig, host, nslookup, nsupdate )
http-tools ( ab, htdbm, htdigest, htpasswd, httxt2dbm, logresolve)
sysbench 1.0
iperf
MySQL client
docker run --privileged \
--name loadgen \
--hostname loadgen \
-v /sys/fs/cgroup:/sys/fs/cgroup:ro \
-d jonhartley/loadgen /usr/sbin/init
apiVersion: v1
kind: Pod
metadata:
name: tools1
namespace: default
labels:
name: tools
type: tools
spec:
containers:
- resources:
limits:
memory: "600Mi"
cpu: "300m"
requests:
memory: "600Mi"
cpu: "300m"
image: jonhartley/tools
name: tools
securityContext:
privileged: true
volumeMounts:
- name: cgroup
mountPath: /sys/fs/cgroup
readOnly: true
volumes:
- name: cgroup
hostPath:
path: /sys/fs/cgroup
type: Directory
Content type
Image
Digest
Size
304.6 MB
Last updated
over 4 years ago
docker pull jonhartley/tools