Files
ignition/install-kubelet.service
Dustin C. Hatch 9dc46e2eff Initial commit
The first host running Fedora CoreOS (FCOS) is
*k8s-aarch64-n0.pyrocufflink.blue*.  This is a Raspberry Pi 4 that is a
specialized member of the Kubernetes cluster.  It hosts the Zigbee2MQTT
and ZWaveJS2MQTT containers, and has the Zigbee and ZWave controller USB
devices attached.
2023-07-17 15:16:01 -05:00

20 lines
412 B
Desktop File

# vim: set ft=systemd :
[Unit]
Description=Install Kubernetes/Kubelet
After=network-online.target
Wants=network-online.target
Before=zincati.service
ConditionPathExists=!/usr/bin/kubectl
[Service]
Type=oneshot
RemainAfterExit=yes
ExecStart=/usr/bin/rpm-ostree install --apply-live --allow-inactive \
cri-o \
iscsi-initiator-utils \
kubernetes-node \
kubernetes-kubeadm
[Install]
WantedBy=multi-user.target