v0.84.0: catalog-driven initial_credentials — read an app's auto-generated first-login from a file and show it on the app page

This commit is contained in:
2026-06-26 11:00:06 +02:00
parent 49f6dbf847
commit 1705d71dd5
7 changed files with 341 additions and 0 deletions
+6
View File
@@ -687,6 +687,12 @@ func deepCopyStack(s *Stack) Stack {
cp.Meta.HealthCheck = &hcCopy
}
// Deep-copy Meta.InitialCreds pointer
if s.Meta.InitialCreds != nil {
icCopy := *s.Meta.InitialCreds
cp.Meta.InitialCreds = &icCopy
}
return cp
}