cosmostat has working drive health dashboard

This commit is contained in:
2026-04-19 14:23:32 -07:00
parent c6007d9c33
commit 46d9f86d55
48 changed files with 4295 additions and 257 deletions

View File

@ -1,15 +1,15 @@
---
# refresh when refresh
#- name: Quick refresh
# when: refresh_special | bool
# set_fact:
# quick_refresh: true
# new big dashboard test
#- name: MC Vizz
# include_tasks: vizz.yaml
# initializa environment
- name: Initialize Environment
when: not quick_refresh | bool
include_tasks: init.yaml
- name: disable
when: false
block:
# initialize environment
- name: Initialize Environment
include_tasks: init.yaml
# set up API
- name: Build API
@ -17,7 +17,9 @@
# set up web stack
- name: Build Web Dashboard
when: not disable_local_dashboard | bool
when:
- not disable_local_dashboard | bool
- not update_pipeline | bool
include_tasks: docker.yaml
...