Auto-sync: 2026-07-24

This commit is contained in:
Dominik Schön
2026-07-24 22:00:15 +00:00
parent de97cd6d20
commit 1643a0a6b5
36 changed files with 920 additions and 499 deletions
+41
View File
@@ -0,0 +1,41 @@
---
title: SSH-Keys (Quick Reference)
category: reference
tags: [ssh, keys, reference, quick-lookup]
created: "2026-07-24"
modified: "2026-07-24"
---
# SSH-Keys
## Key-Übersicht
| Key | Zweck | Fingerprint | Ziel-Hosts |
|-----|-------|--------------|------------|
| `id_ed25519_proxmox` | Proxmox Hosts (10.0.20.x) | — | 9 PVE Nodes |
| `id_ed25519_workers` | RKE2 Worker Nodes | `...kzBo` | 10.0.30.6x |
| `id_ed25519_cloudinit` | Cloud-init initial | `...JUYm` | VM200, Workers |
| `id_ed25519` | VM200 (debian user) | `...MmkM` | 10.0.30.124 |
## SSH-Befehle
```bash
# Proxmox Hosts
ssh -i ~/.ssh/id_ed25519_proxmox root@10.0.20.x
# VM200 (IaC Runner)
ssh -i ~/.ssh/id_ed25519_proxmox debian@10.0.30.124
# K8s Worker (via VM200)
ssh -i /root/.ssh/id_ed25519_workers root@10.0.30.6x
```
## ArgoCD SSH Deploy Key
- Ed25519 Key als Gitea Deploy Key (read-only)
- ArgoCD Secret `argocd-repo-k8s-gitea` im argocd Namespace
- `known_hosts` ConfigMap mit Gitea SSH Hostkey für git.schoen.codes
## CT9999 (Traefik DMZ)
- root / [REDACTED] (siehe 1Password)
## Related
- [[reference/ip-map]]
- [[concepts/credential-policy]]