Auto-update containers : test on frigate
This commit is contained in:
@@ -311,7 +311,7 @@ disks_selection() {
|
|||||||
echo -e "\n\n ⚠️ One boot disk selected, continuing with striped boot disk configuration."
|
echo -e "\n\n ⚠️ One boot disk selected, continuing with striped boot disk configuration."
|
||||||
echo -e "Consider using 2 boot disks instead to get data protection features on the boot disks."
|
echo -e "Consider using 2 boot disks instead to get data protection features on the boot disks."
|
||||||
export BOOT_DISK_1_ID="${BOOT_DISKS_ID[0]}"
|
export BOOT_DISK_1_ID="${BOOT_DISKS_ID[0]}"
|
||||||
export BOOT_DISK_1_NAME="${DISK_NAME[0]}"
|
export BOOT_DISK_1_NAME="${BOOT_DISKS_NAME[0]}"
|
||||||
elif [[ "${#BOOT_DISKS_ID[@]}" -eq 2 ]]; then
|
elif [[ "${#BOOT_DISKS_ID[@]}" -eq 2 ]]; then
|
||||||
echo -e "\n\n ✅ Two boot disks selected, continuing with mirrored boot disks configuration."
|
echo -e "\n\n ✅ Two boot disks selected, continuing with mirrored boot disks configuration."
|
||||||
echo -e "\n\n ⚠️ If the two disks are different sizes, the resulting usable space size will be \
|
echo -e "\n\n ⚠️ If the two disks are different sizes, the resulting usable space size will be \
|
||||||
|
|||||||
@@ -53,27 +53,45 @@ in
|
|||||||
external: true
|
external: true
|
||||||
'';
|
'';
|
||||||
|
|
||||||
systemd.services.${container_name} = {
|
systemd.services."${container_name}" = {
|
||||||
description = "Podman container : ${container_name}";
|
description = "Podman container : ${container_name}";
|
||||||
after = [ "network.target" ];
|
after = [ "network.target" ];
|
||||||
requires = [ "traefik.service" "home-assistant.service" ];
|
requires = [ "traefik.service" "home-assistant.service" ];
|
||||||
wantedBy = [ "multi-user.target" ];
|
wantedBy = [ "multi-user.target" ];
|
||||||
path = [ pkgs.podman ];
|
path = [ pkgs.podman pkgs.coreutils ];
|
||||||
|
|
||||||
serviceConfig = {
|
serviceConfig = {
|
||||||
User = "numbus-admin";
|
User = "numbus-admin";
|
||||||
Environment = [ "XDG_RUNTIME_DIR=/run/user/1000" ];
|
Environment = [ "XDG_RUNTIME_DIR=/run/user/1000" ];
|
||||||
Type = "exec";
|
Type = "exec";
|
||||||
# Pull the latest image before running
|
ExecStartPre = [
|
||||||
ExecStartPre = "${pkgs.podman-compose}/bin/podman-compose -f /etc/${compose_file} pull";
|
"${pkgs.coreutils}/bin/sleep 180"
|
||||||
# Bring the service up
|
"-${pkgs.podman-compose}/bin/podman-compose -f /etc/${compose_file} pull"
|
||||||
|
];
|
||||||
ExecStart = "${pkgs.podman-compose}/bin/podman-compose -f /etc/${compose_file} up --remove-orphans";
|
ExecStart = "${pkgs.podman-compose}/bin/podman-compose -f /etc/${compose_file} up --remove-orphans";
|
||||||
# Take it down gracefully
|
|
||||||
ExecStop = "${pkgs.podman-compose}/bin/podman-compose -f /etc/${compose_file} down";
|
ExecStop = "${pkgs.podman-compose}/bin/podman-compose -f /etc/${compose_file} down";
|
||||||
Restart = "on-failure";
|
Restart = "on-failure";
|
||||||
RestartSec = "5m";
|
RestartSec = "5m";
|
||||||
StartLimitBurst = "3";
|
StartLimitBurst = "3";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
systemd.services."update-${container_name}" = {
|
||||||
|
description = "Update ${container_name} container";
|
||||||
|
serviceConfig = {
|
||||||
|
Type = "oneshot";
|
||||||
|
ExecStart = "${pkgs.systemd}/bin/systemctl restart ${container_name}.service";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd.timers."update-${container_name}" = {
|
||||||
|
timerConfig = {
|
||||||
|
OnCalendar = "daily";
|
||||||
|
OnCalendar = "02:00";
|
||||||
|
RandomizedDelaySec = "60m";
|
||||||
|
Unit = "update-${container_name}.service";
|
||||||
|
};
|
||||||
|
wantedBy = [ "timers.target" ];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user