From 1431768596be743f35c108ce248e753c565132da Mon Sep 17 00:00:00 2001 From: Vuong Hoang Date: Mon, 20 Apr 2026 23:01:48 -0700 Subject: [PATCH] scripts: refresh-proxmox-info.sh wrapper for PVE snapshots MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Parallel to refresh-server-info.sh but pipes proxmox_inspect.sh and writes to servers//proxmox-details.txt. Same discovery / ssh-target / validate-only / dry-run behavior. Fleet-wide `all` matches dir names containing `-pve` (covers *-pve and *-pve-* so esh-pve-nas is included alongside pfi-pve / nh3-pve / esh-pve). Explicit names are never filtered — useful for one-off PVE hosts with non-matching names. Validation checks the captured snapshot for: truncation, missing PVE version line, non-Proxmox target, and surfaces backup-coverage "NO" verdict counts so gaps show up in the validate-only output. Initial fleet snapshot refreshed. --- README.md | 6 + scripts/refresh-proxmox-info.sh | 256 ++++++++++++++++++++++++ servers/esh-pve-nas/proxmox-details.txt | 54 +++-- servers/esh-pve/proxmox-details.txt | 40 ++-- servers/nh3-pve/proxmox-details.txt | 30 +-- servers/pfi-pve/proxmox-details.txt | 82 ++++---- 6 files changed, 364 insertions(+), 104 deletions(-) create mode 100755 scripts/refresh-proxmox-info.sh diff --git a/README.md b/README.md index 57c5519..16ec228 100644 --- a/README.md +++ b/README.md @@ -37,6 +37,7 @@ Per-host snapshots of the running system live under `servers//system-detai │ ├── server_inspect.sh # read-only diagnostic, runs on remote via stdin │ ├── proxmox_inspect.sh # Proxmox-aware probe (VMs, LXCs, storage, backup coverage) │ ├── refresh-server-info.sh # pull fresh system-details.txt for one/all hosts +│ ├── refresh-proxmox-info.sh # pull fresh proxmox-details.txt for one/all PVE nodes │ ├── add-host.sh # register a new server (writes servers//ssh-target) │ ├── sync-stacks.sh # pull /opt/docker/{compose,conf}/ → stacks-mirror/ │ └── deploy-stack.sh # push stacks-mirror/// with diff + prompt @@ -96,6 +97,11 @@ scripts/refresh-server-info.sh ana-docker scripts/refresh-server-info.sh all ``` +**Refresh all Proxmox nodes (separate flow — captures VM/LXC/backup-coverage):** +```bash +scripts/refresh-proxmox-info.sh all +``` + **Add a new host:** ```bash scripts/add-host.sh diff --git a/scripts/refresh-proxmox-info.sh b/scripts/refresh-proxmox-info.sh new file mode 100755 index 0000000..184bb81 --- /dev/null +++ b/scripts/refresh-proxmox-info.sh @@ -0,0 +1,256 @@ +#!/usr/bin/env bash +# refresh-proxmox-info.sh — pull a fresh proxmox-details.txt from PVE nodes. +# +# Companion to refresh-server-info.sh. Same discovery pattern (hosts under +# servers/*/, ssh-target fallback), but pipes scripts/proxmox_inspect.sh +# over SSH and writes to servers//proxmox-details.txt. +# +# Host selection: +# - `all` expands to every servers/*/ dir name matching `*-pve` or whose +# existing proxmox-details.txt suggests it's a PVE node. Use the name +# explicitly to target a PVE host that doesn't match the pattern. +# - Explicit names are never filtered — they're trusted. +# +# For each host: +# 1. Run scripts/proxmox_inspect.sh on the remote via `ssh 'bash -s'`. +# 2. Write output atomically to servers//proxmox-details.txt. +# A failed SSH/run never clobbers the previous good snapshot. +# +# Exit status is non-zero if any host failed. +# +# Usage: +# scripts/refresh-proxmox-info.sh show this help +# scripts/refresh-proxmox-info.sh all refresh every PVE host +# scripts/refresh-proxmox-info.sh pfi-pve refresh one host +# scripts/refresh-proxmox-info.sh pfi-pve nh3-pve refresh several +# scripts/refresh-proxmox-info.sh --dry-run all preview, no ssh +# scripts/refresh-proxmox-info.sh --validate-only all checks only +# +# Validation surfaces problems in the captured snapshot — missing `===== +# DONE =====` trailer, absent `pveversion` output (wrong script pointed at +# a non-PVE host), empty guest list when /etc/pve/jobs.cfg mentions vmids +# (backup job targeting retired VMs), etc. + +set -euo pipefail + +SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" +REPO_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)" +INSPECT="$SCRIPT_DIR/proxmox_inspect.sh" +SERVERS_DIR="$REPO_ROOT/servers" + +if [ ! -f "$INSPECT" ]; then + echo "error: $INSPECT not found" >&2 + exit 2 +fi + +DRY_RUN=0 +VALIDATE_ONLY=0 +REQUESTED=() +for arg in "$@"; do + case "$arg" in + --dry-run) DRY_RUN=1 ;; + --validate-only|--validate) VALIDATE_ONLY=1 ;; + -h|--help) + sed -n '2,32p' "$0" + exit 0 + ;; + -*) echo "error: unknown flag $arg" >&2; exit 2 ;; + *) REQUESTED+=("$arg") ;; + esac +done + +discover_proxmox_hosts() { + # Default discovery: match names containing `-pve` either at the end + # (e.g. pfi-pve, nh3-pve, esh-pve) or as a segment (e.g. esh-pve-nas). + # Hosts with other naming that happen to be PVE should be called by + # name; they're outside the fleet-wide `all` sweep. + find "$SERVERS_DIR" -mindepth 1 -maxdepth 1 -type d -printf '%f\n' \ + | awk '/-pve(-|$)/' | sort +} + +# No positional args → show help. Fleet-wide runs must be explicit. +if [ "${#REQUESTED[@]}" -eq 0 ]; then + sed -n '2,32p' "$0" + exit 0 +fi + +if [ "${#REQUESTED[@]}" -eq 1 ] && [ "${REQUESTED[0]}" = "all" ]; then + mapfile -t HOSTS < <(discover_proxmox_hosts) +else + for r in "${REQUESTED[@]}"; do + if [ "$r" = "all" ]; then + echo "error: 'all' must be the only argument when used" >&2 + exit 2 + fi + done + HOSTS=("${REQUESTED[@]}") +fi + +if [ "${#HOSTS[@]}" -eq 0 ]; then + echo "error: no PVE hosts found (expected servers/*-pve/ dirs under $SERVERS_DIR)" >&2 + exit 2 +fi + +resolve_target() { + # Identical logic to refresh-server-info.sh: ssh-target file wins when + # present, then ssh_config + /etc/hosts, finally the dir name as-is. + # Proxmox hosts in this fleet typically use `root@` via key auth. + local host="$1" + local fallback="$SERVERS_DIR/$host/ssh-target" + if [ -f "$fallback" ]; then + local target + target=$(awk 'NF{print $1; exit}' "$fallback") + if [ -n "$target" ]; then echo "$target"; return; fi + fi + local effective + effective=$(ssh -G "$host" 2>/dev/null | awk '/^hostname /{print $2; exit}') + if [ -n "$effective" ] && getent hosts "$effective" >/dev/null 2>&1; then + echo "$host" + return + fi + echo "$host" +} + +validate_host() { + local host="$1" + local dir="$SERVERS_DIR/$host" + + if [ ! -d "$dir" ]; then + printf '%s\n' "dir missing: $dir" + return + fi + if [ ! -r "$dir" ] || [ ! -x "$dir" ]; then + printf '%s\n' "dir not readable/searchable (check permissions)" + return + fi + + local stf="$dir/ssh-target" + if [ -e "$stf" ]; then + if [ ! -f "$stf" ]; then + printf '%s\n' "ssh-target is not a regular file" + elif [ ! -r "$stf" ]; then + printf '%s\n' "ssh-target not readable" + elif [ ! -s "$stf" ]; then + printf '%s\n' "ssh-target is empty" + else + local t + t=$(awk 'NF{print $1; exit}' "$stf" 2>/dev/null || true) + if [ -z "$t" ]; then + printf '%s\n' "ssh-target has no non-blank content" + elif [[ "$t" =~ [[:space:]] ]]; then + printf '%s\n' "ssh-target first token contains whitespace ('$t')" + fi + fi + fi + + local effective="" + effective=$(ssh -G "$host" 2>/dev/null | awk '/^hostname /{print $2; exit}') + local resolves=0 + if [ -n "$effective" ] && getent hosts "$effective" >/dev/null 2>&1; then + resolves=1 + fi + if [ "$resolves" -eq 0 ] && [ ! -s "$stf" ]; then + printf '%s\n' "name '$host' does not resolve and no ssh-target fallback present" + fi + + [ -f "$dir/README.md" ] || printf '%s\n' "README.md missing" + if [ ! -f "$dir/proxmox-details.txt" ]; then + printf '%s\n' "proxmox-details.txt missing (never refreshed)" + else + validate_snapshot "$dir/proxmox-details.txt" + fi +} + +validate_snapshot() { + local file="$1" + if ! grep -q '^===== DONE =====' "$file"; then + printf '%s\n' "snapshot appears truncated (missing trailing '===== DONE =====' marker)" + fi + if ! grep -q '^PVE:' "$file"; then + printf '%s\n' "PVE version line missing — snapshot may have been captured against a non-PVE host" + fi + if grep -q 'pveversion not found' "$file"; then + printf '%s\n' "remote reports pveversion not found — target is not a Proxmox node" + fi + # Backup coverage sanity: flag any VERDICT=NO lines so gaps surface. + if grep -qE '^\s*[0-9]+\s+NO\s' "$file"; then + local n + n=$(grep -cE '^\s*[0-9]+\s+NO\s' "$file") + printf '%s\n' "backup coverage: $n guest(s) marked NO — review 'per-guest coverage' section" + fi +} + +print_warnings() { + local indent="$1"; shift + local w + for w in "$@"; do + printf '%s! %s\n' "$indent" "$w" + done +} + +pad=0 +for h in "${HOSTS[@]}"; do (( ${#h} > pad )) && pad=${#h}; done + +if [ "$VALIDATE_ONLY" -eq 1 ]; then + printf 'Validating %d PVE host(s):\n' "${#HOSTS[@]}" + total_warn=0 + for host in "${HOSTS[@]}"; do + mapfile -t warnings < <(validate_host "$host") + if [ "${#warnings[@]}" -eq 0 ]; then + printf ' %-*s ok\n' "$pad" "$host" + else + printf ' %-*s %d warning(s)\n' "$pad" "$host" "${#warnings[@]}" + print_warnings " " "${warnings[@]}" + total_warn=$((total_warn + ${#warnings[@]})) + fi + done + if [ "$total_warn" -gt 0 ]; then exit 1; fi + exit 0 +fi + +printf 'Refreshing %d PVE host(s):\n' "${#HOSTS[@]}" +failed=() +for host in "${HOSTS[@]}"; do + out="$SERVERS_DIR/$host/proxmox-details.txt" + tmp="$out.new" + + mapfile -t warnings < <(validate_host "$host") + + target=$(resolve_target "$host") + if [ "$target" = "$host" ]; then + label="$host" + else + label="$host → $target" + fi + + printf ' %-*s ' "$pad" "$label" + + if [ "$DRY_RUN" -eq 1 ]; then + printf 'would run: ssh %s bash -s < %s > %s\n' "$target" "$INSPECT" "$out" + [ "${#warnings[@]}" -gt 0 ] && print_warnings " " "${warnings[@]}" + continue + fi + + mkdir -p "$SERVERS_DIR/$host" + + if ssh -o BatchMode=yes -o ConnectTimeout=10 "$target" 'bash -s' < "$INSPECT" > "$tmp" 2> "$tmp.err"; then + mv "$tmp" "$out" + rm -f "$tmp.err" + bytes=$(wc -c < "$out") + printf 'ok (%s bytes)\n' "$bytes" + else + rc=$? + rm -f "$tmp" + err=$(head -n 1 "$tmp.err" 2>/dev/null || true) + rm -f "$tmp.err" + printf 'FAIL (rc=%d) %s\n' "$rc" "$err" + failed+=("$host") + fi + + [ "${#warnings[@]}" -gt 0 ] && print_warnings " " "${warnings[@]}" +done + +if [ "${#failed[@]}" -gt 0 ]; then + printf '\n%d host(s) failed: %s\n' "${#failed[@]}" "${failed[*]}" >&2 + exit 1 +fi diff --git a/servers/esh-pve-nas/proxmox-details.txt b/servers/esh-pve-nas/proxmox-details.txt index a5631fd..c303e00 100644 --- a/servers/esh-pve-nas/proxmox-details.txt +++ b/servers/esh-pve-nas/proxmox-details.txt @@ -2,8 +2,8 @@ ===== HOST ===== Hostname: esh-nas-pve.esteban.net -Date: 2026-04-20T22:12:59-07:00 -Uptime: up 3 weeks, 6 hours, 4 minutes +Date: 2026-04-20T23:00:38-07:00 +Uptime: up 3 weeks, 6 hours, 51 minutes PVE: pve-manager/8.4.11/14a32011146091ed (running kernel: 6.8.12-13-pve) Kernel: 6.8.12-13-pve Arch: x86_64 @@ -13,7 +13,7 @@ Arch: x86_64 CPU model: Intel(R) Xeon(R) W-1250 CPU @ 3.30GHz CPU cores: 12 MemTotal: 125.6 GB -MemAvail: 56.4 GB +MemAvail: 56.3 GB ===== CLUSTER ===== @@ -26,7 +26,7 @@ Secure auth: on Quorum information ------------------ -Date: Mon Apr 20 22:13:01 2026 +Date: Mon Apr 20 23:00:39 2026 Quorum provider: corosync_votequorum Nodes: 2 Node ID: 0x00000002 @@ -52,27 +52,25 @@ Membership information ┌───────────────────────────────────┬─────────┬─────────────┬───────────────────────────────────────────┬───────┬────────────┬────────────┬────────────┬─────────┬───────┬────────┬────────┬────────────┬────────────┬────────────┬────────────────────┬────────────┬────────────┬─────────────┬────────────┬──────┬───────────┬───────────────┬──────┬──────────┬────────────┬──────┐ │ id │ type │ cgroup-mode │ content │ cpu │ disk │ diskread │ diskwrite │ hastate │ level │ lock │ maxcpu │ maxdisk │ maxmem │ mem │ name │ netin │ netout │ node │ plugintype │ pool │ status │ storage │ tags │ template │ uptime │ vmid │ ╞═══════════════════════════════════╪═════════╪═════════════╪═══════════════════════════════════════════╪═══════╪════════════╪════════════╪════════════╪═════════╪═══════╪════════╪════════╪════════════╪════════════╪════════════╪════════════════════╪════════════╪════════════╪═════════════╪════════════╪══════╪═══════════╪═══════════════╪══════╪══════════╪════════════╪══════╡ -│ lxc/103 │ lxc │ │ │ 0.00% │ 807.25 MiB │ 541.36 MiB │ 20.00 KiB │ │ │ │ 2 │ 128.00 GiB │ 2.00 GiB │ 40.48 MiB │ esh-nas │ 2.25 TiB │ 103.24 GiB │ esh-nas-pve │ │ │ running │ │ │ 0 │ 3w 5h │ 103 │ +│ lxc/103 │ lxc │ │ │ 0.01% │ 807.25 MiB │ 541.36 MiB │ 20.00 KiB │ │ │ │ 2 │ 128.00 GiB │ 2.00 GiB │ 40.59 MiB │ esh-nas │ 2.25 TiB │ 103.24 GiB │ esh-nas-pve │ │ │ running │ │ │ 0 │ 3w 6h │ 103 │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ -│ lxc/105 │ lxc │ │ │ 0.01% │ 7.83 GiB │ 596.34 GiB │ 8.00 KiB │ │ │ │ 4 │ 128.00 GiB │ 2.00 GiB │ 305.41 MiB │ vm-plex │ 7.11 GiB │ 256.77 GiB │ esh-nas-pve │ │ │ running │ │ │ 0 │ 3w 5h │ 105 │ +│ lxc/105 │ lxc │ │ │ 0.01% │ 7.83 GiB │ 596.34 GiB │ 8.00 KiB │ │ │ │ 4 │ 128.00 GiB │ 2.00 GiB │ 305.45 MiB │ vm-plex │ 7.12 GiB │ 256.77 GiB │ esh-nas-pve │ │ │ running │ │ │ 0 │ 3w 6h │ 105 │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ -│ lxc/106 │ lxc │ │ │ 0.00% │ 1.07 GiB │ 42.88 GiB │ 16.00 KiB │ │ │ │ 4 │ 80.00 GiB │ 2.00 GiB │ 20.52 MiB │ esh-filebot │ 841.20 GiB │ 16.81 GiB │ esh-nas-pve │ │ │ running │ │ │ 0 │ 3w 5h │ 106 │ +│ lxc/106 │ lxc │ │ │ 0.00% │ 1.07 GiB │ 42.88 GiB │ 16.00 KiB │ │ │ │ 4 │ 80.00 GiB │ 2.00 GiB │ 20.52 MiB │ esh-filebot │ 841.20 GiB │ 16.81 GiB │ esh-nas-pve │ │ │ running │ │ │ 0 │ 3w 6h │ 106 │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ -│ lxc/107 │ lxc │ │ │ 0.00% │ 7.94 GiB │ 5.88 GiB │ 0.00 B │ │ │ │ 4 │ 40.00 GiB │ 4.00 GiB │ 236.97 MiB │ vm-jellyfin │ 6.18 GiB │ 23.32 MiB │ esh-nas-pve │ │ │ running │ │ │ 0 │ 3w 5h │ 107 │ +│ lxc/107 │ lxc │ │ │ 0.00% │ 7.91 GiB │ 5.88 GiB │ 0.00 B │ │ │ │ 4 │ 40.00 GiB │ 4.00 GiB │ 234.94 MiB │ vm-jellyfin │ 6.18 GiB │ 23.70 MiB │ esh-nas-pve │ │ │ running │ │ │ 0 │ 3w 6h │ 107 │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ -│ node/esh-nas-pve │ node │ 2 │ │ 0.44% │ 4.81 GiB │ │ │ │ │ │ 12 │ 5.86 GiB │ 125.65 GiB │ 69.22 GiB │ │ │ │ esh-nas-pve │ │ │ online │ │ │ │ 3w 6h │ │ +│ node/esh-nas-pve │ node │ 2 │ │ 0.35% │ 4.81 GiB │ │ │ │ │ │ 12 │ 5.86 GiB │ 125.65 GiB │ 69.30 GiB │ │ │ │ esh-nas-pve │ │ │ online │ │ │ │ 3w 6h │ │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ -│ node/pve │ node │ 2 │ │ 3.52% │ 17.86 GiB │ │ │ │ p │ │ 20 │ 93.93 GiB │ 62.53 GiB │ 32.52 GiB │ │ │ │ pve │ │ │ online │ │ │ │ 3w 5h │ │ +│ node/pve │ node │ 2 │ │ 3.73% │ 17.86 GiB │ │ │ │ p │ │ 20 │ 93.93 GiB │ 62.53 GiB │ 32.87 GiB │ │ │ │ pve │ │ │ online │ │ │ │ 3w 6h │ │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ -│ qemu/100 │ qemu │ │ │ 0.37% │ 0.00 B │ 44.07 GiB │ 186.60 GiB │ │ │ │ 16 │ 256.00 GiB │ 16.00 GiB │ 9.10 GiB │ esh-vm-docker │ 33.91 GiB │ 53.17 GiB │ pve │ │ │ running │ │ │ 0 │ 3w 5h │ 100 │ +│ qemu/100 │ qemu │ │ │ 0.61% │ 0.00 B │ 44.12 GiB │ 187.32 GiB │ │ │ │ 16 │ 256.00 GiB │ 16.00 GiB │ 9.59 GiB │ esh-vm-docker │ 34.10 GiB │ 53.19 GiB │ pve │ │ │ running │ │ │ 0 │ 3w 6h │ 100 │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ -│ qemu/101 │ qemu │ │ │ 0.06% │ 0.00 B │ 384.36 MiB │ 20.09 GiB │ │ │ │ 16 │ 256.00 GiB │ 8.00 GiB │ 1.85 GiB │ esh-vm-db │ 1.53 GiB │ 4.81 GiB │ pve │ │ │ running │ │ │ 0 │ 2w 6d 23h │ 101 │ +│ qemu/101 │ qemu │ │ │ 0.06% │ 0.00 B │ 384.36 MiB │ 20.12 GiB │ │ │ │ 16 │ 256.00 GiB │ 8.00 GiB │ 1.85 GiB │ esh-vm-db │ 1.53 GiB │ 4.81 GiB │ pve │ │ │ running │ │ │ 0 │ 3w │ 101 │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ -│ qemu/102 │ qemu │ │ │ 0.01% │ 0.00 B │ 0.00 B │ 0.00 B │ │ │ backup │ 16 │ 256.00 GiB │ 16.00 GiB │ 14.48 GiB │ esh-vm-workstation │ 327.00 B │ 0.00 B │ pve │ │ │ prelaunch │ │ │ 0 │ 6d 19h 51m │ 102 │ +│ qemu/102 │ qemu │ │ │ 0.01% │ 0.00 B │ 0.00 B │ 0.00 B │ │ │ backup │ 16 │ 256.00 GiB │ 16.00 GiB │ 14.48 GiB │ esh-vm-workstation │ 327.00 B │ 0.00 B │ pve │ │ │ prelaunch │ │ │ 0 │ 6d 20h 38m │ 102 │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ -│ qemu/104 │ qemu │ │ │ 0.42% │ 0.00 B │ 864.28 MiB │ 2.30 GiB │ │ │ │ 4 │ 128.00 GiB │ 4.00 GiB │ 1.74 GiB │ vm-esh-nas │ 6.45 GiB │ 1.40 GiB │ esh-nas-pve │ │ │ running │ │ │ 0 │ 3w 5h │ 104 │ -├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ -│ qemu/108 │ qemu │ │ │ 0.00% │ 0.00 B │ 0.00 B │ 0.00 B │ │ │ │ 4 │ 32.00 GiB │ 4.00 GiB │ 0.00 B │ pve-backup │ 0.00 B │ 0.00 B │ pve │ │ │ stopped │ │ │ 0 │ 0s │ 108 │ +│ qemu/104 │ qemu │ │ │ 0.40% │ 0.00 B │ 865.90 MiB │ 2.32 GiB │ │ │ │ 4 │ 128.00 GiB │ 4.00 GiB │ 1.74 GiB │ vm-esh-nas │ 6.45 GiB │ 1.40 GiB │ esh-nas-pve │ │ │ running │ │ │ 0 │ 3w 6h │ 104 │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ │ sdn/esh-nas-pve/localnetwork │ sdn │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ esh-nas-pve │ │ │ ok │ │ │ │ │ │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ @@ -80,23 +78,23 @@ Membership information ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ │ storage/esh-nas-pve/iso │ storage │ │ iso,vztmpl │ │ 4.53 GiB │ │ │ │ │ │ │ 1.43 TiB │ │ │ │ │ │ esh-nas-pve │ dir │ │ available │ iso │ │ │ │ │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ -│ storage/esh-nas-pve/local │ storage │ │ vztmpl,backup,iso │ │ 4.81 GiB │ │ │ │ │ │ │ 5.86 GiB │ │ │ │ │ │ esh-nas-pve │ dir │ │ available │ local │ │ │ │ │ +│ storage/esh-nas-pve/local │ storage │ │ backup,iso,vztmpl │ │ 4.81 GiB │ │ │ │ │ │ │ 5.86 GiB │ │ │ │ │ │ esh-nas-pve │ dir │ │ available │ local │ │ │ │ │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ │ storage/esh-nas-pve/nas-tank-vmbu │ storage │ │ backup │ │ 1.38 TiB │ │ │ │ │ │ │ 92.98 TiB │ │ │ │ │ │ esh-nas-pve │ dir │ │ available │ nas-tank-vmbu │ │ │ │ │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ -│ storage/esh-nas-pve/nvme │ storage │ │ images,rootdir │ │ 29.64 GiB │ │ │ │ │ │ │ 899.25 GiB │ │ │ │ │ │ esh-nas-pve │ zfspool │ │ available │ nvme │ │ │ │ │ +│ storage/esh-nas-pve/nvme │ storage │ │ rootdir,images │ │ 29.61 GiB │ │ │ │ │ │ │ 899.25 GiB │ │ │ │ │ │ esh-nas-pve │ zfspool │ │ available │ nvme │ │ │ │ │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ -│ storage/esh-nas-pve/ssd │ storage │ │ images,rootdir │ │ 262.55 GiB │ │ │ │ │ │ │ 1.68 TiB │ │ │ │ │ │ esh-nas-pve │ zfspool │ │ available │ ssd │ │ │ │ │ +│ storage/esh-nas-pve/ssd │ storage │ │ rootdir,images │ │ 262.55 GiB │ │ │ │ │ │ │ 1.68 TiB │ │ │ │ │ │ esh-nas-pve │ zfspool │ │ available │ ssd │ │ │ │ │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ │ storage/esh-nas-pve/tank │ storage │ │ images,rootdir │ │ 24.58 TiB │ │ │ │ │ │ │ 116.18 TiB │ │ │ │ │ │ esh-nas-pve │ zfspool │ │ available │ tank │ │ │ │ │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ │ storage/esh-nas-pve/tank-vmbu │ storage │ │ backup │ │ 1.38 TiB │ │ │ │ │ │ │ 92.98 TiB │ │ │ │ │ │ esh-nas-pve │ nfs │ │ available │ tank-vmbu │ │ │ │ │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ -│ storage/pve/esh-nas │ storage │ │ images,rootdir,snippets,iso,backup,vztmpl │ │ 2.70 GiB │ │ │ │ │ │ │ 91.60 TiB │ │ │ │ │ │ pve │ nfs │ │ available │ esh-nas │ │ │ │ │ +│ storage/pve/esh-nas │ storage │ │ snippets,iso,vztmpl,backup,rootdir,images │ │ 2.70 GiB │ │ │ │ │ │ │ 91.60 TiB │ │ │ │ │ │ pve │ nfs │ │ available │ esh-nas │ │ │ │ │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ -│ storage/pve/local │ storage │ │ vztmpl,backup,iso │ │ 17.86 GiB │ │ │ │ │ │ │ 93.93 GiB │ │ │ │ │ │ pve │ dir │ │ available │ local │ │ │ │ │ +│ storage/pve/local │ storage │ │ backup,iso,vztmpl │ │ 17.86 GiB │ │ │ │ │ │ │ 93.93 GiB │ │ │ │ │ │ pve │ dir │ │ available │ local │ │ │ │ │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ -│ storage/pve/local-lvm │ storage │ │ images,rootdir │ │ 299.45 GiB │ │ │ │ │ │ │ 794.30 GiB │ │ │ │ │ │ pve │ lvmthin │ │ available │ local-lvm │ │ │ │ │ +│ storage/pve/local-lvm │ storage │ │ rootdir,images │ │ 294.93 GiB │ │ │ │ │ │ │ 794.30 GiB │ │ │ │ │ │ pve │ lvmthin │ │ available │ local-lvm │ │ │ │ │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ │ storage/pve/tank-vmbu │ storage │ │ backup │ │ 1.38 TiB │ │ │ │ │ │ │ 92.98 TiB │ │ │ │ │ │ pve │ nfs │ │ available │ tank-vmbu │ │ │ │ │ └───────────────────────────────────┴─────────┴─────────────┴───────────────────────────────────────────┴───────┴────────────┴────────────┴────────────┴─────────┴───────┴────────┴────────┴────────────┴────────────┴────────────┴────────────────────┴────────────┴────────────┴─────────────┴────────────┴──────┴───────────┴───────────────┴──────┴──────────┴────────────┴──────┘ @@ -212,13 +210,13 @@ tags: Name Type Status Total Used Available % esh-nas nfs disabled 0 0 0 N/A iso dir active 1534048896 4750208 1529298688 0.31% -local dir active 6146608 5039228 774172 81.98% +local dir active 6146608 5040000 773400 82.00% local-lvm lvmthin disabled 0 0 0 N/A -nas-tank-vmbu dir active 99835018624 1485193984 98349824640 1.49% -nvme zfspool active 942931968 31079804 911852164 3.30% +nas-tank-vmbu dir active 99835021440 1485193984 98349827456 1.49% +nvme zfspool active 942931968 31047896 911884072 3.29% ssd zfspool active 1804599296 275300532 1529298764 15.26% -tank zfspool active 124745154560 26395329801 98349824758 21.16% -tank-vmbu nfs active 99835019264 1485194240 98349825024 1.49% +tank zfspool active 124745154560 26395327092 98349827467 21.16% +tank-vmbu nfs active 99835022336 1485194240 98349828096 1.49% ===== DATASTORE CONFIG (/etc/pve/storage.cfg) ===== @@ -316,7 +314,7 @@ tank 175T 36.9T 138T - ===== FILESYSTEMS (df -h, local fs only) ===== Filesystem Type Size Used Avail Use% Mounted on -/dev/mapper/pve-root ext4 5.9G 4.9G 757M 87% / +/dev/mapper/pve-root ext4 5.9G 4.9G 756M 87% / efivarfs efivarfs 192K 30K 158K 16% /sys/firmware/efi/efivars /dev/sdq2 vfat 511M 12M 500M 3% /boot/efi ssd zfs 1.5T 128K 1.5T 1% /ssd diff --git a/servers/esh-pve/proxmox-details.txt b/servers/esh-pve/proxmox-details.txt index a025155..12448f6 100644 --- a/servers/esh-pve/proxmox-details.txt +++ b/servers/esh-pve/proxmox-details.txt @@ -2,8 +2,8 @@ ===== HOST ===== Hostname: pve.esteban.net -Date: 2026-04-20T22:34:49-07:00 -Uptime: up 3 weeks, 6 hours, 19 minutes +Date: 2026-04-20T23:00:31-07:00 +Uptime: up 3 weeks, 6 hours, 44 minutes PVE: pve-manager/8.4.14/b502d23c55afcba1 (running kernel: 6.8.12-16-pve) Kernel: 6.8.12-16-pve Arch: x86_64 @@ -26,7 +26,7 @@ Secure auth: on Quorum information ------------------ -Date: Mon Apr 20 22:34:50 2026 +Date: Mon Apr 20 23:00:31 2026 Quorum provider: corosync_votequorum Nodes: 2 Node ID: 0x00000001 @@ -52,49 +52,49 @@ Membership information ┌───────────────────────────────────┬─────────┬─────────────┬───────────────────────────────────────────┬───────┬────────────┬────────────┬────────────┬─────────┬───────┬────────┬────────┬────────────┬────────────┬────────────┬────────────────────┬────────────┬────────────┬─────────────┬────────────┬──────┬───────────┬───────────────┬──────┬──────────┬────────────┬──────┐ │ id │ type │ cgroup-mode │ content │ cpu │ disk │ diskread │ diskwrite │ hastate │ level │ lock │ maxcpu │ maxdisk │ maxmem │ mem │ name │ netin │ netout │ node │ plugintype │ pool │ status │ storage │ tags │ template │ uptime │ vmid │ ╞═══════════════════════════════════╪═════════╪═════════════╪═══════════════════════════════════════════╪═══════╪════════════╪════════════╪════════════╪═════════╪═══════╪════════╪════════╪════════════╪════════════╪════════════╪════════════════════╪════════════╪════════════╪═════════════╪════════════╪══════╪═══════════╪═══════════════╪══════╪══════════╪════════════╪══════╡ -│ lxc/103 │ lxc │ │ │ 0.00% │ 807.25 MiB │ 541.36 MiB │ 20.00 KiB │ │ │ │ 2 │ 128.00 GiB │ 2.00 GiB │ 40.51 MiB │ esh-nas │ 2.25 TiB │ 103.24 GiB │ esh-nas-pve │ │ │ running │ │ │ 0 │ 3w 6h │ 103 │ +│ lxc/103 │ lxc │ │ │ 0.00% │ 807.25 MiB │ 541.36 MiB │ 20.00 KiB │ │ │ │ 2 │ 128.00 GiB │ 2.00 GiB │ 40.59 MiB │ esh-nas │ 2.25 TiB │ 103.24 GiB │ esh-nas-pve │ │ │ running │ │ │ 0 │ 3w 6h │ 103 │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ -│ lxc/105 │ lxc │ │ │ 0.01% │ 7.83 GiB │ 596.34 GiB │ 8.00 KiB │ │ │ │ 4 │ 128.00 GiB │ 2.00 GiB │ 305.11 MiB │ vm-plex │ 7.11 GiB │ 256.77 GiB │ esh-nas-pve │ │ │ running │ │ │ 0 │ 3w 6h │ 105 │ +│ lxc/105 │ lxc │ │ │ 0.01% │ 7.83 GiB │ 596.34 GiB │ 8.00 KiB │ │ │ │ 4 │ 128.00 GiB │ 2.00 GiB │ 305.45 MiB │ vm-plex │ 7.12 GiB │ 256.77 GiB │ esh-nas-pve │ │ │ running │ │ │ 0 │ 3w 6h │ 105 │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ │ lxc/106 │ lxc │ │ │ 0.00% │ 1.07 GiB │ 42.88 GiB │ 16.00 KiB │ │ │ │ 4 │ 80.00 GiB │ 2.00 GiB │ 20.52 MiB │ esh-filebot │ 841.20 GiB │ 16.81 GiB │ esh-nas-pve │ │ │ running │ │ │ 0 │ 3w 6h │ 106 │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ -│ lxc/107 │ lxc │ │ │ 0.00% │ 7.91 GiB │ 5.88 GiB │ 0.00 B │ │ │ │ 4 │ 40.00 GiB │ 4.00 GiB │ 239.37 MiB │ vm-jellyfin │ 6.18 GiB │ 23.38 MiB │ esh-nas-pve │ │ │ running │ │ │ 0 │ 3w 6h │ 107 │ +│ lxc/107 │ lxc │ │ │ 0.00% │ 7.91 GiB │ 5.88 GiB │ 0.00 B │ │ │ │ 4 │ 40.00 GiB │ 4.00 GiB │ 234.89 MiB │ vm-jellyfin │ 6.18 GiB │ 23.70 MiB │ esh-nas-pve │ │ │ running │ │ │ 0 │ 3w 6h │ 107 │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ -│ node/esh-nas-pve │ node │ 2 │ │ 0.35% │ 4.81 GiB │ │ │ │ │ │ 12 │ 5.86 GiB │ 125.65 GiB │ 69.24 GiB │ │ │ │ esh-nas-pve │ │ │ online │ │ │ │ 3w 6h │ │ +│ node/esh-nas-pve │ node │ 2 │ │ 0.37% │ 4.81 GiB │ │ │ │ │ │ 12 │ 5.86 GiB │ 125.65 GiB │ 69.28 GiB │ │ │ │ esh-nas-pve │ │ │ online │ │ │ │ 3w 6h │ │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ -│ node/pve │ node │ 2 │ │ 0.41% │ 17.86 GiB │ │ │ │ p │ │ 20 │ 93.93 GiB │ 62.53 GiB │ 32.44 GiB │ │ │ │ pve │ │ │ online │ │ │ │ 3w 6h │ │ +│ node/pve │ node │ 2 │ │ 0.64% │ 17.86 GiB │ │ │ │ p │ │ 20 │ 93.93 GiB │ 62.53 GiB │ 32.49 GiB │ │ │ │ pve │ │ │ online │ │ │ │ 3w 6h │ │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ -│ qemu/100 │ qemu │ │ │ 0.33% │ 0.00 B │ 44.11 GiB │ 186.92 GiB │ │ │ │ 16 │ 256.00 GiB │ 16.00 GiB │ 9.39 GiB │ esh-vm-docker │ 33.93 GiB │ 53.18 GiB │ pve │ │ │ running │ │ │ 0 │ 3w 6h │ 100 │ +│ qemu/100 │ qemu │ │ │ 0.54% │ 0.00 B │ 44.12 GiB │ 187.32 GiB │ │ │ │ 16 │ 256.00 GiB │ 16.00 GiB │ 9.59 GiB │ esh-vm-docker │ 34.10 GiB │ 53.19 GiB │ pve │ │ │ running │ │ │ 0 │ 3w 6h │ 100 │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ -│ qemu/101 │ qemu │ │ │ 0.06% │ 0.00 B │ 384.36 MiB │ 20.11 GiB │ │ │ │ 16 │ 256.00 GiB │ 8.00 GiB │ 1.85 GiB │ esh-vm-db │ 1.53 GiB │ 4.81 GiB │ pve │ │ │ running │ │ │ 0 │ 3w │ 101 │ +│ qemu/101 │ qemu │ │ │ 0.05% │ 0.00 B │ 384.36 MiB │ 20.12 GiB │ │ │ │ 16 │ 256.00 GiB │ 8.00 GiB │ 1.86 GiB │ esh-vm-db │ 1.53 GiB │ 4.81 GiB │ pve │ │ │ running │ │ │ 0 │ 3w │ 101 │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ -│ qemu/102 │ qemu │ │ │ 0.01% │ 0.00 B │ 0.00 B │ 0.00 B │ │ │ backup │ 16 │ 256.00 GiB │ 16.00 GiB │ 14.48 GiB │ esh-vm-workstation │ 327.00 B │ 0.00 B │ pve │ │ │ prelaunch │ │ │ 0 │ 6d 20h 12m │ 102 │ +│ qemu/102 │ qemu │ │ │ 0.01% │ 0.00 B │ 0.00 B │ 0.00 B │ │ │ backup │ 16 │ 256.00 GiB │ 16.00 GiB │ 14.48 GiB │ esh-vm-workstation │ 327.00 B │ 0.00 B │ pve │ │ │ prelaunch │ │ │ 0 │ 6d 20h 38m │ 102 │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ -│ qemu/104 │ qemu │ │ │ 0.44% │ 0.00 B │ 864.48 MiB │ 2.30 GiB │ │ │ │ 4 │ 128.00 GiB │ 4.00 GiB │ 1.76 GiB │ vm-esh-nas │ 6.45 GiB │ 1.40 GiB │ esh-nas-pve │ │ │ running │ │ │ 0 │ 3w 6h │ 104 │ +│ qemu/104 │ qemu │ │ │ 0.42% │ 0.00 B │ 865.90 MiB │ 2.32 GiB │ │ │ │ 4 │ 128.00 GiB │ 4.00 GiB │ 1.72 GiB │ vm-esh-nas │ 6.45 GiB │ 1.40 GiB │ esh-nas-pve │ │ │ running │ │ │ 0 │ 3w 6h │ 104 │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ │ sdn/esh-nas-pve/localnetwork │ sdn │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ esh-nas-pve │ │ │ ok │ │ │ │ │ │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ │ sdn/pve/localnetwork │ sdn │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ pve │ │ │ ok │ │ │ │ │ │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ -│ storage/esh-nas-pve/iso │ storage │ │ vztmpl,iso │ │ 4.53 GiB │ │ │ │ │ │ │ 1.43 TiB │ │ │ │ │ │ esh-nas-pve │ dir │ │ available │ iso │ │ │ │ │ +│ storage/esh-nas-pve/iso │ storage │ │ iso,vztmpl │ │ 4.53 GiB │ │ │ │ │ │ │ 1.43 TiB │ │ │ │ │ │ esh-nas-pve │ dir │ │ available │ iso │ │ │ │ │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ -│ storage/esh-nas-pve/local │ storage │ │ backup,iso,vztmpl │ │ 4.81 GiB │ │ │ │ │ │ │ 5.86 GiB │ │ │ │ │ │ esh-nas-pve │ dir │ │ available │ local │ │ │ │ │ +│ storage/esh-nas-pve/local │ storage │ │ vztmpl,iso,backup │ │ 4.81 GiB │ │ │ │ │ │ │ 5.86 GiB │ │ │ │ │ │ esh-nas-pve │ dir │ │ available │ local │ │ │ │ │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ │ storage/esh-nas-pve/nas-tank-vmbu │ storage │ │ backup │ │ 1.38 TiB │ │ │ │ │ │ │ 92.98 TiB │ │ │ │ │ │ esh-nas-pve │ dir │ │ available │ nas-tank-vmbu │ │ │ │ │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ │ storage/esh-nas-pve/nvme │ storage │ │ rootdir,images │ │ 29.61 GiB │ │ │ │ │ │ │ 899.25 GiB │ │ │ │ │ │ esh-nas-pve │ zfspool │ │ available │ nvme │ │ │ │ │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ -│ storage/esh-nas-pve/ssd │ storage │ │ images,rootdir │ │ 262.55 GiB │ │ │ │ │ │ │ 1.68 TiB │ │ │ │ │ │ esh-nas-pve │ zfspool │ │ available │ ssd │ │ │ │ │ +│ storage/esh-nas-pve/ssd │ storage │ │ rootdir,images │ │ 262.55 GiB │ │ │ │ │ │ │ 1.68 TiB │ │ │ │ │ │ esh-nas-pve │ zfspool │ │ available │ ssd │ │ │ │ │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ │ storage/esh-nas-pve/tank │ storage │ │ rootdir,images │ │ 24.58 TiB │ │ │ │ │ │ │ 116.18 TiB │ │ │ │ │ │ esh-nas-pve │ zfspool │ │ available │ tank │ │ │ │ │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ │ storage/esh-nas-pve/tank-vmbu │ storage │ │ backup │ │ 1.38 TiB │ │ │ │ │ │ │ 92.98 TiB │ │ │ │ │ │ esh-nas-pve │ nfs │ │ available │ tank-vmbu │ │ │ │ │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ -│ storage/pve/esh-nas │ storage │ │ iso,rootdir,vztmpl,images,backup,snippets │ │ 2.70 GiB │ │ │ │ │ │ │ 91.60 TiB │ │ │ │ │ │ pve │ nfs │ │ available │ esh-nas │ │ │ │ │ +│ storage/pve/esh-nas │ storage │ │ rootdir,iso,images,vztmpl,backup,snippets │ │ 2.70 GiB │ │ │ │ │ │ │ 91.60 TiB │ │ │ │ │ │ pve │ nfs │ │ available │ esh-nas │ │ │ │ │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ -│ storage/pve/local │ storage │ │ backup,iso,vztmpl │ │ 17.86 GiB │ │ │ │ │ │ │ 93.93 GiB │ │ │ │ │ │ pve │ dir │ │ available │ local │ │ │ │ │ +│ storage/pve/local │ storage │ │ vztmpl,iso,backup │ │ 17.86 GiB │ │ │ │ │ │ │ 93.93 GiB │ │ │ │ │ │ pve │ dir │ │ available │ local │ │ │ │ │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ -│ storage/pve/local-lvm │ storage │ │ images,rootdir │ │ 294.77 GiB │ │ │ │ │ │ │ 794.30 GiB │ │ │ │ │ │ pve │ lvmthin │ │ available │ local-lvm │ │ │ │ │ +│ storage/pve/local-lvm │ storage │ │ images,rootdir │ │ 294.93 GiB │ │ │ │ │ │ │ 794.30 GiB │ │ │ │ │ │ pve │ lvmthin │ │ available │ local-lvm │ │ │ │ │ ├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ │ storage/pve/tank-vmbu │ storage │ │ backup │ │ 1.38 TiB │ │ │ │ │ │ │ 92.98 TiB │ │ │ │ │ │ pve │ nfs │ │ available │ tank-vmbu │ │ │ │ │ └───────────────────────────────────┴─────────┴─────────────┴───────────────────────────────────────────┴───────┴────────────┴────────────┴────────────┴─────────┴───────┴────────┴────────┴────────────┴────────────┴────────────┴────────────────────┴────────────┴────────────┴─────────────┴────────────┴──────┴───────────┴───────────────┴──────┴──────────┴────────────┴──────┘ @@ -158,8 +158,8 @@ ostype: win11 Name Type Status Total Used Available % esh-nas nfs active 98352656384 2828288 98349828096 0.00% iso dir disabled 0 0 0 N/A -local dir active 98497780 18724516 74723716 19.01% -local-lvm lvmthin active 832888832 309085045 523803786 37.11% +local dir active 98497780 18724968 74723264 19.01% +local-lvm lvmthin active 832888832 309251623 523637208 37.13% nas-tank-vmbu dir disabled 0 0 0 N/A nvme zfspool disabled 0 0 0 N/A ssd zfspool disabled 0 0 0 N/A diff --git a/servers/nh3-pve/proxmox-details.txt b/servers/nh3-pve/proxmox-details.txt index e503bca..1f25b53 100644 --- a/servers/nh3-pve/proxmox-details.txt +++ b/servers/nh3-pve/proxmox-details.txt @@ -2,8 +2,8 @@ ===== HOST ===== Hostname: nh3-vmhost.phasefinal.com -Date: 2026-04-20T22:12:44-07:00 -Uptime: up 5 weeks, 5 days, 15 hours, 1 minute +Date: 2026-04-20T23:00:47-07:00 +Uptime: up 5 weeks, 5 days, 15 hours, 49 minutes PVE: pve-manager/8.4.1/2a5fa54a8503f96d (running kernel: 6.8.12-11-pve) Kernel: 6.8.12-11-pve Arch: x86_64 @@ -13,7 +13,7 @@ Arch: x86_64 CPU model: 13th Gen Intel(R) Core(TM) i9-13900H CPU cores: 20 MemTotal: 62.5 GB -MemAvail: 39.7 GB +MemAvail: 39.6 GB ===== CLUSTER ===== @@ -24,25 +24,25 @@ MemAvail: 39.7 GB ┌────────────────────────────────┬─────────┬─────────────┬──────────────────────────────────┬────────┬────────────┬────────────┬────────────┬─────────┬───────┬──────┬────────┬────────────┬───────────┬────────────┬─────────────┬───────────┬───────────┬────────────┬────────────┬──────┬───────────┬─────────────┬──────┬──────────┬───────────┬──────┐ │ id │ type │ cgroup-mode │ content │ cpu │ disk │ diskread │ diskwrite │ hastate │ level │ lock │ maxcpu │ maxdisk │ maxmem │ mem │ name │ netin │ netout │ node │ plugintype │ pool │ status │ storage │ tags │ template │ uptime │ vmid │ ╞════════════════════════════════╪═════════╪═════════════╪══════════════════════════════════╪════════╪════════════╪════════════╪════════════╪═════════╪═══════╪══════╪════════╪════════════╪═══════════╪════════════╪═════════════╪═══════════╪═══════════╪════════════╪════════════╪══════╪═══════════╪═════════════╪══════╪══════════╪═══════════╪══════╡ -│ lxc/103 │ lxc │ │ │ 0.00% │ 830.62 MiB │ 464.69 MiB │ 0.00 B │ │ │ │ 4 │ 40.00 GiB │ 2.00 GiB │ 56.72 MiB │ nh3-wg │ 1.58 GiB │ 5.93 MiB │ nh3-vmhost │ │ │ running │ │ │ 0 │ 5w 5d 15h │ 103 │ +│ lxc/103 │ lxc │ │ │ 0.00% │ 830.62 MiB │ 464.69 MiB │ 0.00 B │ │ │ │ 4 │ 40.00 GiB │ 2.00 GiB │ 56.01 MiB │ nh3-wg │ 1.58 GiB │ 5.93 MiB │ nh3-vmhost │ │ │ running │ │ │ 0 │ 5w 5d 15h │ 103 │ ├────────────────────────────────┼─────────┼─────────────┼──────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼───────────┼────────────┼─────────────┼───────────┼───────────┼────────────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ -│ node/nh3-vmhost │ node │ 2 │ │ 9.16% │ 6.16 GiB │ │ │ │ p │ │ 20 │ 855.73 GiB │ 62.53 GiB │ 22.82 GiB │ │ │ │ nh3-vmhost │ │ │ online │ │ │ │ 5w 5d 15h │ │ +│ node/nh3-vmhost │ node │ 2 │ │ 7.11% │ 6.16 GiB │ │ │ │ p │ │ 20 │ 855.68 GiB │ 62.53 GiB │ 22.87 GiB │ │ │ │ nh3-vmhost │ │ │ online │ │ │ │ 5w 5d 15h │ │ ├────────────────────────────────┼─────────┼─────────────┼──────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼───────────┼────────────┼─────────────┼───────────┼───────────┼────────────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ -│ qemu/100 │ qemu │ │ │ 0.56% │ 0.00 B │ 961.29 MiB │ 15.22 GiB │ │ │ │ 8 │ 128.00 GiB │ 8.00 GiB │ 3.98 GiB │ nh3-docker1 │ 3.46 GiB │ 4.95 GiB │ nh3-vmhost │ │ │ running │ │ │ 0 │ 5w 5d 15h │ 100 │ +│ qemu/100 │ qemu │ │ │ 0.66% │ 0.00 B │ 961.42 MiB │ 15.24 GiB │ │ │ │ 8 │ 128.00 GiB │ 8.00 GiB │ 3.93 GiB │ nh3-docker1 │ 3.47 GiB │ 4.97 GiB │ nh3-vmhost │ │ │ running │ │ │ 0 │ 5w 5d 15h │ 100 │ ├────────────────────────────────┼─────────┼─────────────┼──────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼───────────┼────────────┼─────────────┼───────────┼───────────┼────────────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ -│ qemu/101 │ qemu │ │ │ 0.02% │ 0.00 B │ 180.83 MiB │ 1.31 GiB │ │ │ │ 8 │ 256.00 GiB │ 2.00 GiB │ 750.68 MiB │ nh3-ansible │ 1.18 GiB │ 3.45 MiB │ nh3-vmhost │ │ │ running │ │ │ 0 │ 5w 5d 15h │ 101 │ +│ qemu/101 │ qemu │ │ │ 0.05% │ 0.00 B │ 180.83 MiB │ 1.31 GiB │ │ │ │ 8 │ 256.00 GiB │ 2.00 GiB │ 751.17 MiB │ nh3-ansible │ 1.18 GiB │ 3.45 MiB │ nh3-vmhost │ │ │ running │ │ │ 0 │ 5w 5d 15h │ 101 │ ├────────────────────────────────┼─────────┼─────────────┼──────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼───────────┼────────────┼─────────────┼───────────┼───────────┼────────────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ -│ qemu/102 │ qemu │ │ │ 22.25% │ 0.00 B │ 41.57 GiB │ 169.22 GiB │ │ │ │ 8 │ 250.00 GiB │ 8.00 GiB │ 4.79 GiB │ nh3-dev │ 20.55 GiB │ 29.55 GiB │ nh3-vmhost │ │ │ running │ │ │ 0 │ 2w 3d 11h │ 102 │ +│ qemu/102 │ qemu │ │ │ 16.52% │ 0.00 B │ 41.70 GiB │ 171.35 GiB │ │ │ │ 8 │ 250.00 GiB │ 8.00 GiB │ 5.73 GiB │ nh3-dev │ 20.57 GiB │ 29.81 GiB │ nh3-vmhost │ │ │ running │ │ │ 0 │ 2w 3d 11h │ 102 │ ├────────────────────────────────┼─────────┼─────────────┼──────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼───────────┼────────────┼─────────────┼───────────┼───────────┼────────────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ │ qemu/104 │ qemu │ │ │ 0.00% │ 0.00 B │ 0.00 B │ 0.00 B │ │ │ │ 8 │ 120.00 GiB │ 8.00 GiB │ 0.00 B │ nh3-laser │ 0.00 B │ 0.00 B │ nh3-vmhost │ │ │ stopped │ │ │ 0 │ 0s │ 104 │ ├────────────────────────────────┼─────────┼─────────────┼──────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼───────────┼────────────┼─────────────┼───────────┼───────────┼────────────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ │ sdn/nh3-vmhost/localnetwork │ sdn │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ nh3-vmhost │ │ │ ok │ │ │ │ │ │ ├────────────────────────────────┼─────────┼─────────────┼──────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼───────────┼────────────┼─────────────┼───────────┼───────────┼────────────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ -│ storage/nh3-vmhost/local │ storage │ │ backup,iso,vztmpl │ │ 863.62 MiB │ │ │ │ │ │ │ 850.41 GiB │ │ │ │ │ │ nh3-vmhost │ dir │ │ available │ local │ │ │ │ │ +│ storage/nh3-vmhost/local │ storage │ │ backup,iso,vztmpl │ │ 863.62 MiB │ │ │ │ │ │ │ 850.36 GiB │ │ │ │ │ │ nh3-vmhost │ dir │ │ available │ local │ │ │ │ │ ├────────────────────────────────┼─────────┼─────────────┼──────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼───────────┼────────────┼─────────────┼───────────┼───────────┼────────────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ -│ storage/nh3-vmhost/local-zfs │ storage │ │ images,rootdir │ │ 65.85 GiB │ │ │ │ │ │ │ 915.42 GiB │ │ │ │ │ │ nh3-vmhost │ zfspool │ │ available │ local-zfs │ │ │ │ │ +│ storage/nh3-vmhost/local-zfs │ storage │ │ rootdir,images │ │ 65.91 GiB │ │ │ │ │ │ │ 915.42 GiB │ │ │ │ │ │ nh3-vmhost │ zfspool │ │ available │ local-zfs │ │ │ │ │ ├────────────────────────────────┼─────────┼─────────────┼──────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼───────────┼────────────┼─────────────┼───────────┼───────────┼────────────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ -│ storage/nh3-vmhost/pfi-nh3-nas │ storage │ │ images,vztmpl,rootdir,backup,iso │ │ 26.44 TiB │ │ │ │ │ │ │ 41.87 TiB │ │ │ │ │ │ nh3-vmhost │ nfs │ │ available │ pfi-nh3-nas │ │ │ │ │ +│ storage/nh3-vmhost/pfi-nh3-nas │ storage │ │ images,iso,backup,rootdir,vztmpl │ │ 26.44 TiB │ │ │ │ │ │ │ 41.87 TiB │ │ │ │ │ │ nh3-vmhost │ nfs │ │ available │ pfi-nh3-nas │ │ │ │ │ └────────────────────────────────┴─────────┴─────────────┴──────────────────────────────────┴────────┴────────────┴────────────┴────────────┴─────────┴───────┴──────┴────────┴────────────┴───────────┴────────────┴─────────────┴───────────┴───────────┴────────────┴────────────┴──────┴───────────┴─────────────┴──────┴──────────┴───────────┴──────┘ ===== VMs (qm list) ===== @@ -126,8 +126,8 @@ unprivileged: 1 ===== STORAGE (pvesm status) ===== Name Type Status Total Used Available % -local dir active 891722496 884352 890838144 0.10% -local-zfs zfspool active 959889604 69051432 890838172 7.19% +local dir active 891663744 884352 890779392 0.10% +local-zfs zfspool active 959889820 69110424 890779396 7.20% pfi-nh3-nas nfs active 44962267904 28385127296 16577140608 63.13% ===== DATASTORE CONFIG (/etc/pve/storage.cfg) ===== @@ -153,8 +153,8 @@ nfs: pfi-nh3-nas ===== ZFS POOLS (zpool list -v) ===== NAME SIZE ALLOC FREE CKPOINT EXPANDSZ FRAG CAP DEDUP HEALTH ALTROOT -rpool 952G 72.9G 879G - - 6% 7% 1.00x ONLINE - - nvme-eui.00000000000000000026b7382d4a82a5-part3 953G 72.9G 879G - - 6% 7.66% - ONLINE +rpool 952G 73.0G 879G - - 6% 7% 1.00x ONLINE - + nvme-eui.00000000000000000026b7382d4a82a5-part3 953G 73.0G 879G - - 6% 7.66% - ONLINE ===== FILESYSTEMS (df -h, local fs only) ===== diff --git a/servers/pfi-pve/proxmox-details.txt b/servers/pfi-pve/proxmox-details.txt index 7dc83aa..a238c0b 100644 --- a/servers/pfi-pve/proxmox-details.txt +++ b/servers/pfi-pve/proxmox-details.txt @@ -2,8 +2,8 @@ ===== HOST ===== Hostname: pve.phasefinal.com -Date: 2026-04-20T22:25:32-07:00 -Uptime: up 34 weeks, 2 days, 9 hours, 7 minutes +Date: 2026-04-20T23:00:55-07:00 +Uptime: up 34 weeks, 2 days, 9 hours, 42 minutes PVE: pve-manager/8.3.5/dac3aa88bac3f300 (running kernel: 6.8.12-8-pve) Kernel: 6.8.12-8-pve Arch: x86_64 @@ -21,43 +21,43 @@ MemAvail: 41.3 GB ===== CLUSTER RESOURCES (pvesh) ===== -┌─────────────────────────┬─────────┬─────────────┬───────────────────────────────────────────┬────────┬────────────┬────────────┬────────────┬─────────┬───────┬──────┬────────┬────────────┬────────────┬────────────┬─────────────────┬────────────┬────────────┬──────┬────────────┬──────┬───────────┬─────────────┬──────┬──────────┬───────────┬──────┐ -│ id │ type │ cgroup-mode │ content │ cpu │ disk │ diskread │ diskwrite │ hastate │ level │ lock │ maxcpu │ maxdisk │ maxmem │ mem │ name │ netin │ netout │ node │ plugintype │ pool │ status │ storage │ tags │ template │ uptime │ vmid │ -╞═════════════════════════╪═════════╪═════════════╪═══════════════════════════════════════════╪════════╪════════════╪════════════╪════════════╪═════════╪═══════╪══════╪════════╪════════════╪════════════╪════════════╪═════════════════╪════════════╪════════════╪══════╪════════════╪══════╪═══════════╪═════════════╪══════╪══════════╪═══════════╪══════╡ -│ lxc/109 │ lxc │ │ │ 0.00% │ 811.88 MiB │ 621.95 MiB │ 625.77 MiB │ │ │ │ 4 │ 80.00 GiB │ 2.00 GiB │ 72.57 MiB │ ana-nas │ 74.49 GiB │ 22.26 GiB │ pve │ │ │ running │ │ │ 0 │ 34w 1d 9h │ 109 │ -├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ -│ lxc/112 │ lxc │ │ │ 0.00% │ 812.62 MiB │ 329.95 MiB │ 836.00 KiB │ │ │ │ 4 │ 80.00 GiB │ 2.00 GiB │ 28.55 MiB │ ana-filebot │ 15.03 GiB │ 7.11 MiB │ pve │ │ │ running │ │ │ 0 │ 34w 2d 5h │ 112 │ -├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ -│ lxc/113 │ lxc │ │ │ 0.01% │ 622.12 MiB │ 488.52 MiB │ 2.28 MiB │ │ │ │ 4 │ 8.00 GiB │ 2.00 GiB │ 44.26 MiB │ ana-wg │ 16.88 GiB │ 1.77 GiB │ pve │ │ │ running │ │ │ 0 │ 34w 2d 5h │ 113 │ -├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ -│ node/pve │ node │ 2 │ │ 3.80% │ 29.71 GiB │ │ │ │ p │ │ 48 │ 64.05 GiB │ 188.10 GiB │ 148.75 GiB │ │ │ │ pve │ │ │ online │ │ │ │ 34w 2d 9h │ │ -├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ -│ qemu/101 │ qemu │ │ │ 1.28% │ 0.00 B │ 26.68 GiB │ 1.08 TiB │ │ │ │ 12 │ 240.00 GiB │ 24.00 GiB │ 16.64 GiB │ PFI-ANA-DC │ 15.03 GiB │ 77.91 MiB │ pve │ │ │ running │ │ │ 0 │ 34w 2d 9h │ 101 │ -├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ -│ qemu/102 │ qemu │ │ │ 12.29% │ 0.00 B │ 16.10 GiB │ 240.93 GiB │ │ │ │ 8 │ 250.00 GiB │ 16.00 GiB │ 14.21 GiB │ PFI-ANA-Docker │ 258.16 GiB │ 2.56 TiB │ pve │ │ │ running │ │ │ 0 │ 2w 6d 23h │ 102 │ -├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ -│ qemu/103 │ qemu │ │ │ 0.95% │ 0.00 B │ 306.26 GiB │ 665.48 GiB │ │ │ │ 8 │ 256.00 GiB │ 8.00 GiB │ 6.44 GiB │ PFI-SlaveBot │ 37.00 GiB │ 674.37 MiB │ pve │ │ │ running │ │ │ 0 │ 34w 2d 8h │ 103 │ -├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ -│ qemu/104 │ qemu │ │ │ 0.80% │ 0.00 B │ 1.67 GiB │ 111.79 GiB │ │ │ │ 8 │ 256.00 GiB │ 8.00 GiB │ 2.56 GiB │ PFI-Mongo │ 29.20 GiB │ 43.65 GiB │ pve │ │ │ running │ │ │ 0 │ 34w 2d 9h │ 104 │ -├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ -│ qemu/105 │ qemu │ │ │ 0.29% │ 0.00 B │ 510.30 MiB │ 20.04 GiB │ │ │ │ 16 │ 80.00 GiB │ 8.00 GiB │ 1.29 GiB │ PFI-Postgres │ 783.20 GiB │ 858.89 GiB │ pve │ │ │ running │ │ │ 0 │ 34w 2d 9h │ 105 │ -├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ -│ qemu/107 │ qemu │ │ │ 5.99% │ 0.00 B │ 38.72 TiB │ 316.20 GiB │ │ │ │ 8 │ 256.00 GiB │ 8.00 GiB │ 7.50 GiB │ PFI-Pteradactyl │ 28.20 GiB │ 3.13 GiB │ pve │ │ │ running │ │ │ 0 │ 34w 2d 8h │ 107 │ -├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ -│ qemu/110 │ qemu │ │ │ 0.36% │ 0.00 B │ 196.53 TiB │ 10.64 TiB │ │ │ │ 16 │ 250.00 GiB │ 4.00 GiB │ 1.29 GiB │ PFI-ANA-Webhost │ 17.53 GiB │ 12.19 GiB │ pve │ │ │ running │ │ │ 0 │ 34w 2d 9h │ 110 │ -├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ -│ qemu/111 │ qemu │ │ │ 0.69% │ 0.00 B │ 3.74 GiB │ 361.91 GiB │ │ │ │ 16 │ 256.00 GiB │ 8.00 GiB │ 3.27 GiB │ pfi-tacticalrmm │ 44.45 GiB │ 44.08 GiB │ pve │ │ │ running │ │ │ 0 │ 34w 2d 9h │ 111 │ -├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ -│ sdn/pve/localnetwork │ sdn │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ pve │ │ │ ok │ │ │ │ │ │ -├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ -│ storage/pve/local │ storage │ │ iso,backup,vztmpl │ │ 29.71 GiB │ │ │ │ │ │ │ 64.05 GiB │ │ │ │ │ │ pve │ dir │ │ available │ local │ │ │ │ │ -├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ -│ storage/pve/local-lvm │ storage │ │ images,rootdir │ │ 0.00 B │ │ │ │ │ │ │ 130.22 GiB │ │ │ │ │ │ pve │ lvmthin │ │ available │ local-lvm │ │ │ │ │ -├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ -│ storage/pve/ospool │ storage │ │ rootdir,images │ │ 530.34 GiB │ │ │ │ │ │ │ 10.78 TiB │ │ │ │ │ │ pve │ zfspool │ │ available │ ospool │ │ │ │ │ -├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ -│ storage/pve/pve-truenas │ storage │ │ snippets,rootdir,iso,vztmpl,backup,images │ │ 2.33 TiB │ │ │ │ │ │ │ 21.68 TiB │ │ │ │ │ │ pve │ dir │ │ available │ pve-truenas │ │ │ │ │ -└─────────────────────────┴─────────┴─────────────┴───────────────────────────────────────────┴────────┴────────────┴────────────┴────────────┴─────────┴───────┴──────┴────────┴────────────┴────────────┴────────────┴─────────────────┴────────────┴────────────┴──────┴────────────┴──────┴───────────┴─────────────┴──────┴──────────┴───────────┴──────┘ +┌─────────────────────────┬─────────┬─────────────┬───────────────────────────────────────────┬────────┬────────────┬────────────┬────────────┬─────────┬───────┬──────┬────────┬────────────┬────────────┬────────────┬─────────────────┬────────────┬────────────┬──────┬────────────┬──────┬───────────┬─────────────┬──────┬──────────┬────────────┬──────┐ +│ id │ type │ cgroup-mode │ content │ cpu │ disk │ diskread │ diskwrite │ hastate │ level │ lock │ maxcpu │ maxdisk │ maxmem │ mem │ name │ netin │ netout │ node │ plugintype │ pool │ status │ storage │ tags │ template │ uptime │ vmid │ +╞═════════════════════════╪═════════╪═════════════╪═══════════════════════════════════════════╪════════╪════════════╪════════════╪════════════╪═════════╪═══════╪══════╪════════╪════════════╪════════════╪════════════╪═════════════════╪════════════╪════════════╪══════╪════════════╪══════╪═══════════╪═════════════╪══════╪══════════╪════════════╪══════╡ +│ lxc/109 │ lxc │ │ │ 0.13% │ 811.88 MiB │ 621.95 MiB │ 625.77 MiB │ │ │ │ 4 │ 80.00 GiB │ 2.00 GiB │ 75.02 MiB │ ana-nas │ 74.49 GiB │ 22.26 GiB │ pve │ │ │ running │ │ │ 0 │ 34w 1d 10h │ 109 │ +├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼────────────┼──────┤ +│ lxc/112 │ lxc │ │ │ 0.00% │ 812.62 MiB │ 329.95 MiB │ 836.00 KiB │ │ │ │ 4 │ 80.00 GiB │ 2.00 GiB │ 28.80 MiB │ ana-filebot │ 15.03 GiB │ 7.11 MiB │ pve │ │ │ running │ │ │ 0 │ 34w 2d 5h │ 112 │ +├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼────────────┼──────┤ +│ lxc/113 │ lxc │ │ │ 0.02% │ 622.12 MiB │ 488.52 MiB │ 2.28 MiB │ │ │ │ 4 │ 8.00 GiB │ 2.00 GiB │ 44.51 MiB │ ana-wg │ 16.88 GiB │ 1.77 GiB │ pve │ │ │ running │ │ │ 0 │ 34w 2d 5h │ 113 │ +├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼────────────┼──────┤ +│ node/pve │ node │ 2 │ │ 3.99% │ 29.71 GiB │ │ │ │ p │ │ 48 │ 64.05 GiB │ 188.10 GiB │ 148.80 GiB │ │ │ │ pve │ │ │ online │ │ │ │ 34w 2d 9h │ │ +├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼────────────┼──────┤ +│ qemu/101 │ qemu │ │ │ 1.25% │ 0.00 B │ 26.68 GiB │ 1.08 TiB │ │ │ │ 12 │ 240.00 GiB │ 24.00 GiB │ 16.64 GiB │ PFI-ANA-DC │ 15.03 GiB │ 77.92 MiB │ pve │ │ │ running │ │ │ 0 │ 34w 2d 9h │ 101 │ +├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼────────────┼──────┤ +│ qemu/102 │ qemu │ │ │ 11.67% │ 0.00 B │ 16.13 GiB │ 241.27 GiB │ │ │ │ 8 │ 250.00 GiB │ 16.00 GiB │ 13.91 GiB │ PFI-ANA-Docker │ 258.17 GiB │ 2.56 TiB │ pve │ │ │ running │ │ │ 0 │ 3w │ 102 │ +├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼────────────┼──────┤ +│ qemu/103 │ qemu │ │ │ 0.86% │ 0.00 B │ 306.26 GiB │ 665.49 GiB │ │ │ │ 8 │ 256.00 GiB │ 8.00 GiB │ 6.46 GiB │ PFI-SlaveBot │ 37.00 GiB │ 674.41 MiB │ pve │ │ │ running │ │ │ 0 │ 34w 2d 9h │ 103 │ +├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼────────────┼──────┤ +│ qemu/104 │ qemu │ │ │ 0.78% │ 0.00 B │ 1.67 GiB │ 111.81 GiB │ │ │ │ 8 │ 256.00 GiB │ 8.00 GiB │ 2.56 GiB │ PFI-Mongo │ 29.20 GiB │ 43.65 GiB │ pve │ │ │ running │ │ │ 0 │ 34w 2d 9h │ 104 │ +├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼────────────┼──────┤ +│ qemu/105 │ qemu │ │ │ 0.32% │ 0.00 B │ 510.30 MiB │ 20.04 GiB │ │ │ │ 16 │ 80.00 GiB │ 8.00 GiB │ 1.30 GiB │ PFI-Postgres │ 783.20 GiB │ 858.89 GiB │ pve │ │ │ running │ │ │ 0 │ 34w 2d 9h │ 105 │ +├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼────────────┼──────┤ +│ qemu/107 │ qemu │ │ │ 5.81% │ 0.00 B │ 38.72 TiB │ 316.22 GiB │ │ │ │ 8 │ 256.00 GiB │ 8.00 GiB │ 7.50 GiB │ PFI-Pteradactyl │ 28.20 GiB │ 3.13 GiB │ pve │ │ │ running │ │ │ 0 │ 34w 2d 9h │ 107 │ +├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼────────────┼──────┤ +│ qemu/110 │ qemu │ │ │ 0.36% │ 0.00 B │ 196.53 TiB │ 10.64 TiB │ │ │ │ 16 │ 250.00 GiB │ 4.00 GiB │ 1.29 GiB │ PFI-ANA-Webhost │ 17.53 GiB │ 12.19 GiB │ pve │ │ │ running │ │ │ 0 │ 34w 2d 9h │ 110 │ +├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼────────────┼──────┤ +│ qemu/111 │ qemu │ │ │ 0.97% │ 0.00 B │ 3.74 GiB │ 361.95 GiB │ │ │ │ 16 │ 256.00 GiB │ 8.00 GiB │ 3.34 GiB │ pfi-tacticalrmm │ 44.45 GiB │ 44.09 GiB │ pve │ │ │ running │ │ │ 0 │ 34w 2d 9h │ 111 │ +├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼────────────┼──────┤ +│ sdn/pve/localnetwork │ sdn │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ pve │ │ │ ok │ │ │ │ │ │ +├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼────────────┼──────┤ +│ storage/pve/local │ storage │ │ backup,iso,vztmpl │ │ 29.71 GiB │ │ │ │ │ │ │ 64.05 GiB │ │ │ │ │ │ pve │ dir │ │ available │ local │ │ │ │ │ +├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼────────────┼──────┤ +│ storage/pve/local-lvm │ storage │ │ images,rootdir │ │ 0.00 B │ │ │ │ │ │ │ 130.22 GiB │ │ │ │ │ │ pve │ lvmthin │ │ available │ local-lvm │ │ │ │ │ +├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼────────────┼──────┤ +│ storage/pve/ospool │ storage │ │ rootdir,images │ │ 530.35 GiB │ │ │ │ │ │ │ 10.78 TiB │ │ │ │ │ │ pve │ zfspool │ │ available │ ospool │ │ │ │ │ +├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼────────────┼──────┤ +│ storage/pve/pve-truenas │ storage │ │ vztmpl,images,backup,snippets,rootdir,iso │ │ 2.33 TiB │ │ │ │ │ │ │ 21.68 TiB │ │ │ │ │ │ pve │ dir │ │ available │ pve-truenas │ │ │ │ │ +└─────────────────────────┴─────────┴─────────────┴───────────────────────────────────────────┴────────┴────────────┴────────────┴────────────┴─────────┴───────┴──────┴────────┴────────────┴────────────┴────────────┴─────────────────┴────────────┴────────────┴──────┴────────────┴──────┴───────────┴─────────────┴──────┴──────────┴────────────┴──────┘ ===== VMs (qm list) ===== @@ -226,9 +226,9 @@ unprivileged: 1 ===== STORAGE (pvesm status) ===== Name Type Status Total Used Available % -local dir active 67157384 31151312 32548844 46.39% +local dir active 67157384 31151840 32548316 46.39% local-lvm lvmthin active 136544256 0 136544256 0.00% -ospool zfspool active 11576279040 556105992 11020173048 4.80% +ospool zfspool active 11576279040 556115964 11020163076 4.80% pve-truenas dir active 23283137152 2499788288 20783348864 10.74% ===== DATASTORE CONFIG (/etc/pve/storage.cfg) =====