From 0f426fb43601bab0191b378800afe0a52ea623a5 Mon Sep 17 00:00:00 2001 From: albert Date: Wed, 18 Dec 2024 20:00:23 +0100 Subject: [PATCH] Update IP addresses from 13 to 5 for gotify, loki, and workflows --- .forgejo/workflows/cron/auto-deploy-rs.yml | 2 +- .forgejo/workflows/cron/update-flake-lock.yml | 2 +- .forgejo/workflows/cron/update-steamdeck.yml | 2 +- .forgejo/workflows/dispatch/manual-deploy-rs.yml | 2 +- .forgejo/workflows/dispatch/update-flake-lock.yml | 2 +- .forgejo/workflows/dispatch/update-steamdeck.yml | 2 +- nixos/common/services/tailscale.nix | 4 ++-- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.forgejo/workflows/cron/auto-deploy-rs.yml b/.forgejo/workflows/cron/auto-deploy-rs.yml index 3f0a402f..1eff8422 100644 --- a/.forgejo/workflows/cron/auto-deploy-rs.yml +++ b/.forgejo/workflows/cron/auto-deploy-rs.yml @@ -21,7 +21,7 @@ jobs: apt install git nodejs nix-bin sudo curl -y git config --global user.email ${{github.actor}} git config --global user.name "Forgejo Runner" - echo "100.64.0.13 gotify.sysctl.io" >> /etc/hosts + echo "100.64.0.5 gotify.sysctl.io" >> /etc/hosts - name: "Setup: Tailscale Repo" run: | diff --git a/.forgejo/workflows/cron/update-flake-lock.yml b/.forgejo/workflows/cron/update-flake-lock.yml index bc65221a..6bb4d936 100644 --- a/.forgejo/workflows/cron/update-flake-lock.yml +++ b/.forgejo/workflows/cron/update-flake-lock.yml @@ -19,7 +19,7 @@ jobs: apt install git nodejs nix-bin sudo curl -y git config --global user.email "${{github.actor}}" git config --global user.name "Forgejo Runner" - echo "100.64.0.13 gotify.sysctl.io" >> /etc/hosts + echo "100.64.0.5 gotify.sysctl.io" >> /etc/hosts - name: "Setup: Tailscale Repo" run: | diff --git a/.forgejo/workflows/cron/update-steamdeck.yml b/.forgejo/workflows/cron/update-steamdeck.yml index 71ca5555..176a1d0b 100644 --- a/.forgejo/workflows/cron/update-steamdeck.yml +++ b/.forgejo/workflows/cron/update-steamdeck.yml @@ -20,7 +20,7 @@ jobs: apt install git nodejs nix-bin sudo sudo curl -y git config user.email "${{github.actor}}" git config user.name "Forgejo Runner" - echo "100.64.0.13 gotify.sysctl.io" >> /etc/hosts + echo "100.64.0.5 gotify.sysctl.io" >> /etc/hosts - name: "Setup: Tailscale Repo" run: | diff --git a/.forgejo/workflows/dispatch/manual-deploy-rs.yml b/.forgejo/workflows/dispatch/manual-deploy-rs.yml index e2a8a47e..9f50d879 100644 --- a/.forgejo/workflows/dispatch/manual-deploy-rs.yml +++ b/.forgejo/workflows/dispatch/manual-deploy-rs.yml @@ -20,7 +20,7 @@ jobs: apt install git nodejs nix-bin sudo curl -y git config --global user.email ${{github.actor}} git config --global user.name "Forgejo Runner" - echo "100.64.0.13 gotify.sysctl.io" >> /etc/hosts + echo "100.64.0.5 gotify.sysctl.io" >> /etc/hosts - name: "Setup: Tailscale Repo" run: | diff --git a/.forgejo/workflows/dispatch/update-flake-lock.yml b/.forgejo/workflows/dispatch/update-flake-lock.yml index c72091c8..a73155d9 100644 --- a/.forgejo/workflows/dispatch/update-flake-lock.yml +++ b/.forgejo/workflows/dispatch/update-flake-lock.yml @@ -20,7 +20,7 @@ jobs: apt install git nodejs nix-bin sudo curl -y git config --global user.email "${{github.actor}}" git config --global user.name "Forgejo Runner" - echo "100.64.0.13 gotify.sysctl.io" >> /etc/hosts + echo "100.64.0.5 gotify.sysctl.io" >> /etc/hosts - name: "Setup: Tailscale Repo" run: | diff --git a/.forgejo/workflows/dispatch/update-steamdeck.yml b/.forgejo/workflows/dispatch/update-steamdeck.yml index 43a344e1..7165d49e 100644 --- a/.forgejo/workflows/dispatch/update-steamdeck.yml +++ b/.forgejo/workflows/dispatch/update-steamdeck.yml @@ -20,7 +20,7 @@ jobs: apt install git nodejs nix-bin sudo sudo curl -y git config --global user.email "${{github.actor}}" git config --global user.name "Forgejo Runner" - echo "100.64.0.13 gotify.sysctl.io" >> /etc/hosts + echo "100.64.0.5 gotify.sysctl.io" >> /etc/hosts - name: "Setup: Tailscale Repo" run: | diff --git a/nixos/common/services/tailscale.nix b/nixos/common/services/tailscale.nix index 963e84b9..30a09065 100644 --- a/nixos/common/services/tailscale.nix +++ b/nixos/common/services/tailscale.nix @@ -25,7 +25,7 @@ # TODO: Update these when I move the server to warsaw-ovh-01 networking.extraHosts = '' - 100.64.0.13 influx.sysctl.io - 100.64.0.13 loki.sysctl.io + 100.64.0.5 influx.sysctl.io + 100.64.0.5 loki.sysctl.io ''; }