Added some bug tasks which came out of real world testing
This commit is contained in:
parent
e6da6a3453
commit
3be64e913b
@ -495,8 +495,9 @@ func (n *network) initialize(
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Do this now so that everything is stable before returning. This also
|
// Do this now so that everything is stable before returning. This also
|
||||||
// serves a dual-purpose, as it makes sure that the PUT from the postChildrenInit
|
// serves a dual-purpose, as it makes sure that the PUT from the
|
||||||
// above has propagated from the local garage instance, if there is one.
|
// postChildrenInit above has propagated from the local garage instance, if
|
||||||
|
// there is one.
|
||||||
n.logger.Info(ctx, "Reloading hosts from network storage")
|
n.logger.Info(ctx, "Reloading hosts from network storage")
|
||||||
if err = n.reloadHosts(ctx); err != nil {
|
if err = n.reloadHosts(ctx); err != nil {
|
||||||
return fmt.Errorf("Reloading network bootstrap: %w", err)
|
return fmt.Errorf("Reloading network bootstrap: %w", err)
|
||||||
|
14
tasks/bugs/garage-apply-layout-before-stopping-instance.md
Normal file
14
tasks/bugs/garage-apply-layout-before-stopping-instance.md
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
---
|
||||||
|
type: host
|
||||||
|
---
|
||||||
|
|
||||||
|
When removing a storage allocation the new layout should be applied _before_ the
|
||||||
|
impacted garage instance is shut down. Isle should ideally also wait for the
|
||||||
|
impacted instance to no longer be in the "draining" state prior to shutting it
|
||||||
|
down, if possible.
|
||||||
|
|
||||||
|
Some care needs to be taken in the case of the `daemon.yml` file being used for
|
||||||
|
configuration. The daemon should probably initially load using the old
|
||||||
|
configuration, and only then apply the new configuration as if it were applied
|
||||||
|
using `SetConfig`. This way the garage instance being removed can be brought
|
||||||
|
back up, drained, then shut down again.
|
13
tasks/bugs/garage-credential-propagation-fix.md
Normal file
13
tasks/bugs/garage-credential-propagation-fix.md
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
type: task
|
||||||
|
---
|
||||||
|
|
||||||
|
It seems in real world testing that this error came up after `isle storage
|
||||||
|
allocation add` had already completed:
|
||||||
|
|
||||||
|
```
|
||||||
|
ERROR [daemon/networks/micropelago.net] Background job failed errMsg="getting hosts from garage: listing objects: Forbidden: No such key: XXXXXXXXXXXXXXXXXXXXXXXXXX" workerLabel=reloadHosts
|
||||||
|
```
|
||||||
|
|
||||||
|
Isle should wait until bucket credentials are propagated to the new garage
|
||||||
|
instance before considering it to be online.
|
9
tasks/bugs/include-garage-firewall-entries.md
Normal file
9
tasks/bugs/include-garage-firewall-entries.md
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
type: task
|
||||||
|
---
|
||||||
|
|
||||||
|
When listing firewall entries using `isle vpn firewall list`, any firewall
|
||||||
|
entries which are automatically included for garage (and all other services in
|
||||||
|
the future) should be included in the returned list as well. These should be
|
||||||
|
annotated in such a way that the user understands they are automatically
|
||||||
|
generated and can't be changed.
|
@ -1,5 +1,7 @@
|
|||||||
---
|
---
|
||||||
type: task
|
type: task
|
||||||
|
after:
|
||||||
|
- ./garage-apply-layout-before-stopping-instance.md
|
||||||
---
|
---
|
||||||
|
|
||||||
When SetConfig is called, but ends up erroring, the new config should not end up
|
When SetConfig is called, but ends up erroring, the new config should not end up
|
||||||
|
Loading…
Reference in New Issue
Block a user