Skip to content

feat(images): resolve component imgs at reconcile time; paced fleet rollout - #556

Merged
Verolop merged 5 commits into
multigres:mainfrom
Verolop:feat/dynamic-component-images
Aug 20, 2026
Merged

feat(images): resolve component imgs at reconcile time; paced fleet rollout#556
Verolop merged 5 commits into
multigres:mainfrom
Verolop:feat/dynamic-component-images

Conversation

@Verolop

@Verolop Verolop commented Aug 1, 2026

Copy link
Copy Markdown
Contributor

Description

this PR resolves component images at reconcile time instead of freezing them into the spec when a cluster is created.

Today the webhook writes the current images into spec.images, where they are indistinguishable from deliberate pins and never change again. A cluster stays on the images it was created with, and updating several means editing each one by hand. Now unset images come from the operator's configuration on every reconcile, and anything set in the spec stays a pin.

The defaults are also no longer fixed at build time. MULTIGRES_IMAGE_* on the operator Deployment overrides them per component, so a deployment can run its own images without patching image_defaults.go.

Main changes

  • The webhook stops writing images. The reconciler fills unset fields, existing values remain pins. Existing clusters keep their six persisted values and stay fully pinned, so nothing moves under them. There is no migration.
  • MULTIGRES_IMAGE_* deployment-level overrides for the default set, documented in docs/configuration.md.
  • --image-update-strategy=lazy holds a cluster on its current images until spec.imageUpdatePolicy.acknowledgedRevision names the new set, so clusters update one at a time. Default stays immediate.
  • The Deployment uses Recreate so old and new webhook behavior are never served together.

Testing

Unit tests cover default resolution, explicit and partial pins, lazy adoption, bad acknowledgements, corrupt records, and status fallback. The reconcile test checks images on child resources before and after acknowledgement. e2e is green.

@Verolop Verolop self-assigned this Aug 1, 2026
@Verolop
Verolop requested a review from a team as a code owner August 1, 2026 22:53
@github-actions

This comment has been minimized.

@Verolop Verolop changed the title Feat/dynamic component images feat(images): resolve component imgs at reconcile time; paced fleet rollout Aug 1, 2026
@Verolop
Verolop marked this pull request as draft August 2, 2026 08:38
@github-actions

This comment has been minimized.

@github-actions

This comment has been minimized.

@Verolop
Verolop force-pushed the feat/dynamic-component-images branch 2 times, most recently from 5ed6b6d to 4e8d0b3 Compare August 19, 2026 16:33
@github-actions

This comment has been minimized.

@github-actions

This comment has been minimized.

@github-actions

This comment has been minimized.

@Verolop
Verolop marked this pull request as ready for review August 19, 2026 16:41
@github-actions

Copy link
Copy Markdown

E2E tests successView run

The defaulting webhook wrote default images into spec.images at admission. This commit adds an images package that owns them instead. Clusters that already have values there keep running them, unchanged.

- Frozen images meant every cluster stayed on whatever versions it was created with, and moving the fleet meant patching each one by hand.
- Once in the spec, an operator-written image looks the same as a pin the user set on purpose, so nothing can safely update it.

Signed-off-by: Verónica López <veronica.lopez@supabase.io>
spec.imageUpdatePolicy gets a strategy field so one cluster can be frozen or advanced independently of the operator's fleet-wide default.

- A single flag on the operator can't isolate one project during a maintenance window without moving the whole fleet with it.

Signed-off-by: Verónica López <veronica.lopez@supabase.io>
The reconciler fills unset images from operator config on every pass, and explicit values in the spec still win. Adds a lazy mode that keeps a cluster on its current images until the acknowledged revision in the spec says it can move.

- Without lazy mode, changing operator config would restart every cluster at once, because reconciles run constantly for unrelated reasons.

- The control plane then moves one spec field per project instead of six image values it would have to look up itself.

Signed-off-by: Verónica López <veronica.lopez@supabase.io>
… pinned

- add status.images.effective and status.images.source so each cluster reports the complete image set rendered into children and whether it comes from explicit pins, operator defaults, or a mix.

- when all six component images are explicitly pinned, the cluster no longer participates in operator-default resolution: the applied-images annotation is removed once on the transition so stale defaults cannot resurface on a later unpin, and steady-state reconciles do no default image API, event, or log work. ImageRolloutPending reports False with reason FullyPinned in that state.

- fix tracking-label and applied-images patches to write through a copy so the API response cannot discard in-memory defaults computed earlier in the same reconcile pass.

Signed-off-by: Verónica López <veronica.lopez@supabase.io>
- make lazy image state fail-safe by reporting the applied and available sets, preserving fully pinned transitions with a tombstone, and stopping when recorded state is invalid with no status fallback. Immediate mode still adopts current defaults.

- use Recreate and clear the server-defaulted rollingUpdate field so old and new webhook versions are never served together.

Signed-off-by: Verónica López <veronica.lopez@supabase.io>
@Verolop
Verolop force-pushed the feat/dynamic-component-images branch from 4e8d0b3 to 26bfbd3 Compare August 19, 2026 21:37
@github-actions

Copy link
Copy Markdown

🔬 Go Test Coverage Report

Summary

Coverage Type Result
Threshold 70%
Previous Test Coverage 76.3%
New Test Coverage 76.2%

Status

✅ PASS

Detail

