WIP: Initial stab at secrets/configs/images

This commit is contained in:
3wc
2025-09-01 13:43:10 -04:00
parent dc207a0138
commit 6d634ea4e2
6 changed files with 116 additions and 2 deletions

View File

@ -50,6 +50,9 @@ func DeployOverview(
toDeployVersion string,
releaseNotes string,
warnMessages []string,
secrets string,
configs string,
images string,
) error {
deployConfig := "compose.yml"
if composeFiles, ok := app.Env["COMPOSE_FILE"]; ok {
@ -80,6 +83,10 @@ func DeployOverview(
{i18n.G("CURRENT DEPLOYMENT"), formatter.BoldDirtyDefault(deployedVersion)},
{i18n.G("ENV VERSION"), formatter.BoldDirtyDefault(envVersion)},
{i18n.G("NEW DEPLOYMENT"), formatter.BoldDirtyDefault(toDeployVersion)},
{"", ""},
{i18n.G("SECRETS"), secrets},
{i18n.G("CONFIGS"), configs},
{i18n.G("IMAGES"), images},
}
deployType := getDeployType(deployedVersion, toDeployVersion)