Skip to content

Commit

Permalink
fix(compute/deploy): add setup message for existing service users
Browse files Browse the repository at this point in the history
  • Loading branch information
Integralist committed Oct 24, 2023
1 parent b633a18 commit ab845ed
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkg/commands/compute/deploy.go
Expand Up @@ -203,6 +203,9 @@ func (c *DeployCommand) Exec(in io.Reader, out io.Writer) (err error) {
}
return err
}
if !c.Globals.Flags.AutoYes && !c.Globals.Flags.NonInteractive && c.Globals.Manifest.File.Setup.Defined() && !c.Globals.Flags.Quiet {
text.Info(out, "\nProcessing of the %s [setup] configuration happens only for a new service. Once a service is created, any further changes to the service or its resources must be made manually.", manifestFilename)
}
}

var sr ServiceResources
Expand Down

0 comments on commit ab845ed

Please sign in to comment.