From 9991eaf046f1cd4f24a3d271bada7b7947d395f5 Mon Sep 17 00:00:00 2001 From: Marco van Zijl Date: Fri, 2 May 2025 22:31:37 +0200 Subject: [PATCH] Update README.md with additional instructions for applying patches, resetting nodes, and ArgoCD default login --- readme.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/readme.md b/readme.md index da3e3c3..73f341d 100644 --- a/readme.md +++ b/readme.md @@ -43,3 +43,25 @@ TODO ## TODO - Remove secrets from config + +## Misc + +### Applying patches + +```bash +talosctl patch machineconfig -p @argocd.yaml -n 192.168.0.0 +``` + +### Reset node + +```bash +talosctl reset --system-labels-to-wipe EPHEMERAL,STATE --reboot -n 192.168.0.0 +``` + +### ArgoCD default login + +User: admin, password can be retrieved with (ignore the '%' at the end): + +```bash +kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d +```