diff --git a/Makefile b/Makefile index e905d02..95ab66b 100644 --- a/Makefile +++ b/Makefile @@ -38,7 +38,7 @@ check-stow: .PHONY: pull-updates pull-updates: @echo "Pulling all recent updates" - @git pull + @git pull gitlab main @git submodule update --recursive --remote .PHONY: link diff --git a/nvim/.config/nvim b/nvim/.config/nvim index bed9726..94b2c40 160000 --- a/nvim/.config/nvim +++ b/nvim/.config/nvim @@ -1 +1 @@ -Subproject commit bed9726930939818c84457cf1ec08027d098c338 +Subproject commit 94b2c40db1bdeaa841964ca4b8efb73cb2806501 diff --git a/systemd/.config/systemd/user/cloudflared-k8s.service b/systemd/.config/systemd/user/cloudflared-k8s.service new file mode 100644 index 0000000..a9a87e3 --- /dev/null +++ b/systemd/.config/systemd/user/cloudflared-k8s.service @@ -0,0 +1,17 @@ +# If this is being put on a new machine or OS install ensure you do the following: +# systemctl --user daemon-reload +# systemctl --user enable --now cloudflared-k8s.service +# systemctl --user status cloudflared-k8s.service + +[Unit] +Description=Cloudflare Tunnel to K8s API +After=network-online.target + +[Service] +ExecStart=/usr/bin/cloudflared access tcp --hostname k8s.samoneal.io --url localhost:6443 +Restart=on-failure +RestartSec=5 + +[Install] +WantedBy=default.target +