Personal blog and website built with Jekyll using the Chirpy theme.
- Main Page: https://ruzickap.github.io
- Dev Page: https://ruzickap-github-io.pages.dev
Post sources:
| Source | Posts | Years | Categories | Tags |
|---|---|---|---|---|
| https://ruzickap.github.io | 24 | 2019-2026 | 10 | 35 |
| https://linux.xvx.cz | 30 | 2013-2022 | 11 | 40 |
| https://linux-old.xvx.cz | 24 | 2009-2013 | 9 | 22 |
| Category | Total | ruzickap.github.io | linux.xvx.cz | linux-old.xvx.cz |
|---|---|---|---|---|
| Linux | 34 | 2 | 10 | 22 |
| linux.xvx.cz | 30 | 30 | ||
| linux-old.xvx.cz | 24 | 24 | ||
| Kubernetes | 22 | 17 | 5 | |
| Networking | 21 | 4 | 10 | 7 |
| Cloud | 18 | 15 | 3 | |
| Security | 14 | 13 | 1 | |
| DevOps | 11 | 4 | 6 | 1 |
| OpenWrt | 10 | 7 | 3 | |
| Virtualization | 10 | 4 | 6 | |
| Storage | 8 | 1 | 2 | 5 |
| Android | 5 | 5 | ||
| Photography | 4 | 1 | 2 | 1 |
| Windows | 4 | 1 | 3 |
| Tag | Total | ruzickap.github.io | linux.xvx.cz | linux-old.xvx.cz |
|---|---|---|---|---|
| kubernetes | 18 | 13 | 5 | |
| amazon-eks | 14 | 14 | ||
| security | 13 | 12 | 1 | |
| eksctl | 10 | 10 | ||
| bash | 9 | 1 | 2 | 6 |
| cert-manager | 8 | 8 | ||
| wifi | 8 | 6 | 2 | |
| pxe | 7 | 4 | 3 | |
| prometheus | 7 | 6 | 1 | |
| external-dns | 6 | 6 | ||
| grub | 6 | 1 | 5 | |
| tp-link | 6 | 3 | 3 | |
| router | 6 | 6 | ||
| rhel | 6 | 3 | 3 | |
| adb | 6 | 1 | 5 | |
| monitoring | 6 | 1 | 5 | |
| automation | 6 | 1 | 4 | 1 |
| debian | 5 | 5 | ||
| kvm | 5 | 5 | ||
| htc-desire | 5 | 5 | ||
| turris | 5 | 5 | ||
| ansible | 4 | 4 | ||
| cobbler | 4 | 3 | 1 | |
| dnsmasq | 4 | 1 | 3 | |
| eks-auto-mode | 4 | 4 | ||
| ec2 | 4 | 3 | 1 | |
| grafana | 4 | 3 | 1 | |
| sso | 4 | 3 | 1 | |
| storage | 4 | 2 | 2 | |
| vagrant | 4 | 4 | ||
| windows | 4 | 1 | 3 | |
| karpenter | 3 | 3 | ||
| vulnerability | 3 | 3 | ||
| exploit | 3 | 3 | ||
| kali-linux | 3 | 3 | ||
| docker | 3 | 3 | ||
| raid | 3 | 1 | 2 | |
| lvm | 3 | 1 | 2 | |
| hp-server | 3 | 3 | ||
| load-balancer | 3 | 1 | 2 | |
| database | 3 | 1 | 2 | |
| torrent | 3 | 1 | 2 | |
| cyanogenmod | 2 | 2 | ||
| camera | 2 | 2 | ||
| sony | 2 | 2 | ||
| cheatsheet | 2 | 2 | ||
| github-actions | 2 | 1 | 1 | |
| hotspot | 2 | 1 | 1 | |
| kubectl | 2 | 1 | 1 | |
| kubespray | 2 | 2 | ||
| photo-editing | 2 | 1 | 1 | |
| velero | 2 | 2 | ||
| wordpress | 2 | 2 | ||
| boinc | 1 | 1 | ||
| cilium | 1 | 1 | ||
| cka | 1 | 1 | ||
| flux | 1 | 1 | ||
| freeipa | 1 | 1 | ||
| genai | 1 | 1 | ||
| harbor | 1 | 1 | ||
| istio | 1 | 1 | ||
| maas | 1 | 1 | ||
| mcp | 1 | 1 | ||
| packer | 1 | 1 | ||
| raspberry-pi | 1 | 1 | ||
| terraform | 1 | 1 | ||
| vmware | 1 | 1 |
Chirpy:
docker run --rm -it --volume="${PWD}:/mnt" --workdir /mnt ubuntu bash -c 'set -x && \
apt update && \
apt install build-essential git ruby-bundler ruby-dev -y && \
git config --global --add safe.directory /mnt && \
bundle install && \
jekyll build --destination public
'Megalinter:
mega-linter-runner --remove-container \
--container-name="mega-linter" \
--debug \
--env VALIDATE_ALL_CODEBASE=truedocker run --rm -it -v "$PWD:/mnt" -v "/var/run/docker.sock:/var/run/docker.sock" \
--env AWS_ACCESS_KEY_ID --env AWS_SECRET_ACCESS_KEY --env AWS_ROLE_TO_ASSUME \
--env GOOGLE_CLIENT_ID --env GOOGLE_CLIENT_SECRET --env FORCE_COLOR=1 --env USER \
--workdir /mnt \
ubuntu bash -c 'set -euo pipefail && \
apt update -qq && apt install -qqy bsdextrautils curl docker.io jq unzip wget && \
curl -sL https://mise.run -o - | bash && \
eval "$(~/.local/bin/mise activate bash)" && \
mise run "create-delete:posts:all" \
'-
Use
```bashto run commands during the post_tests "create" execution:```bash ### <some create commands...> ```
-
Use
```shellnot to run commands during the post_tests execution (they will be only displayed on the web pages):```shell ### some commands... ```
-
Use
```shto run commands during the post_tests "destroy" execution:```sh ### <some clean-up/destroy commands...> ```