Add various tools + nodeSelector doc

This commit is contained in:
Nico Schottelius 2022-01-15 20:37:13 +01:00
parent aacd068743
commit 68d64a5ff0
2 changed files with 21 additions and 0 deletions

View File

@ -7,9 +7,13 @@ RUN wget -O - https://hwraid.le-vert.net/debian/hwraid.le-vert.net.gpg.key | apt
RUN echo deb http://hwraid.le-vert.net/debian buster main | tee /etc/apt/sources.list.d/hwraid.list RUN echo deb http://hwraid.le-vert.net/debian buster main | tee /etc/apt/sources.list.d/hwraid.list
RUN apt-get update && apt search hpacucli RUN apt-get update && apt search hpacucli
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y \
cciss-vol-status \
dmidecode \ dmidecode \
fwupd \
hpacucli \ hpacucli \
ipmitool \ ipmitool \
megacli \ megacli \
megaclisas-status \ megaclisas-status \
mpt-status \
pciutils \
stress-ng stress-ng

View File

@ -57,9 +57,26 @@ spec:
path: /dev path: /dev
``` ```
You might want to schedule the pod on a specific system, which you can
use using the nodeSelector:
```
...
nodeSelector:
kubernetes.io/hostname: "server49"
....
```
## Changelog / Tags ## Changelog / Tags
### Planned
### 0.0.3 (2022-01-15)
* Added pciutils, mpt-status
* Added fwupd (need to solve/document dbus issue)
### 0.0.2 (2022-01-15) ### 0.0.2 (2022-01-15)
* Added dmidecode * Added dmidecode