Skip to content

Commit b17da39

Browse files
committed
up
1 parent 4e9e23f commit b17da39

4 files changed

Lines changed: 52 additions & 103 deletions

File tree

.github/workflows/docker-publish.yml

Lines changed: 0 additions & 102 deletions
This file was deleted.

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/checkout@v4
2121

2222
- name: Setup Python
23-
uses: actions/setup-python@v4
23+
uses: actions/setup-python@v5
2424
with:
2525
python-version: '3.x'
2626

docs/index.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Talos ArgoCD Proxmox
2+
3+
Production GitOps Kubernetes cluster running on Talos OS with self-managing ArgoCD.
4+
5+
See the [README](https://github.com/mitchross/talos-argocd-proxmox) for setup instructions.
6+
7+
## Documentation
8+
9+
- [ArgoCD & GitOps Architecture](argocd.md) - Sync waves, app-of-apps pattern, health checks
10+
- [Backup & Restore](backup-restore.md) - Kyverno + VolSync + PVC Plumber automated backups
11+
- [Full Backup Flow](pvc-plumber-full-flow.md) - Complete bare-metal to disaster recovery walkthrough
12+
- [Network Topology](network-topology.md) - Cluster networking and 10G infrastructure
13+
- [Network Security](network-policy.md) - Cilium network policies and LAN isolation

mkdocs.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
site_name: Talos ArgoCD Proxmox
2+
site_description: Production GitOps Kubernetes cluster on Talos OS
3+
repo_url: https://github.com/mitchross/talos-argocd-proxmox
4+
5+
theme:
6+
name: material
7+
palette:
8+
scheme: slate
9+
primary: blue
10+
features:
11+
- content.code.copy
12+
13+
plugins:
14+
- search
15+
- mermaid2
16+
17+
markdown_extensions:
18+
- admonition
19+
- pymdownx.details
20+
- pymdownx.superfences:
21+
custom_fences:
22+
- name: mermaid
23+
class: mermaid
24+
format: !!python/name:mermaid2.fence_mermaid_custom
25+
- pymdownx.highlight:
26+
anchor_linenums: true
27+
- pymdownx.inlinehilite
28+
- tables
29+
30+
nav:
31+
- Home: index.md
32+
- Architecture:
33+
- ArgoCD & GitOps: argocd.md
34+
- Network Topology: network-topology.md
35+
- Network Security: network-policy.md
36+
- Backup & Restore:
37+
- Overview: backup-restore.md
38+
- Full Flow: pvc-plumber-full-flow.md

0 commit comments

Comments
 (0)