Compare commits

..

No commits in common. "bd29aea39eafac0e895428950657c925c1cda098" and "dc85fa83c4bd38f7c7e198ecb7e1daf3f8c3aadd" have entirely different histories.

5 changed files with 5 additions and 17 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 51 KiB

After

Width:  |  Height:  |  Size: 52 KiB

View File

@ -47,6 +47,6 @@ defineProps({
.note {
color: var(--text-muted);
font-size: 13px;
white-space: pre-wrap;
white-space: pre-line;
}
</style>

View File

@ -195,8 +195,6 @@ const timeline = [
.portrait {
width: 120px;
height: 120px;
flex: 0 0 120px;
aspect-ratio: 1 / 1;
border-radius: 50%;
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.12);

View File

@ -99,16 +99,12 @@ const atlasPillClass = computed(() => (props.labStatus?.atlas?.up ? "pill-ok" :
const oceanusPillClass = computed(() => (props.labStatus?.oceanus?.up ? "pill-ok" : "pill-bad"));
const metricItems = computed(() => {
const items = [
{ label: "Lab nodes", value: "25", note: "26 total (titan-16 is down)\nWorkers: 8 rpi5s, 8 rpi4s, 2 jetsons,\n\t\t\t\t 1 minipc\nControl plane: 3 rpi5\nDedicated Hosts: oceanus, titan-db,\n\t\t\t\t\t\t\t\t tethys, theia" },
{ label: "CPU cores", value: "142", note: "32 arm64 cores @ 1.5Ghz\n12 arm64 cores @ 1.9Ghz\n52 arm64 cores @ 2.4Ghz\n10 amd64 cores @ 5.00Ghz\n12 amd64 cores @ 4.67Ghz\n24 amd64 cores @ 4.04Ghz" },
{ label: "Memory", value: "552 GB", note: "nominal\n(includes downed titan-16)" },
return [
{ label: "Lab nodes", value: "25", note: "26 total (titan-16 is down)\nWorkers: 8 rpi5, 7 rpi4, 2 jetsons, 1 minipc\nControl plane: 3 rpi5\nDedicated: titan-db, oceanus, tethys, theia" },
{ label: "CPU cores", value: "142", note: "arm + jetson + x86 mix" },
{ label: "Memory", value: "552 GB", note: "nominal (includes titan-16 even though it is down)" },
{ label: "Atlas storage", value: "80 TB", note: "Longhorn astreae + asteria" },
];
return items.map((item) => ({
...item,
note: item.note ? item.note.replaceAll("\t", " ") : "",
}));
});
const displayServices = computed(() => {

View File

@ -1,14 +1,8 @@
import { defineConfig } from "vite";
import path from "node:path";
import vue from "@vitejs/plugin-vue";
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
server: {
proxy: {
"/api": {