## Summary - Step 0.1: Update Pulumi ACLs with tag:registry - Step 0.3: Create Zot registry ansible role with mcquack LaunchAgent - Step 0.4: Add Zot to Tailscale Serve configuration - Step 0.5: Create Zot metrics role for Prometheus scraping - Step 0.6: Add Zot log collection to Alloy - Step 0.7: Update indri-services-check with zot checks - Step 0.8: Add podman role for container runtime - Step 0.9: Add minikube role for Kubernetes cluster - Step 0.10: Configure remote kubectl access with 1Password credentials ## Remaining Steps - [ ] Step 0.11: Add minikube to indri-services-check - [ ] Step 0.12: Create zettelkasten documentation - [ ] Step 0.13: Verify main playbook (already done - roles added) ## Deployment and Testing - [x] Zot registry deployed and accessible at https://registry.tail8d86e.ts.net - [x] Podman machine running on indri - [x] Minikube cluster running on indri - [x] kubectl access from gilbert working with 1Password credentials - [ ] indri-services-check passes all checks 🤖 Generated with [Claude Code](https://claude.com/claude-code) Reviewed-on: https://forge.tail8d86e.ts.net/eblume/blumeops/pulls/26
25 lines
574 B
Django/Jinja
25 lines
574 B
Django/Jinja
#!/bin/bash
|
|
# {{ ansible_managed }}
|
|
# Collects Zot registry metrics for node_exporter textfile collector
|
|
|
|
set -euo pipefail
|
|
|
|
METRICS_URL="{{ zot_metrics_url }}"
|
|
OUTPUT_FILE="{{ zot_metrics_dir }}/zot.prom"
|
|
TEMP_FILE="${OUTPUT_FILE}.tmp"
|
|
|
|
# Start output file with header
|
|
cat > "$TEMP_FILE" << 'HEADER'
|
|
# HELP zot_up Zot registry is up and responding
|
|
# TYPE zot_up gauge
|
|
HEADER
|
|
|
|
# Check if zot is up
|
|
if curl -sf "$METRICS_URL" > /dev/null 2>&1; then
|
|
echo "zot_up 1" >> "$TEMP_FILE"
|
|
else
|
|
echo "zot_up 0" >> "$TEMP_FILE"
|
|
fi
|
|
|
|
# Atomic move
|
|
mv "$TEMP_FILE" "$OUTPUT_FILE"
|