c0f1e74bed
Co-authored-by: Romain <rtribotte@users.noreply.github.com>
31 lines
928 B
Go
31 lines
928 B
Go
package cli
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"strings"
|
|
|
|
"github.com/traefik/paerser/cli"
|
|
"github.com/traefik/paerser/env"
|
|
"github.com/traefik/traefik/v2/pkg/log"
|
|
)
|
|
|
|
// EnvLoader loads a configuration from all the environment variables prefixed with "TRAEFIK_".
|
|
type EnvLoader struct{}
|
|
|
|
// Load loads the command's configuration from the environment variables.
|
|
func (e *EnvLoader) Load(_ []string, cmd *cli.Command) (bool, error) {
|
|
vars := env.FindPrefixedEnvVars(os.Environ(), env.DefaultNamePrefix, cmd.Configuration)
|
|
if len(vars) == 0 {
|
|
return false, nil
|
|
}
|
|
|
|
if err := env.Decode(vars, env.DefaultNamePrefix, cmd.Configuration); err != nil {
|
|
log.WithoutContext().Debug("environment variables", strings.Join(vars, ", "))
|
|
return false, fmt.Errorf("failed to decode configuration from environment variables: %w ", err)
|
|
}
|
|
|
|
log.WithoutContext().Println("Configuration loaded from environment variables.")
|
|
|
|
return true, nil
|
|
}
|