Files
memory/reference/ssh-keys.md
T
2026-07-24 22:00:15 +00:00

42 lines
1.1 KiB
Markdown

---
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]]