chore: make format
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
decentral1se 2024-12-30 18:07:58 +01:00
parent e3b0500875
commit a159583874
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410

View File

@ -62,13 +62,13 @@ func NewVersionOverview(
}
rows := [][]string{
[]string{"APP", domain},
[]string{"RECIPE", app.Recipe.Name},
[]string{"SERVER", server},
[]string{"DEPLOYED", deployedVersion},
[]string{"CURRENT CHAOS ", deployedChaosVersion},
[]string{fmt.Sprintf("TO %s", strings.ToUpper(kind)), toDeployVersion},
[]string{"CONFIG", deployConfig},
{"APP", domain},
{"RECIPE", app.Recipe.Name},
{"SERVER", server},
{"DEPLOYED", deployedVersion},
{"CURRENT CHAOS ", deployedChaosVersion},
{fmt.Sprintf("TO %s", strings.ToUpper(kind)), toDeployVersion},
{"CONFIG", deployConfig},
}
overview := formatter.CreateOverview(
@ -132,14 +132,14 @@ func DeployOverview(
}
rows := [][]string{
[]string{"APP", domain},
[]string{"RECIPE", app.Recipe.Name},
[]string{"SERVER", server},
[]string{"DEPLOYED", deployedVersion},
[]string{"CURRENT CHAOS ", deployedChaosVersion},
[]string{"TO DEPLOY", toDeployVersion},
[]string{"NEW CHAOS", toDeployChaosVersion},
[]string{"CONFIG", deployConfig},
{"APP", domain},
{"RECIPE", app.Recipe.Name},
{"SERVER", server},
{"DEPLOYED", deployedVersion},
{"CURRENT CHAOS ", deployedChaosVersion},
{"TO DEPLOY", toDeployVersion},
{"NEW CHAOS", toDeployChaosVersion},
{"CONFIG", deployConfig},
}
overview := formatter.CreateOverview("DEPLOY OVERVIEW", rows)
@ -188,12 +188,12 @@ func UndeployOverview(
}
rows := [][]string{
[]string{"APP", domain},
[]string{"RECIPE", app.Recipe.Name},
[]string{"SERVER", server},
[]string{"DEPLOYED", version},
[]string{"CHAOS", chaosVersion},
[]string{"CONFIG", deployConfig},
{"APP", domain},
{"RECIPE", app.Recipe.Name},
{"SERVER", server},
{"DEPLOYED", version},
{"CHAOS", chaosVersion},
{"CONFIG", deployConfig},
}
overview := formatter.CreateOverview("UNDEPLOY OVERVIEW", rows)