├── README.md ├── img └── tinkerbell-lab.png ├── templates ├── hw.json ├── workflow-master.tmpl └── workflow-worker.tmpl └── workflow ├── 00-base └── Dockerfile ├── 01-wipe-disk ├── Dockerfile └── wipe.sh ├── 02-install-os ├── Dockerfile └── install-os.sh ├── 03-configure-os ├── Dockerfile ├── configure-os.sh └── configure-systemd.sh ├── 04-install-k8s ├── Dockerfile ├── install-k8s.sh └── setup-k8s.sh ├── 05-reboot ├── Dockerfile └── reboot.sh ├── README.md └── create-images.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerSolutions/tinkerbell-rpi4-workflow/HEAD/README.md -------------------------------------------------------------------------------- /img/tinkerbell-lab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerSolutions/tinkerbell-rpi4-workflow/HEAD/img/tinkerbell-lab.png -------------------------------------------------------------------------------- /templates/hw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerSolutions/tinkerbell-rpi4-workflow/HEAD/templates/hw.json -------------------------------------------------------------------------------- /templates/workflow-master.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerSolutions/tinkerbell-rpi4-workflow/HEAD/templates/workflow-master.tmpl -------------------------------------------------------------------------------- /templates/workflow-worker.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerSolutions/tinkerbell-rpi4-workflow/HEAD/templates/workflow-worker.tmpl -------------------------------------------------------------------------------- /workflow/00-base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerSolutions/tinkerbell-rpi4-workflow/HEAD/workflow/00-base/Dockerfile -------------------------------------------------------------------------------- /workflow/01-wipe-disk/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerSolutions/tinkerbell-rpi4-workflow/HEAD/workflow/01-wipe-disk/Dockerfile -------------------------------------------------------------------------------- /workflow/01-wipe-disk/wipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerSolutions/tinkerbell-rpi4-workflow/HEAD/workflow/01-wipe-disk/wipe.sh -------------------------------------------------------------------------------- /workflow/02-install-os/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerSolutions/tinkerbell-rpi4-workflow/HEAD/workflow/02-install-os/Dockerfile -------------------------------------------------------------------------------- /workflow/02-install-os/install-os.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerSolutions/tinkerbell-rpi4-workflow/HEAD/workflow/02-install-os/install-os.sh -------------------------------------------------------------------------------- /workflow/03-configure-os/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerSolutions/tinkerbell-rpi4-workflow/HEAD/workflow/03-configure-os/Dockerfile -------------------------------------------------------------------------------- /workflow/03-configure-os/configure-os.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerSolutions/tinkerbell-rpi4-workflow/HEAD/workflow/03-configure-os/configure-os.sh -------------------------------------------------------------------------------- /workflow/03-configure-os/configure-systemd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerSolutions/tinkerbell-rpi4-workflow/HEAD/workflow/03-configure-os/configure-systemd.sh -------------------------------------------------------------------------------- /workflow/04-install-k8s/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerSolutions/tinkerbell-rpi4-workflow/HEAD/workflow/04-install-k8s/Dockerfile -------------------------------------------------------------------------------- /workflow/04-install-k8s/install-k8s.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerSolutions/tinkerbell-rpi4-workflow/HEAD/workflow/04-install-k8s/install-k8s.sh -------------------------------------------------------------------------------- /workflow/04-install-k8s/setup-k8s.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerSolutions/tinkerbell-rpi4-workflow/HEAD/workflow/04-install-k8s/setup-k8s.sh -------------------------------------------------------------------------------- /workflow/05-reboot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerSolutions/tinkerbell-rpi4-workflow/HEAD/workflow/05-reboot/Dockerfile -------------------------------------------------------------------------------- /workflow/05-reboot/reboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerSolutions/tinkerbell-rpi4-workflow/HEAD/workflow/05-reboot/reboot.sh -------------------------------------------------------------------------------- /workflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerSolutions/tinkerbell-rpi4-workflow/HEAD/workflow/README.md -------------------------------------------------------------------------------- /workflow/create-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerSolutions/tinkerbell-rpi4-workflow/HEAD/workflow/create-images.sh --------------------------------------------------------------------------------