Browse Source

jpictl: add `-S` flag to ignore the config file and always scan

Signed-off-by: Alejandro Mery <amery@jpi.io>
pull/34/head
Alejandro Mery 8 months ago
parent
commit
b8e1b321e5
  1. 40
      cmd/jpictl/config.go

40
cmd/jpictl/config.go

@ -22,6 +22,8 @@ type Config struct {
ConfigFile string ConfigFile string
} }
var forceScan bool
var cfg = &Config{ var cfg = &Config{
Base: "m", Base: "m",
Domain: "jpi.cloud", Domain: "jpi.cloud",
@ -30,19 +32,24 @@ var cfg = &Config{
// LoadZones loads all zones and machines in the config directory // LoadZones loads all zones and machines in the config directory
// or file // or file
func (cfg *Config) LoadZones(resolve bool) (*cluster.Cluster, error) { func (cfg *Config) LoadZones(resolve bool) (*cluster.Cluster, error) {
// try config file first var zones *cluster.Cluster
zones, err := cluster.NewFromConfig(cfg.ConfigFile, var err error
cluster.ResolvePublicAddresses(resolve),
cluster.WithLogger(log), if !forceScan {
) // try config file first
zones, err = cluster.NewFromConfig(cfg.ConfigFile,
cluster.ResolvePublicAddresses(resolve),
cluster.WithLogger(log),
)
switch { switch {
case err == nil: case err == nil:
// file was good // file was good
return zones, nil return zones, nil
case !os.IsNotExist(err) || cfg.ConfigFile != DefaultConfigFile: case !os.IsNotExist(err) || cfg.ConfigFile != DefaultConfigFile:
// file was bad // file was bad
return nil, core.Wrap(err, "NewFromConfig(%q)", cfg.ConfigFile) return nil, core.Wrap(err, "NewFromConfig(%q)", cfg.ConfigFile)
}
} }
// default file doesn't exist. scan instead. // default file doesn't exist. scan instead.
@ -53,7 +60,10 @@ func (cfg *Config) LoadZones(resolve bool) (*cluster.Cluster, error) {
} }
func init() { func init() {
rootCmd.PersistentFlags(). flags := rootCmd.PersistentFlags()
StringVarP(&cfg.ConfigFile, "config-file", "f",
DefaultConfigFile, "config file (JSON or YAML)") flags.StringVarP(&cfg.ConfigFile, "config-file", "f",
DefaultConfigFile, "config file (JSON or YAML)")
flags.BoolVarP(&forceScan, "force-scan", "S",
false, "ignore config file and scan the directory instead")
} }

Loading…
Cancel
Save