Michael Smith
Michael Smith
I should clarify the mgr pod itself doesn't cycle, but the process inside does this respawn loop. Here's the logs from it for the last five or so cycles: [rook-mgr-logs.txt](https://github.com/rook/rook/files/12731334/rook-mgr-logs.txt)
If you mean the pod spec for the osd prepare pods, here's an example of two jobs one right after the other: [rook-ceph-osd-prepare-m1-5xv2d.txt](https://github.com/rook/rook/files/12810964/rook-ceph-osd-prepare-m1-5xv2d.txt) [rook-ceph-osd-prepare-m1-x26d7.txt](https://github.com/rook/rook/files/12810965/rook-ceph-osd-prepare-m1-x26d7.txt) Another pair from the jobs themselves:...
Well, after poking with it a bunch I was able to get it to stabilize. I couldn't find any totally reproducible steps, but I had varying success stopping the loop...
Did some local tests and it appears to be working as intended: ``` Terraform will perform the following actions: # google_service_account.service_account will be created + resource "google_service_account" "service_account" { +...
Thanks for the tips, I'll be back to work on this in a bit
I still need to add the universe check, working on that now
@melinath I added a basic reusable function to get the UniverseDomain since I wasn't sure what other use cases there might be for it. I'm open to suggestions if you...
@soypat hey, I had a chance to test this new branch and it looks good to me. Just had a minor note, `DHCPResults.Subnet` is getting populated with a host address...
Also, after just a little bit of poking around that's quite the stack, nicely done
Looks like you can just add the Masked() method and it'll drop the host bits for you: ``` Subnet: netip.PrefixFrom(router, int(s.dhcp.SubnetCIDRBits())).Masked(), ```