Show New Coverage
github.com/multigres/multigres-operator/api/v1alpha1/cell_types.go:267:								init						100.0%
github.com/multigres/multigres-operator/api/v1alpha1/celltemplate_types.go:67:							init						100.0%
github.com/multigres/multigres-operator/api/v1alpha1/common_types.go:139:							IsEnabled					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/common_types.go:304:							ComponentCertSecretName				0.0%
github.com/multigres/multigres-operator/api/v1alpha1/common_types.go:311:							ComponentCertCommonName				0.0%
github.com/multigres/multigres-operator/api/v1alpha1/common_types.go:467:							MergePVCDeletionPolicy				0.0%
github.com/multigres/multigres-operator/api/v1alpha1/common_types.go:498:							MergeDurabilityPolicy				0.0%
github.com/multigres/multigres-operator/api/v1alpha1/common_types.go:507:							MergeBackupConfig				81.8%
github.com/multigres/multigres-operator/api/v1alpha1/coretemplate_types.go:68:							init						100.0%
github.com/multigres/multigres-operator/api/v1alpha1/multigrescluster_types.go:320:						EffectiveCellTemplate				0.0%
github.com/multigres/multigres-operator/api/v1alpha1/multigrescluster_types.go:809:						init						100.0%
github.com/multigres/multigres-operator/api/v1alpha1/observability_helpers.go:37:						BuildOTELEnvVars				100.0%
github.com/multigres/multigres-operator/api/v1alpha1/observability_helpers.go:43:						BuildOTELEnvVarsWithResourceAttributes		91.1%
github.com/multigres/multigres-operator/api/v1alpha1/observability_helpers.go:132:						buildOTELResourceAttributes			92.9%
github.com/multigres/multigres-operator/api/v1alpha1/observability_helpers.go:161:						filterOTELResourceAttributes			85.7%
github.com/multigres/multigres-operator/api/v1alpha1/observability_helpers.go:183:						splitOTELResourceAttributes			100.0%
github.com/multigres/multigres-operator/api/v1alpha1/observability_helpers.go:206:						BuildOTELSamplingVolume				0.0%
github.com/multigres/multigres-operator/api/v1alpha1/observability_helpers.go:231:						envOrCRD					100.0%
github.com/multigres/multigres-operator/api/v1alpha1/shard_types.go:362:							init						100.0%
github.com/multigres/multigres-operator/api/v1alpha1/shardtemplate_types.go:91:							init						100.0%
github.com/multigres/multigres-operator/api/v1alpha1/tablegroup_types.go:214:							init						100.0%
github.com/multigres/multigres-operator/api/v1alpha1/toposerver_types.go:245:							init						100.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:14:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:19:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:29:						DeepCopyInto					64.7%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:54:						DeepCopy					80.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:64:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:69:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:79:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:88:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:98:						DeepCopyObject					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:106:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:121:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:131:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:141:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:151:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:167:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:177:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:191:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:201:						DeepCopyObject					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:209:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:224:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:234:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:269:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:279:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:291:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:301:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:306:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:316:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:324:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:334:						DeepCopyObject					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:342:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:356:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:366:						DeepCopyObject					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:374:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:394:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:404:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:414:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:424:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:429:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:439:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:444:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:454:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:470:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:480:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:488:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:498:						DeepCopyObject					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:506:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:520:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:530:						DeepCopyObject					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:538:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:558:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:568:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:585:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:595:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:600:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:610:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:627:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:637:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:654:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:664:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:681:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:691:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:701:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:711:						DeepCopyInto					100.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:717:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:727:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:762:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:772:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:777:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:787:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:792:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:802:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:822:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:832:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:837:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:847:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:855:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:865:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:875:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:885:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:900:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:910:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:920:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:930:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:940:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:950:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:961:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:971:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:980:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:990:						DeepCopyObject					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:998:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1012:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1022:						DeepCopyObject					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1030:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1108:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1118:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1164:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1174:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1190:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1200:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1210:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1220:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1225:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1235:						DeepCopyInto					100.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1240:						DeepCopy					80.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1250:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1262:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1272:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1312:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1322:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1327:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1337:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1346:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1356:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1361:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1371:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1391:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1401:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1406:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1416:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1421:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1431:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1440:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1450:						DeepCopyObject					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1458:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1478:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1488:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1498:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1508:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1538:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1548:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1562:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1572:						DeepCopyObject					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1580:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1609:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1619:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1654:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1664:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1741:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1751:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1784:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1794:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1802:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1812:						DeepCopyObject					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1820:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1834:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1844:						DeepCopyObject					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1852:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1886:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1896:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1926:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1936:						DeepCopyInto					40.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1946:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1956:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1965:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1975:						DeepCopyObject					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:1983:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:2005:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:2015:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:2029:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:2039:						DeepCopyObject					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:2047:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:2106:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:2116:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:2128:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:2138:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:2143:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:2153:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:2162:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:2172:						DeepCopyObject					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:2180:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:2194:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:2204:						DeepCopyObject					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:2212:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:2227:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:2237:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:2249:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:2259:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:2269:						DeepCopy					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:2279:						DeepCopyInto					0.0%
github.com/multigres/multigres-operator/api/v1alpha1/zz_generated.deepcopy.go:2284:						DeepCopy					0.0%
github.com/multigres/multigres-operator/cmd/multigres-gc/main.go:39:								init						0.0%
github.com/multigres/multigres-operator/cmd/multigres-gc/main.go:43:								main						0.0%
github.com/multigres/multigres-operator/cmd/multigres-gc/main.go:125:								registerCleankeepers				0.0%
github.com/multigres/multigres-operator/cmd/multigres-gc/main.go:131:								namespaceOrAll					0.0%
github.com/multigres/multigres-operator/cmd/multigres-operator/main.go:79:							init						0.0%
github.com/multigres/multigres-operator/cmd/multigres-operator/main.go:85:							main						0.0%
github.com/multigres/multigres-operator/cmd/multigres-operator/main.go:537:							certsExist					0.0%
github.com/multigres/multigres-operator/pkg/cert/generator.go:52:								WithExtKeyUsages				100.0%
github.com/multigres/multigres-operator/pkg/cert/generator.go:59:								WithOrganization				100.0%
github.com/multigres/multigres-operator/pkg/cert/generator.go:81:								GenerateCA					88.9%
github.com/multigres/multigres-operator/pkg/cert/generator.go:143:								GenerateServerCert				91.7%
github.com/multigres/multigres-operator/pkg/cert/generator.go:217:								ParseCA						100.0%
github.com/multigres/multigres-operator/pkg/cert/manager.go:94:									componentName					100.0%
github.com/multigres/multigres-operator/pkg/cert/manager.go:101:								organization					100.0%
github.com/multigres/multigres-operator/pkg/cert/manager.go:108:								extKeyUsages					100.0%
github.com/multigres/multigres-operator/pkg/cert/manager.go:125:								NewManager					100.0%
github.com/multigres/multigres-operator/pkg/cert/manager.go:136:								Bootstrap					100.0%
github.com/multigres/multigres-operator/pkg/cert/manager.go:151:								Start						100.0%
github.com/multigres/multigres-operator/pkg/cert/manager.go:179:								reconcilePKI					100.0%
github.com/multigres/multigres-operator/pkg/cert/manager.go:203:								ensureCA					96.8%
github.com/multigres/multigres-operator/pkg/cert/manager.go:283:								ensureServerCert				100.0%
github.com/multigres/multigres-operator/pkg/cert/manager.go:410:								dnsNameSetsEqual				100.0%
github.com/multigres/multigres-operator/pkg/cert/manager.go:430:								waitForProjection				100.0%
github.com/multigres/multigres-operator/pkg/cert/manager.go:455:								setOwner					100.0%
github.com/multigres/multigres-operator/pkg/cert/manager.go:470:								emitEvent					100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/builders_cell.go:14:			BuildCell					100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/builders_global.go:33:			BuildGlobalTopoServer				100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/builders_global.go:94:			BuildMultiadminDeployment			100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/builders_global.go:253:			BuildMultiadminService				100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/builders_global.go:294:			BuildMultiadminWebDeployment			100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/builders_global.go:407:			BuildMultiadminWebService			100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/builders_global.go:465:			BuildMultigatewayGlobalService			100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/builders_global.go:529:			BuildMultigatewayGlobalReplicaService		100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/builders_global.go:570:			postgresSuperuserOrDefault			100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/builders_tablegroup.go:14:		BuildTableGroup					100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/builders_tablegroup.go:94:		buildCellTopologyLabels				100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/certificate.go:58:			buildCertificate				100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/certificate.go:79:			publicGatewayDNSNames				100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/certificate.go:87:			buildInternalCertificates			91.7%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/certificate.go:146:			truncateCommonName				100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/certificate.go:155:			buildCertificateFromSpec			87.5%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/certificate.go:197:			reconcileCertificate				85.7%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/certificate.go:270:			listCertificates				85.7%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/certificate.go:293:			findCertificateByName				100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/certificate.go:309:			deleteOwnedCertificates				94.4%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/certificate.go:367:			isOwnedBy					100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/certificate.go:381:			isNoMatchError					100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/images.go:27:				imagesConfig					100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/images.go:62:				resolveImages					96.1%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/images.go:213:				recordFullyPinned				83.3%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/images.go:248:				recordedImages					100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/images.go:276:				diffComponentImages				92.3%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/images.go:300:				recordAppliedImages				88.9%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/multigrescluster_controller.go:60:	Reconcile					93.4%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/multigrescluster_controller.go:342:	ensureClusterFinalizer				87.5%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/multigrescluster_controller.go:365:	handleDeletion					70.3%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/multigrescluster_controller.go:465:	SetupWithManager				100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/multigrescluster_controller.go:503:	projectRefOrGenerationChangedPredicate		69.2%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/multigrescluster_controller.go:537:	enqueueRequestsFromTemplate			100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/multigrescluster_controller.go:564:	templateKindFromObject				100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/multigrescluster_controller.go:580:	referencesTemplate				100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/multigrescluster_controller.go:597:	collectResolvedTemplates			100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/multigrescluster_controller.go:661:	collectTrackingLabels				100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/reconcile_cells.go:17:			reconcileCells					85.1%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/reconcile_databases.go:17:		reconcileDatabases				87.5%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/reconcile_global.go:26:			reconcileGlobalComponents			100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/reconcile_global.go:44:			reconcileGlobalTopoServer			81.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/reconcile_global.go:105:		reconcileMultiadmin				100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/reconcile_global.go:162:		globalTopoRef					100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/reconcile_global.go:199:		reconcileMultiadminWeb				100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/reconcile_topology.go:47:		reconcileTopology				73.4%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/reconcile_topology.go:181:		specCellNames					100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/reconcile_topology.go:189:		cellNamesToKeepInTopology			87.5%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/reconcile_topology.go:221:		managedLocalTopoServerReady			73.3%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/reconcile_topology.go:262:		openTopoStore					66.7%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/reconcile_topology.go:275:		isPruningEnabled				100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/reconcile_topology.go:286:		handleTopoUnavailable				100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/status.go:22:				extractExternalEndpoint				100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/status.go:42:				computeGatewayCondition				100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/status.go:79:				computeAdminWebCondition			100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/multigrescluster/status.go:113:				updateStatus					98.3%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/tablegroup/builders.go:14:				BuildShard					100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/tablegroup/builders.go:85:				calculateTotalReplicas				100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/tablegroup/reconcile_shards.go:20:			stepListChildShards				100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/tablegroup/reconcile_shards.go:38:			stepApplyDesiredShards				100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/tablegroup/reconcile_shards.go:89:			observedCleanupInProgress			85.7%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/tablegroup/reconcile_shards.go:106:			stepReconcileUndesired				100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/tablegroup/reconcile_shards.go:166:			stepRequeueIfPending				100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/tablegroup/status.go:19:					stepComputeStatus				97.8%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/tablegroup/status.go:112:				stepPatchStatus					100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/tablegroup/steps.go:48:					Error						100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/tablegroup/steps.go:52:					Unwrap						100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/tablegroup/steps.go:56:					newStepError					100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/tablegroup/steps.go:65:					continueStep					100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/tablegroup/steps.go:69:					doneStep					100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/tablegroup/steps.go:76:					runSteps					100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/tablegroup/steps.go:93:					stepFetchTableGroup				100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/tablegroup/steps.go:107:					stepHandlePendingDeletion			100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/tablegroup/steps.go:119:					stepShortCircuitDeletion			100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/tablegroup/tablegroup_controller.go:39:			Reconcile					100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/tablegroup/tablegroup_controller.go:92:			withStepErrorHandling				100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/tablegroup/tablegroup_controller.go:114:			handlePendingDeletion				96.3%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/tablegroup/tablegroup_controller.go:189:			setShardPendingDeletion				100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/tablegroup/tablegroup_controller.go:204:			childShardSelector				100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/tablegroup/tablegroup_controller.go:216:			SetupWithManager				100.0%
github.com/multigres/multigres-operator/pkg/cluster-handler/controller/tablegroup/tablegroup_controller.go:238:			projectRefOrGenerationChangedPredicate		72.7%
github.com/multigres/multigres-operator/pkg/data-handler/backuphealth/backuphealth.go:48:					Evaluate					92.9%
github.com/multigres/multigres-operator/pkg/data-handler/backuphealth/backuphealth.go:82:					EvaluateBackups					100.0%
github.com/multigres/multigres-operator/pkg/data-handler/backuphealth/backuphealth.go:147:					ParseTime					100.0%
github.com/multigres/multigres-operator/pkg/data-handler/backuphealth/backuphealth.go:160:					Apply						100.0%
github.com/multigres/multigres-operator/pkg/data-handler/drain/drain.go:25:							ExecuteDrainStateMachine			84.0%
github.com/multigres/multigres-operator/pkg/data-handler/drain/drain.go:93:							UpdateDrainState				71.4%
github.com/multigres/multigres-operator/pkg/data-handler/topo/cell.go:18:							RegisterCell					100.0%
github.com/multigres/multigres-operator/pkg/data-handler/topo/cell.go:63:							cellMetadataFromTopoRefs			90.9%
github.com/multigres/multigres-operator/pkg/data-handler/topo/cell.go:99:							createOrUpdateCell				91.7%
github.com/multigres/multigres-operator/pkg/data-handler/topo/cell.go:129:							ManagedLocalTopoServerName			100.0%
github.com/multigres/multigres-operator/pkg/data-handler/topo/cell.go:135:							ManagedLocalTopoServerAddress			100.0%
github.com/multigres/multigres-operator/pkg/data-handler/topo/cell.go:140:							UnregisterCell					100.0%
github.com/multigres/multigres-operator/pkg/data-handler/topo/database.go:18:							RegisterDatabase				91.7%
github.com/multigres/multigres-operator/pkg/data-handler/topo/database.go:88:							UnregisterDatabase				100.0%
github.com/multigres/multigres-operator/pkg/data-handler/topo/database.go:129:							GetBackupLocation				100.0%
github.com/multigres/multigres-operator/pkg/data-handler/topo/database.go:169:							GetDurabilityPolicy				100.0%
github.com/multigres/multigres-operator/pkg/data-handler/topo/database.go:180:							buildDurabilityPolicy				100.0%
github.com/multigres/multigres-operator/pkg/data-handler/topo/pooler.go:38:							GetPoolerStatus					100.0%
github.com/multigres/multigres-operator/pkg/data-handler/topo/pooler.go:102:							GetQuarantinedPods				0.0%
github.com/multigres/multigres-operator/pkg/data-handler/topo/pooler.go:141:							matchPoolerToPod				100.0%
github.com/multigres/multigres-operator/pkg/data-handler/topo/pooler.go:154:							FindPrimaryPooler				100.0%
github.com/multigres/multigres-operator/pkg/data-handler/topo/pooler.go:188:							PoolerRoutingRole				66.7%
github.com/multigres/multigres-operator/pkg/data-handler/topo/pooler.go:197:							IsPrimaryPooler					100.0%
github.com/multigres/multigres-operator/pkg/data-handler/topo/pooler.go:202:							CollectCells					100.0%
github.com/multigres/multigres-operator/pkg/data-handler/topo/pooler.go:218:							ShardFilter					100.0%
github.com/multigres/multigres-operator/pkg/data-handler/topo/pooler.go:229:							PodMatchesPooler				100.0%
github.com/multigres/multigres-operator/pkg/data-handler/topo/pooler.go:245:							MarkDeadPoolers					100.0%
github.com/multigres/multigres-operator/pkg/data-handler/topo/pooler.go:311:							isLifecycleShutdown				100.0%
github.com/multigres/multigres-operator/pkg/data-handler/topo/pooler.go:319:							isLifecycleQuarantined				100.0%
github.com/multigres/multigres-operator/pkg/data-handler/topo/pooler.go:327:							poolerMatchesAnyActivePod			100.0%
github.com/multigres/multigres-operator/pkg/data-handler/topo/store.go:18:							NewStoreFromShard				100.0%
github.com/multigres/multigres-operator/pkg/data-handler/topo/store.go:37:							NewStoreFromCell				100.0%
github.com/multigres/multigres-operator/pkg/data-handler/topo/store.go:57:							NewStoreFromRef					100.0%
github.com/multigres/multigres-operator/pkg/data-handler/topo/store.go:76:							IsTopoUnavailable				100.0%
github.com/multigres/multigres-operator/pkg/data-handler/topo/topology.go:21:							RegisterDatabaseFromSpec			96.8%
github.com/multigres/multigres-operator/pkg/data-handler/topo/topology.go:117:							RegisterCellFromSpec				100.0%
github.com/multigres/multigres-operator/pkg/data-handler/topo/topology.go:160:							PruneDatabases					100.0%
github.com/multigres/multigres-operator/pkg/data-handler/topo/topology.go:207:							PruneCells					100.0%
github.com/multigres/multigres-operator/pkg/data-handler/topo/topology.go:253:							isNodeExists					100.0%
github.com/multigres/multigres-operator/pkg/data-handler/topo/topology.go:261:							isNoNode					100.0%
github.com/multigres/multigres-operator/pkg/gc/gc.go:28:									WithDefaults					0.0%
github.com/multigres/multigres-operator/pkg/gc/pvc/pvc.go:38:									New						100.0%
github.com/multigres/multigres-operator/pkg/gc/pvc/pvc.go:46:									Kind						0.0%
github.com/multigres/multigres-operator/pkg/gc/pvc/pvc.go:48:									Clean						84.6%
github.com/multigres/multigres-operator/pkg/gc/pvc/pvc.go:82:									processPVC					89.7%
github.com/multigres/multigres-operator/pkg/gc/pvc/pvc.go:135:									buildSelector					71.4%
github.com/multigres/multigres-operator/pkg/images/images.go:58:								CompiledDefaults				100.0%
github.com/multigres/multigres-operator/pkg/images/images.go:71:								DefaultsFromEnv					100.0%
github.com/multigres/multigres-operator/pkg/images/images.go:105:								Revision					100.0%
github.com/multigres/multigres-operator/pkg/images/images.go:121:								FromSpec					0.0%
github.com/multigres/multigres-operator/pkg/images/images.go:136:								IsComplete					100.0%
github.com/multigres/multigres-operator/pkg/images/images.go:147:								Complete					100.0%
github.com/multigres/multigres-operator/pkg/monitoring/metrics.go:120:								init						100.0%
github.com/multigres/multigres-operator/pkg/monitoring/metrics.go:140:								Collectors					100.0%
github.com/multigres/multigres-operator/pkg/monitoring/metrics.go:161:								RecordReconcileError				0.0%
github.com/multigres/multigres-operator/pkg/monitoring/recorder.go:7:								SetClusterInfo					100.0%
github.com/multigres/multigres-operator/pkg/monitoring/recorder.go:16:								SetClusterTopology				100.0%
github.com/multigres/multigres-operator/pkg/monitoring/recorder.go:22:								SetCellGatewayReplicas				100.0%
github.com/multigres/multigres-operator/pkg/monitoring/recorder.go:28:								SetShardPoolReplicas				100.0%
github.com/multigres/multigres-operator/pkg/monitoring/recorder.go:36:								SetPoolPodsDrifted				100.0%
github.com/multigres/multigres-operator/pkg/monitoring/recorder.go:41:								SetTopoServerReplicas				100.0%
github.com/multigres/multigres-operator/pkg/monitoring/recorder.go:47:								RecordWebhookRequest				100.0%
github.com/multigres/multigres-operator/pkg/monitoring/recorder.go:57:								SetLastBackupAge				100.0%
github.com/multigres/multigres-operator/pkg/monitoring/recorder.go:62:								IncrementDrainOperations			100.0%
github.com/multigres/multigres-operator/pkg/monitoring/recorder.go:67:								SetRollingUpdateInProgress			100.0%
github.com/multigres/multigres-operator/pkg/monitoring/tracing.go:50:								InitTracing					100.0%
github.com/multigres/multigres-operator/pkg/monitoring/tracing.go:92:								StartReconcileSpan				100.0%
github.com/multigres/multigres-operator/pkg/monitoring/tracing.go:108:								StartChildSpan					100.0%
github.com/multigres/multigres-operator/pkg/monitoring/tracing.go:114:								RecordSpanError					100.0%
github.com/multigres/multigres-operator/pkg/monitoring/tracing.go:125:								InjectTraceContext				100.0%
github.com/multigres/multigres-operator/pkg/monitoring/tracing.go:154:								ExtractTraceContext				100.0%
github.com/multigres/multigres-operator/pkg/monitoring/tracing.go:187:								EnrichLoggerWithTrace				100.0%
github.com/multigres/multigres-operator/pkg/postgresconfig/classify.go:31:							RequiresRestart					100.0%
github.com/multigres/multigres-operator/pkg/postgresconfig/hash.go:55:								StampAndSplit					100.0%
github.com/multigres/multigres-operator/pkg/postgresconfig/hash.go:88:								unquoteValue					100.0%
github.com/multigres/multigres-operator/pkg/postgresconfig/hash.go:101:								parseEffectiveConfig				84.6%
github.com/multigres/multigres-operator/pkg/postgresconfig/hash.go:125:								stripInlineComment				100.0%
github.com/multigres/multigres-operator/pkg/postgresconfig/hash.go:147:								hashSettings					100.0%
github.com/multigres/multigres-operator/pkg/postgresconfig/reload_marker.go:31:							reloadMarkerLine				100.0%
github.com/multigres/multigres-operator/pkg/postgresconfig/render.go:67:							Defaults					100.0%
github.com/multigres/multigres-operator/pkg/postgresconfig/render.go:98:							Render						90.9%
github.com/multigres/multigres-operator/pkg/postgresconfig/render.go:118:							writeSortedMap					100.0%
github.com/multigres/multigres-operator/pkg/postgresconfig/render.go:133:							quote						100.0%
github.com/multigres/multigres-operator/pkg/postgresconfig/sizing.go:29:							ApplyResourceSizing				96.0%
github.com/multigres/multigres-operator/pkg/postgresconfig/sizing.go:69:							formatBytes					100.0%
github.com/multigres/multigres-operator/pkg/postgresconfig/sizing.go:84:							clampInt64					100.0%
github.com/multigres/multigres-operator/pkg/postgresconfig/sizing.go:111:							deriveWalSettings				100.0%
github.com/multigres/multigres-operator/pkg/postgresconfig/sizing.go:145:							clampUint64					100.0%
github.com/multigres/multigres-operator/pkg/postgresconfig/validate.go:76:							parseCatalog					90.9%
github.com/multigres/multigres-operator/pkg/postgresconfig/validate.go:101:							Validate					100.0%
github.com/multigres/multigres-operator/pkg/postgresconfig/validate.go:124:							validateGUC					100.0%
github.com/multigres/multigres-operator/pkg/postgresconfig/validate.go:150:							valueMatchesType				90.0%
github.com/multigres/multigres-operator/pkg/postgresconfig/validate.go:175:							isIntegerWithOptionalUnit			93.3%
github.com/multigres/multigres-operator/pkg/resolver/cell.go:16:								ResolveCell					100.0%
github.com/multigres/multigres-operator/pkg/resolver/cell.go:52:								EffectiveCellTemplateName			100.0%
github.com/multigres/multigres-operator/pkg/resolver/cell.go:60:								ResolveCellTemplate				100.0%
github.com/multigres/multigres-operator/pkg/resolver/cell.go:95:								mergeCellConfig					100.0%
github.com/multigres/multigres-operator/pkg/resolver/cell.go:142:								mergeMultigatewaySpec				94.4%
github.com/multigres/multigres-operator/pkg/resolver/cell.go:180:								defaultGatewayBuffer				100.0%
github.com/multigres/multigres-operator/pkg/resolver/cluster.go:15:								PopulateClusterDefaults				100.0%
github.com/multigres/multigres-operator/pkg/resolver/cluster.go:166:								ResolveGlobalTopo				100.0%
github.com/multigres/multigres-operator/pkg/resolver/cluster.go:229:								ResolveMultiadmin				100.0%
github.com/multigres/multigres-operator/pkg/resolver/cluster.go:267:								ResolveMultiadminWeb				100.0%
github.com/multigres/multigres-operator/pkg/resolver/cluster.go:305:								ResolveCoreTemplate				100.0%
github.com/multigres/multigres-operator/pkg/resolver/cluster.go:341:								mergeEtcdSpec					100.0%
github.com/multigres/multigres-operator/pkg/resolver/defaults.go:78:								DefaultResourcesAdmin				100.0%
github.com/multigres/multigres-operator/pkg/resolver/defaults.go:91:								DefaultResourcesEtcd				100.0%
github.com/multigres/multigres-operator/pkg/resolver/defaults.go:104:								DefaultResourcesGateway				100.0%
github.com/multigres/multigres-operator/pkg/resolver/defaults.go:117:								DefaultResourcesOrch				100.0%
github.com/multigres/multigres-operator/pkg/resolver/defaults.go:130:								DefaultResourcesPostgres			100.0%
github.com/multigres/multigres-operator/pkg/resolver/defaults.go:143:								DefaultResourcesPooler				100.0%
github.com/multigres/multigres-operator/pkg/resolver/defaults.go:156:								DefaultResourcesAdminWeb			100.0%
github.com/multigres/multigres-operator/pkg/resolver/resolver.go:21:								NewResolver					100.0%
github.com/multigres/multigres-operator/pkg/resolver/resolver.go:38:								mergeStatelessSpec				100.0%
github.com/multigres/multigres-operator/pkg/resolver/resolver.go:70:								mergePodPlacementSpec				100.0%
github.com/multigres/multigres-operator/pkg/resolver/resolver.go:83:								isResourcesZero					100.0%
github.com/multigres/multigres-operator/pkg/resolver/resolver.go:92:								defaultEtcdSpec					100.0%
github.com/multigres/multigres-operator/pkg/resolver/resolver.go:114:								defaultExternalTopoSpec				100.0%
github.com/multigres/multigres-operator/pkg/resolver/resolver.go:127:								defaultStatelessSpec				100.0%
github.com/multigres/multigres-operator/pkg/resolver/shard.go:37:								ResolveShard					100.0%
github.com/multigres/multigres-operator/pkg/resolver/shard.go:124:								ResolveShardTemplate				100.0%
github.com/multigres/multigres-operator/pkg/resolver/shard.go:159:								mergeShardConfig				100.0%
github.com/multigres/multigres-operator/pkg/resolver/shard.go:254:								mergePostgresConfig				100.0%
github.com/multigres/multigres-operator/pkg/resolver/shard.go:268:								mergeMultiorchSpec				100.0%
github.com/multigres/multigres-operator/pkg/resolver/shard.go:279:								mergePoolSpec					94.1%
github.com/multigres/multigres-operator/pkg/resolver/shard.go:336:								defaultPoolSpec					100.0%
github.com/multigres/multigres-operator/pkg/resolver/shard.go:351:								defaultBackupConfig				100.0%
github.com/multigres/multigres-operator/pkg/resolver/validation.go:31:								ValidateCoreTemplateReference			100.0%
github.com/multigres/multigres-operator/pkg/resolver/validation.go:54:								CoreTemplateExists				100.0%
github.com/multigres/multigres-operator/pkg/resolver/validation.go:74:								ValidateCellTemplateReference			100.0%
github.com/multigres/multigres-operator/pkg/resolver/validation.go:97:								CellTemplateExists				100.0%
github.com/multigres/multigres-operator/pkg/resolver/validation.go:117:								ValidateShardTemplateReference			100.0%
github.com/multigres/multigres-operator/pkg/resolver/validation.go:140:								ShardTemplateExists				100.0%
github.com/multigres/multigres-operator/pkg/resolver/validation.go:166:								ValidateClusterIntegrity			100.0%
github.com/multigres/multigres-operator/pkg/resolver/validation.go:239:								ValidateClusterLogic				98.5%
github.com/multigres/multigres-operator/pkg/resolver/validation.go:662:								hasDefaultStorageClass				100.0%
github.com/multigres/multigres-operator/pkg/resolver/validation.go:679:								getEffectiveEtcdReplicas			100.0%
github.com/multigres/multigres-operator/pkg/resolver/validation.go:691:								effectiveDatabaseDurabilityPolicy		100.0%
github.com/multigres/multigres-operator/pkg/resolver/validation.go:710:								ValidatePoolName				100.0%
github.com/multigres/multigres-operator/pkg/resolver/validation.go:729:								validatePoolRuntimeIdentity			100.0%
github.com/multigres/multigres-operator/pkg/resolver/validation.go:776:								ValidateResolvedGateways			85.7%
github.com/multigres/multigres-operator/pkg/resolver/validation.go:815:								ValidateGatewayBuffer				100.0%
github.com/multigres/multigres-operator/pkg/resolver/validation.go:827:								ValidateGatewayBufferPartial			0.0%
github.com/multigres/multigres-operator/pkg/resolver/validation.go:834:								validateGatewayBuffer				82.6%
github.com/multigres/multigres-operator/pkg/resolver/validation.go:900:								ValidateResourceRequirements			100.0%
github.com/multigres/multigres-operator/pkg/resolver/validation.go:921:								validateCellTopology				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/cell/cell_controller.go:49:				Reconcile					95.4%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/cell/cell_controller.go:181:				reconcileMultigatewayDeployment			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/cell/cell_controller.go:215:				reconcileMultigatewayService			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/cell/cell_controller.go:249:				reconcileLocalTopoServer			85.7%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/cell/cell_controller.go:305:				localTopoServerReady				60.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/cell/cell_controller.go:337:				handlePendingDeletion				88.2%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/cell/cell_controller.go:385:				ensureLocalTopoServerDeleted			75.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/cell/cell_controller.go:396:				deleteOwnedLocalTopoServerIfExists		75.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/cell/cell_controller.go:422:				deleteLocalTopoServerIfExists			66.7%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/cell/cell_controller.go:454:				patchReadyForDeletionCondition			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/cell/cell_controller.go:478:				patchLocalTopoServerWaitingStatus		88.9%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/cell/cell_controller.go:519:				updateStatus					100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/cell/cell_controller.go:617:				setConditions					100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/cell/cell_controller.go:667:				SetupWithManager				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/cell/cell_controller.go:688:				projectRefOrGenerationChangedPredicate		63.6%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/cell/local_toposerver.go:16:				BuildLocalTopoServerName			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/cell/local_toposerver.go:20:				hasManagedLocalTopoServer			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/cell/local_toposerver.go:24:				isControlledByCell				83.3%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/cell/local_toposerver.go:39:				BuildLocalTopoServer				90.9%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/cell/multigateway.go:56:				BuildMultigatewayDeploymentName			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/cell/multigateway.go:68:				BuildMultigatewayServiceName			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/cell/multigateway.go:79:				BuildMultigatewayDeployment			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/cell/multigateway.go:345:				BuildMultigatewayService			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/cell/multigateway.go:402:				buildCellNodeSelector				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/cell/placement.go:9:					tolerationsFromPlacement			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/configmap.go:33:					BuildPgHbaConfigMap				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/configmap.go:66:					BuildPostgresExporterQueriesConfigMap		100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/configmap.go:95:					BuildPostgresConfigMap				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/containers.go:148:				PgHbaConfigMapName				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/containers.go:156:				PostgresConfigMapName				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/containers.go:163:				PostgresExporterQueriesConfigMapName		100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/containers.go:167:				postgresPasswordSecretRef			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/containers.go:172:				buildSocketDirVolume				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/containers.go:182:				buildPgHbaVolume				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/containers.go:195:				buildPostgresPasswordVolume			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/containers.go:217:				postgresPasswordVolumeMount			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/containers.go:225:				shardTLSConfigured				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/containers.go:229:				buildShardTLSVolume				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/containers.go:246:				shardTLSVolumeMount				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/containers.go:266:				buildPgctldSidecar				94.7%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/containers.go:402:				buildPostgresExporterContainer			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/containers.go:448:				BuildPoolServiceID				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/containers.go:456:				buildMultipoolerContainer			96.2%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/containers.go:610:				buildMultiorchContainer				93.3%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/containers.go:697:				buildRuntimeOTELEnvVars				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/containers.go:717:				buildPostgresConfigVolume			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/containers.go:735:				buildPostgresExporterQueriesVolume		100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/containers.go:748:				buildPoolVolumes				90.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/containers.go:780:				buildSharedBackupVolume				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/containers.go:822:				buildPgBackRestCertVolume			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/containers.go:895:				buildPgBackRestCipherKeyVolume			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/containers.go:918:				pgPasswordFileEnvVar				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/containers.go:927:				pgUserEnvVar					100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/containers.go:933:				postgresSuperuserOrDefault			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/containers.go:942:				s3EnvVars					100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/drain_helpers.go:19:				resolvePodRole					100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/drain_helpers.go:35:				countDrainedPods				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/drain_helpers.go:47:				clearDrainAnnotations				0.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/drain_helpers.go:58:				initiateDrain					100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/labels.go:10:					buildPoolLabelsWithCell				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/multiorch.go:26:					BuildMultiorchDeployment			95.2%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/multiorch.go:103:					BuildMultiorchService				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/multiorch.go:134:					buildMultiorchNameWithCell			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/multiorch.go:154:					buildMultiorchLabelsWithCell			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/placement.go:9:					tolerationsFromPlacement			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/pool_pdb.go:19:					BuildPoolPodDisruptionBudget			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/pool_pod.go:34:					BuildPoolPodName				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/pool_pod.go:52:					BuildPoolPod					100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/pool_pod.go:143:					buildPoolPodSecurityContext			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/pool_pod.go:176:					buildContainerSecurityContext			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/pool_pod.go:189:					buildPgctldSecurityContext			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/pool_pod.go:197:					effectivePgctldIdentity				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/pool_pod.go:214:					effectiveMultipoolerIdentity			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/pool_pod.go:234:					buildMultipoolerSecurityContext			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/pool_pod.go:242:					validatePoolRuntimeIdentity			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/pool_pod.go:262:					resolvedMultipoolerImage			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/pool_pod.go:271:					buildHeadlessServiceName			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/pool_pod.go:294:					ComputeSpecHash					100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/pool_pod.go:347:					hashContainers					100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/pool_pod.go:386:					sortedKeys					100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/pool_pvc.go:23:					BuildPoolDataPVCName				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/pool_pvc.go:45:					BuildPoolDataPVC				95.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/pool_pvc.go:103:					BuildSharedBackupPVCName			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/pool_pvc.go:120:					BuildSharedBackupPVC				96.4%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/pool_service.go:23:				BuildPoolHeadlessService			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/pool_service.go:58:				buildPoolHeadlessServiceName			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/ports.go:33:					buildMultipoolerContainerPorts			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/ports.go:55:					buildPoolHeadlessServicePorts			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/ports.go:86:					buildMultiorchContainerPorts			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/ports.go:102:					buildPostgresExporterContainerPorts		100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/ports.go:114:					buildMultiorchServicePorts			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/postgres_config.go:44:				renderEffectiveConfig				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/postgres_config.go:74:				reconcilePostgresConfig				77.8%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/postgres_config.go:104:				renderPostgresConfig				80.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/postgres_config.go:139:				shardClusterName				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/postgres_config.go:162:				reduceShardResources				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/postgres_config.go:186:				effectiveResource				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/postgres_config.go:199:				parseStorageBytes				83.3%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/postgres_config.go:213:				postgresConfigRefContent			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/postgres_config.go:236:				applyPostgresConfigMap				71.4%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/postgres_config.go:261:				enqueueFromPostgresConfigMap			87.5%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_data_plane.go:25:			reconcileDataPlane				48.5%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_data_plane.go:161:			reconcilePodRoles				61.5%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_data_plane.go:223:			reconcileDrainState				45.8%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_data_plane.go:283:			isDrainStale					100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_data_plane.go:332:			topoStore					100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_data_plane.go:344:			reconcilePoolerPrune				75.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_data_plane.go:388:			hasPrimary					0.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_data_plane.go:400:			isPoolerPruningEnabled				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_deletion.go:40:				handleDeletion					76.9%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_deletion.go:152:			cleanupShardPVCs				73.3%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_deletion.go:217:			shardPVCShouldBeCleaned				42.9%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_deletion.go:237:			handlePendingDeletion				72.5%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_multiorch.go:15:			reconcileMultiorchDeployment			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_multiorch.go:50:			reconcileMultiorchService			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_pool_pods.go:29:			reconcilePoolPods				97.2%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_pool_pods.go:138:			createMissingResources				82.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_pool_pods.go:307:			isPodReady					100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_pool_pods.go:324:			isPoolHealthy					100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_pool_pods.go:351:			handleExternalDeletion				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_pool_pods.go:392:			handleScaleDown					97.8%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_pool_pods.go:514:			handleRollingUpdates				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_pool_pods.go:627:			selectPodToDrain				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_pool_pods.go:684:			syncDrainedLabels				55.6%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_pool_pods.go:717:			cleanupDrainedPod				95.5%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_pool_pods.go:793:			cleanupPodPVC					81.5%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_pool_pods.go:848:			countPoolCellPVCs				81.8%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_pool_pods.go:883:			podNeedsUpdate					100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_pool_pods.go:916:			expandPVCIfNeeded				95.5%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_pool_pods.go:966:			pvcNeedsFilesystemResize			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_pool_pods.go:981:			resolvePodIndex					100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_quarantine.go:66:			reconcileQuarantineRemediation			88.9%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_quarantine.go:184:			wipeQuarantinedPod				70.8%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_quarantine.go:248:			poolHealthyExcluding				83.3%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_shared_infra.go:20:			reconcilePgHbaConfigMap				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_shared_infra.go:47:			reconcilePostgresExporterQueriesConfigMap	71.4%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_shared_infra.go:72:			reconcilePostgresPasswordSecret			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_shared_infra.go:80:			postgresPasswordSecretData			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_shared_infra.go:88:			postgresPasswordSecret				84.6%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_shared_infra.go:132:			reconcilePgBackRestCerts			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_shared_infra.go:189:			pgBackRestPoolDNSNames				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_shared_infra.go:205:			reconcileBackupCipherSecret			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_shared_infra.go:240:			reconcileSharedBackupPVC			91.7%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_shared_infra.go:289:			reconcilePoolPDB				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reconcile_shared_infra.go:316:			reconcilePoolHeadlessService			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reload.go:46:					reconcileReloadState				84.1%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reload.go:201:					mismatchNames					100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reload.go:211:					mismatchDetail					100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/reload.go:224:					stampReloadHash					71.4%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/shard_controller.go:57:				orphanByRemainingCount				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/shard_controller.go:78:				Reconcile					79.7%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/shard_controller.go:418:				reconcilePool					100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/shard_controller.go:468:				getMultiorchCells				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/shard_controller.go:504:				getPoolCells					100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/shard_controller.go:524:				ShouldDeletePVCOnShardRemoval			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/shard_controller.go:538:				ShouldDeleteShardLevelPVCOnRemoval		100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/shard_controller.go:547:				reconcilePVCOwnerRefs				55.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/shard_controller.go:634:				SetupWithManager				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/status.go:27:					updateStatus					100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/status.go:180:					updatePoolsStatus				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/status.go:310:					updateMultiorchStatus				96.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/status.go:375:					setPostgresConfigStatus				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/status.go:405:					cellSetToSlice					100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/status.go:415:					setConditions					100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/storage_class_guard.go:31:			Error						0.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/storage_class_guard.go:35:			isMissingStorageClassDependency			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/storage_class_guard.go:40:			backupFilesystemStorageClassName		80.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/storage_class_guard.go:51:			validateStorageClassExists			77.8%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/storage_class_guard.go:70:			validateBackupStorageClassDependency		76.9%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/storage_class_guard.go:113:			validatePoolStorageClassDependencies		90.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/shard/storage_class_guard.go:170:			setStorageClassCondition			84.6%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/storage/pvc.go:17:					BuildPVCTemplate				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/toposerver/container_env.go:13:				buildContainerEnv				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/toposerver/container_env.go:41:				buildPodIdentityEnv				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/toposerver/container_env.go:66:				buildEtcdConfigEnv				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/toposerver/container_env.go:120:			buildEtcdClusterPeerList			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/toposerver/ports.go:23:					buildContainerPorts				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/toposerver/ports.go:56:					buildHeadlessServicePorts			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/toposerver/ports.go:86:					buildClientServicePorts				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/toposerver/service.go:17:				BuildHeadlessService				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/toposerver/service.go:53:				BuildClientService				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/toposerver/statefulset.go:38:				BuildStatefulSet				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/toposerver/statefulset.go:158:				buildVolumeClaimTemplates			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/toposerver/storage_class_guard.go:33:			Error						0.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/toposerver/storage_class_guard.go:38:			isMissingStorageClassDependency			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/toposerver/storage_class_guard.go:44:			validateStorageClassExists			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/toposerver/storage_class_guard.go:61:			validateEtcdStorageClassDependency		93.3%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/toposerver/storage_class_guard.go:114:			setStorageClassCondition			84.6%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/toposerver/toposerver_controller.go:43:			Reconcile					96.8%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/toposerver/toposerver_controller.go:177:		reconcileStatefulSet				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/toposerver/toposerver_controller.go:211:		reconcileHeadlessService			100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/toposerver/toposerver_controller.go:245:		reconcileClientService				100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/toposerver/toposerver_controller.go:279:		updateStatus					97.1%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/toposerver/toposerver_controller.go:394:		setConditions					100.0%
github.com/multigres/multigres-operator/pkg/resource-handler/controller/toposerver/toposerver_controller.go:425:		SetupWithManager				100.0%
github.com/multigres/multigres-operator/pkg/testutil/compare.go:17:								IgnoreMetaRuntimeFields				100.0%
github.com/multigres/multigres-operator/pkg/testutil/compare.go:55:								IgnoreServiceRuntimeFields			100.0%
github.com/multigres/multigres-operator/pkg/testutil/compare.go:75:								IgnoreStatefulSetRuntimeFields			100.0%
github.com/multigres/multigres-operator/pkg/testutil/compare.go:97:								IgnoreDeploymentRuntimeFields			100.0%
github.com/multigres/multigres-operator/pkg/testutil/compare.go:116:								IgnorePodSpecDefaults				100.0%
github.com/multigres/multigres-operator/pkg/testutil/compare.go:148:								IgnorePodSpecDefaultsExceptPullPolicy		100.0%
github.com/multigres/multigres-operator/pkg/testutil/compare.go:179:								IgnoreStatefulSetSpecDefaults			100.0%
github.com/multigres/multigres-operator/pkg/testutil/compare.go:191:								IgnoreDeploymentSpecDefaults			100.0%
github.com/multigres/multigres-operator/pkg/testutil/compare.go:204:								IgnoreProbeDefaults				100.0%
github.com/multigres/multigres-operator/pkg/testutil/compare.go:219:								filterByFieldName				100.0%
github.com/multigres/multigres-operator/pkg/testutil/compare.go:235:								IgnoreObjectMetaCompletely			100.0%
github.com/multigres/multigres-operator/pkg/testutil/compare.go:243:								IgnoreStatus					100.0%
github.com/multigres/multigres-operator/pkg/testutil/compare.go:249:								IgnorePVCRuntimeFields				100.0%
github.com/multigres/multigres-operator/pkg/testutil/compare.go:258:								CompareOptions					100.0%
github.com/multigres/multigres-operator/pkg/testutil/compare.go:267:								CompareSpecOnly					100.0%
github.com/multigres/multigres-operator/pkg/testutil/envtest.go:29:								WithKubeconfig					100.0%
github.com/multigres/multigres-operator/pkg/testutil/envtest.go:36:								WithCRDPaths					100.0%
github.com/multigres/multigres-operator/pkg/testutil/envtest.go:57:								AddUser						100.0%
github.com/multigres/multigres-operator/pkg/testutil/envtest.go:62:								getKubeconfigFromUserAdder			100.0%
github.com/multigres/multigres-operator/pkg/testutil/envtest.go:87:								SetUpEnvtest					100.0%
github.com/multigres/multigres-operator/pkg/testutil/envtest.go:148:								SetUpClient					100.0%
github.com/multigres/multigres-operator/pkg/testutil/envtest.go:175:								SetUpManager					100.0%
github.com/multigres/multigres-operator/pkg/testutil/envtest.go:206:								StartManager					100.0%
github.com/multigres/multigres-operator/pkg/testutil/envtest.go:216:								startManager					100.0%
github.com/multigres/multigres-operator/pkg/testutil/envtest.go:256:								SetUpEnvtestManager				100.0%
github.com/multigres/multigres-operator/pkg/testutil/envtest.go:272:								createEnvtestEnvironment			100.0%
github.com/multigres/multigres-operator/pkg/testutil/envtest.go:287:								startEnvtest					100.0%
github.com/multigres/multigres-operator/pkg/testutil/envtest.go:302:								cleanEnvtest					100.0%
github.com/multigres/multigres-operator/pkg/testutil/envtest.go:319:								createEnvtestDir				100.0%
github.com/multigres/multigres-operator/pkg/testutil/envtest.go:333:								writeKubeconfigFile				100.0%
github.com/multigres/multigres-operator/pkg/testutil/envtest.go:343:								generateKubeconfigFile				100.0%
github.com/multigres/multigres-operator/pkg/testutil/fake_client.go:51:								NewFakeClientWithFailures			100.0%
github.com/multigres/multigres-operator/pkg/testutil/fake_client.go:61:								Get						100.0%
github.com/multigres/multigres-operator/pkg/testutil/fake_client.go:75:								List						100.0%
github.com/multigres/multigres-operator/pkg/testutil/fake_client.go:88:								Create						100.0%
github.com/multigres/multigres-operator/pkg/testutil/fake_client.go:101:							Update						100.0%
github.com/multigres/multigres-operator/pkg/testutil/fake_client.go:114:							Patch						100.0%
github.com/multigres/multigres-operator/pkg/testutil/fake_client.go:128:							Delete						100.0%
github.com/multigres/multigres-operator/pkg/testutil/fake_client.go:141:							DeleteAllOf					100.0%
github.com/multigres/multigres-operator/pkg/testutil/fake_client.go:154:							Status						100.0%
github.com/multigres/multigres-operator/pkg/testutil/fake_client.go:166:							Update						100.0%
github.com/multigres/multigres-operator/pkg/testutil/fake_client.go:179:							Patch						100.0%
github.com/multigres/multigres-operator/pkg/testutil/fake_client.go:196:							FailOnObjectName				100.0%
github.com/multigres/multigres-operator/pkg/testutil/fake_client.go:210:							FailOnKeyName					100.0%
github.com/multigres/multigres-operator/pkg/testutil/fake_client.go:220:							FailOnNamespacedKeyName				100.0%
github.com/multigres/multigres-operator/pkg/testutil/fake_client.go:230:							FailOnNamespace					100.0%
github.com/multigres/multigres-operator/pkg/testutil/fake_client.go:244:							AlwaysFail					100.0%
github.com/multigres/multigres-operator/pkg/testutil/fake_client.go:252:							FailKeyAfterNCalls				100.0%
github.com/multigres/multigres-operator/pkg/testutil/fake_client.go:265:							FailObjAfterNCalls				100.0%
github.com/multigres/multigres-operator/pkg/testutil/fake_client.go:278:							FailObjListAfterNCalls				100.0%
github.com/multigres/multigres-operator/pkg/testutil/resource_watcher.go:34:							Error						100.0%
github.com/multigres/multigres-operator/pkg/testutil/resource_watcher.go:84:							WithExtraResource				100.0%
github.com/multigres/multigres-operator/pkg/testutil/resource_watcher.go:92:							WithTimeout					100.0%
github.com/multigres/multigres-operator/pkg/testutil/resource_watcher.go:100:							WithCmpOpts					100.0%
github.com/multigres/multigres-operator/pkg/testutil/resource_watcher.go:108:							NewResourceWatcher				100.0%
github.com/multigres/multigres-operator/pkg/testutil/resource_watcher.go:146:							SetTimeout					100.0%
github.com/multigres/multigres-operator/pkg/testutil/resource_watcher.go:152:							ResetTimeout					100.0%
github.com/multigres/multigres-operator/pkg/testutil/resource_watcher.go:159:							SetCmpOpts					100.0%
github.com/multigres/multigres-operator/pkg/testutil/resource_watcher.go:165:							ResetCmpOpts					100.0%
github.com/multigres/multigres-operator/pkg/testutil/resource_watcher.go:175:							Events						100.0%
github.com/multigres/multigres-operator/pkg/testutil/resource_watcher.go:188:							EventCh						100.0%
github.com/multigres/multigres-operator/pkg/testutil/resource_watcher.go:198:							ForKind						100.0%
github.com/multigres/multigres-operator/pkg/testutil/resource_watcher.go:218:							ForName						100.0%
github.com/multigres/multigres-operator/pkg/testutil/resource_watcher.go:234:							Count						100.0%
github.com/multigres/multigres-operator/pkg/testutil/resource_watcher.go:243:							subscribe					100.0%
github.com/multigres/multigres-operator/pkg/testutil/resource_watcher.go:257:							unsubscribe					100.0%
github.com/multigres/multigres-operator/pkg/testutil/resource_watcher.go:278:							extractKind					100.0%
github.com/multigres/multigres-operator/pkg/testutil/resource_watcher_cache.go:16:						findLatestEvent					100.0%
github.com/multigres/multigres-operator/pkg/testutil/resource_watcher_cache.go:34:						findLatestEventFor				100.0%
github.com/multigres/multigres-operator/pkg/testutil/resource_watcher_cache.go:57:						checkLatestEventMatches				100.0%
github.com/multigres/multigres-operator/pkg/testutil/resource_watcher_deletion.go:22:						Obj						100.0%
github.com/multigres/multigres-operator/pkg/testutil/resource_watcher_deletion.go:51:						WaitForDeletion					100.0%
github.com/multigres/multigres-operator/pkg/testutil/resource_watcher_deletion.go:70:						waitForSingleDeletion				100.0%
github.com/multigres/multigres-operator/pkg/testutil/resource_watcher_listener.go:19:						collectEvents					100.0%
github.com/multigres/multigres-operator/pkg/testutil/resource_watcher_listener.go:55:						sendEvent					100.0%
github.com/multigres/multigres-operator/pkg/testutil/resource_watcher_match.go:46:						WaitForMatch					100.0%
github.com/multigres/multigres-operator/pkg/testutil/resource_watcher_match.go:88:						waitForSingleMatch				100.0%
github.com/multigres/multigres-operator/pkg/testutil/resource_watcher_match.go:178:						waitForEvent					100.0%
github.com/multigres/multigres-operator/pkg/testutil/resource_watcher_match.go:213:						WaitForEventType				100.0%
github.com/multigres/multigres-operator/pkg/testutil/resource_watcher_match.go:261:						addEventHandlerToInformer			100.0%
github.com/multigres/multigres-operator/pkg/testutil/resource_watcher_match.go:285:						watchResource					100.0%
github.com/multigres/multigres-operator/pkg/util/metadata/labels.go:190:							BuildStandardLabels				100.0%
github.com/multigres/multigres-operator/pkg/util/metadata/labels.go:201:							AddCellLabel					100.0%
github.com/multigres/multigres-operator/pkg/util/metadata/labels.go:207:							AddClusterLabel					100.0%
github.com/multigres/multigres-operator/pkg/util/metadata/labels.go:213:							AddShardLabel					100.0%
github.com/multigres/multigres-operator/pkg/util/metadata/labels.go:222:							AddDatabaseLabel				100.0%
github.com/multigres/multigres-operator/pkg/util/metadata/labels.go:231:							AddTableGroupLabel				100.0%
github.com/multigres/multigres-operator/pkg/util/metadata/labels.go:240:							AddPoolLabel					100.0%
github.com/multigres/multigres-operator/pkg/util/metadata/labels.go:249:							AddZoneIDLabel					100.0%
github.com/multigres/multigres-operator/pkg/util/metadata/labels.go:258:							AddRegionLabel					100.0%
github.com/multigres/multigres-operator/pkg/util/metadata/labels.go:285:							GetSelectorLabels				100.0%
github.com/multigres/multigres-operator/pkg/util/metadata/labels.go:299:							MergeLabels					100.0%
github.com/multigres/multigres-operator/pkg/util/metadata/project_ref.go:16:							ResolveProjectRef				100.0%
github.com/multigres/multigres-operator/pkg/util/name/name.go:103:								Hash						100.0%
github.com/multigres/multigres-operator/pkg/util/name/name.go:146:								JoinWithConstraints				100.0%
github.com/multigres/multigres-operator/pkg/util/name/name.go:209:								isLowercaseLetter				100.0%
github.com/multigres/multigres-operator/pkg/util/name/name.go:213:								isUppercaseLetter				100.0%
github.com/multigres/multigres-operator/pkg/util/name/name.go:217:								isDigit						100.0%
github.com/multigres/multigres-operator/pkg/util/name/name.go:221:								isLowercaseAlphanumeric				100.0%
github.com/multigres/multigres-operator/pkg/util/pvc/orphan.go:27:								MarkOrphan					95.5%
github.com/multigres/multigres-operator/pkg/util/pvc/orphan.go:78:								ClearOrphan					87.5%
github.com/multigres/multigres-operator/pkg/util/pvc/orphan.go:98:								HasOrphanLabel					100.0%
github.com/multigres/multigres-operator/pkg/util/pvc/retention.go:12:								BuildRetentionPolicy				100.0%
github.com/multigres/multigres-operator/pkg/util/status/conditions.go:9:							SetCondition					100.0%
github.com/multigres/multigres-operator/pkg/util/status/conditions.go:25:							IsConditionTrue					100.0%
github.com/multigres/multigres-operator/pkg/util/status/phase.go:30:								ComputePhase					100.0%
github.com/multigres/multigres-operator/pkg/util/status/phase.go:51:								IsCrashLooping					100.0%
github.com/multigres/multigres-operator/pkg/util/status/phase.go:56:								isContainerCrashLooping				100.0%
github.com/multigres/multigres-operator/pkg/util/status/phase.go:68:								AnyCrashLooping					100.0%
github.com/multigres/multigres-operator/pkg/util/status/phase.go:98:								ComputeWorkloadPhase				100.0%
github.com/multigres/multigres-operator/pkg/webhook/handlers/defaulter.go:27:							NewMultigresClusterDefaulter			100.0%
github.com/multigres/multigres-operator/pkg/webhook/handlers/defaulter.go:34:							Default						100.0%
github.com/multigres/multigres-operator/pkg/webhook/handlers/validator.go:37:							NewMultigresClusterValidator			100.0%
github.com/multigres/multigres-operator/pkg/webhook/handlers/validator.go:42:							ValidateCreate					100.0%
github.com/multigres/multigres-operator/pkg/webhook/handlers/validator.go:50:							ValidateUpdate					100.0%
github.com/multigres/multigres-operator/pkg/webhook/handlers/validator.go:69:							ValidateDelete					100.0%
github.com/multigres/multigres-operator/pkg/webhook/handlers/validator.go:76:							validate					91.7%
github.com/multigres/multigres-operator/pkg/webhook/handlers/validator.go:137:							validateTemplatesExist				100.0%
github.com/multigres/multigres-operator/pkg/webhook/handlers/validator.go:147:							validateLogic					100.0%
github.com/multigres/multigres-operator/pkg/webhook/handlers/validator.go:158:							validateNoStorageShrink				90.5%
github.com/multigres/multigres-operator/pkg/webhook/handlers/validator.go:202:							validatePostgresConfig				100.0%
github.com/multigres/multigres-operator/pkg/webhook/handlers/validator.go:229:							collectPoolStorageSizes				100.0%
github.com/multigres/multigres-operator/pkg/webhook/handlers/validator.go:257:							validateEtcdReplicasImmutable			100.0%
github.com/multigres/multigres-operator/pkg/webhook/handlers/validator.go:293:							effectiveEtcdReplicas				100.0%
github.com/multigres/multigres-operator/pkg/webhook/handlers/validator.go:322:							NewTemplateValidator				100.0%
github.com/multigres/multigres-operator/pkg/webhook/handlers/validator.go:330:							ValidateCreate					100.0%
github.com/multigres/multigres-operator/pkg/webhook/handlers/validator.go:342:							ValidateUpdate					100.0%
github.com/multigres/multigres-operator/pkg/webhook/handlers/validator.go:357:							templateSpecUnchanged				100.0%
github.com/multigres/multigres-operator/pkg/webhook/handlers/validator.go:370:							validateWrite					100.0%
github.com/multigres/multigres-operator/pkg/webhook/handlers/validator.go:385:							validateTemplateContent				94.7%
github.com/multigres/multigres-operator/pkg/webhook/handlers/validator.go:429:							validateCellTemplateConsumers			95.8%
github.com/multigres/multigres-operator/pkg/webhook/handlers/validator.go:479:							ValidateDelete					95.0%
github.com/multigres/multigres-operator/pkg/webhook/handlers/validator.go:532:							isTemplateInUse					100.0%
github.com/multigres/multigres-operator/pkg/webhook/handlers/validator.go:596:							NewChildResourceValidator			100.0%
github.com/multigres/multigres-operator/pkg/webhook/handlers/validator.go:603:							ValidateCreate					100.0%
github.com/multigres/multigres-operator/pkg/webhook/handlers/validator.go:611:							ValidateUpdate					100.0%
github.com/multigres/multigres-operator/pkg/webhook/handlers/validator.go:619:							ValidateDelete					100.0%
github.com/multigres/multigres-operator/pkg/webhook/handlers/validator.go:626:							validate					100.0%
github.com/multigres/multigres-operator/pkg/webhook/pki.go:44:									PatchWebhookCABundle				100.0%
github.com/multigres/multigres-operator/pkg/webhook/pki.go:51:									patchMutatingWebhook				100.0%
github.com/multigres/multigres-operator/pkg/webhook/pki.go:97:									patchValidatingWebhook				100.0%
github.com/multigres/multigres-operator/pkg/webhook/pki.go:147:									HasCertAnnotation				100.0%
github.com/multigres/multigres-operator/pkg/webhook/pki.go:173:									FindOperatorDeployment				100.0%
github.com/multigres/multigres-operator/pkg/webhook/setup.go:21:								Setup						100.0%
total:																(statements)					76.2%

@niconosenzo niconosenzo left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm

@Verolop
Verolop merged commit 84b767d into multigres:main Aug 20, 2026
5 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants