go(run.go): add comment [skip ci]

This commit is contained in:
surtur 2023-08-13 16:48:39 +02:00
parent 7f87d0f2c2
commit 096b486dd8
Signed by: wanderer
SSH Key Fingerprint: SHA256:MdCZyJ2sHLltrLBp0xQO0O1qTW9BT/xl5nXkDvhlMCI

5
run.go

@ -119,6 +119,11 @@ func run() error { //nolint:gocognit
// TODO: deploy containers with podman using Ansible (https://www.redhat.com/sysadmin/automate-podman-ansible)
// TODO: add health checks for pod's containers (db, app)
// load the config if possible, an error could mean multiple things:
// * just couldn't read the config
// * parsed the config but:
// * the schema provided is too new for the app - keep the older schema or update the app
// * the schema provided is too old for the app - upgrade the config schema or downgrade the app
conf, err := config.Load(*configFlag, *configIsPathFlag)
if err != nil {
return fmt.Errorf("couldn't load the configuration (isPath: '%t') '%s', full err: %w",