func getKeystore() *keystore.Keystore { if globalFlags.InsecureFlags.SkipImageCheck() { return nil } config := keystore.NewConfig(globalFlags.SystemConfigDir, globalFlags.LocalConfigDir) return keystore.New(config) }
func getKeystore() *keystore.Keystore { if globalFlags.InsecureSkipVerify { return nil } config := keystore.NewConfig(globalFlags.SystemConfigDir, globalFlags.LocalConfigDir) return keystore.New(config) }