Skip to content

feat: implement service primitive#32

Open
sourcehawk wants to merge 29 commits intomainfrom
feature/service-primitive
Open

feat: implement service primitive#32
sourcehawk wants to merge 29 commits intomainfrom
feature/service-primitive

Conversation

@sourcehawk
Copy link
Owner

Implements the service Kubernetes resource primitive following the pattern established by the existing ConfigMap and Deployment primitives.

Summary

  • Adds service primitive package under pkg/primitives/service/
  • Implements required lifecycle interfaces
  • Includes editors, mutator, flavors, and builder

Checklist

  • Compiles cleanly
  • Tests pass
  • Follows naming conventions in CONTEXT.md
  • Does not modify shared files

Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

Adds a new service Kubernetes primitive to the Operator Component Framework, aligning Services with the framework’s builder/mutator/flavor patterns used by existing primitives.

Changes:

  • Introduces pkg/primitives/service (resource, builder, mutator, flavors, handlers) plus unit tests.
  • Adds a new shared ServiceSpecEditor under pkg/mutation/editors (with tests) to support typed Service mutations.
  • Adds a runnable example (examples/service-primitive) and primitive documentation (docs/primitives/service.md).

Reviewed changes

Copilot reviewed 17 out of 17 changed files in this pull request and generated 4 comments.

Show a summary per file
File Description
pkg/primitives/service/resource.go Service resource wrapper + default field applicator (ClusterIP preservation).
pkg/primitives/service/builder.go Fluent builder wiring mutations, flavors, handlers, and extractors.
pkg/primitives/service/mutator.go Plan/apply mutator with metadata + ServiceSpec edit categories.
pkg/primitives/service/handlers.go Default operational + suspension/delete-on-suspend handlers.
pkg/primitives/service/flavors.go Service flavors delegating to generic flavors helpers.
pkg/primitives/service/*_test.go Unit tests for builder/mutator/handlers/flavors.
pkg/mutation/editors/servicespec.go New typed editor API for corev1.ServiceSpec.
pkg/mutation/editors/servicespec_test.go Unit tests for ServiceSpecEditor.
examples/service-primitive/* End-to-end example wiring builder + feature mutations + extraction.
docs/primitives/service.md New user-facing documentation for the service primitive.

@sourcehawk
Copy link
Owner Author

Claude Review Cycle 1 Complete

Addressed:

  • LoadBalancer ingress check (handlers.go:32): Fixed DefaultOperationalStatusHandler to verify that ingress entries contain a non-empty IP or Hostname before reporting Operational, rather than just checking slice length. Added test case for ingress entry with no IP/Hostname.
  • Missing resource_test.go (resource.go:23): Added pkg/primitives/service/resource_test.go covering Resource wrapper behaviors: Identity, Object (deep copy), Mutate (baseline + ClusterIP preservation + mutations + custom applicator), ConvergingStatus, Suspend, DeleteOnSuspend, SuspensionStatus, and ExtractData.
  • Doc terminology inconsistency (service.md:238): Fixed OperationPending to Pending to match the rest of the document, and updated description to reflect the new IP/hostname validation.

Intentionally ignored:

  • Shared editor concern (servicespec.go:15): This is a PR description/checklist accuracy issue, not a code issue. The ServiceSpecEditor is a new file added by this PR under pkg/mutation/editors — it is shared infrastructure by location but is purpose-built for the service primitive. The PR description should be updated to reflect this, but no code change is needed.

<!-- claude-review-cycle -->

Copilot AI review requested due to automatic review settings March 22, 2026 21:54
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

Copilot reviewed 18 out of 18 changed files in this pull request and generated 1 comment.

Copilot AI review requested due to automatic review settings March 23, 2026 00:51
@sourcehawk sourcehawk force-pushed the feature/service-primitive branch from 5094589 to 656d3c2 Compare March 23, 2026 00:51
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

Copilot reviewed 18 out of 18 changed files in this pull request and generated 7 comments.

@sourcehawk
Copy link
Owner Author

Claude Review Cycle 1 Complete

Addressed:

  • Preserve server-populated Status (including LoadBalancer.Ingress) in DefaultFieldApplicator so ConvergingStatus correctly reports operational state for LoadBalancer Services (resource.go:20)
  • Fixed doc comment on WithCustomSuspendStatus: now says "leaves the Service untouched" instead of "Services are deleted on suspend" (builder.go:116)
  • Fixed doc comment on WithCustomSuspendMutation: now says "leaves the Service unaffected by suspension" instead of "deleted on suspend" (builder.go:132)
  • Fixed doc comment on WithCustomSuspendDeletionDecision: now correctly says "returns false" instead of "returns true" (builder.go:143)
  • Added Protocol to unnamed port matching in EnsurePort — treats empty Protocol as TCP (Kubernetes default) to avoid incorrect replacement when same port number is used with different protocols (servicespec.go:40)
  • Updated README suspension description to match actual default behavior (DeleteOnSuspend=false) (README.md:10)

Intentionally ignored:

  • Comment about PR description checklist saying "Does not modify shared files" while modifying pkg/mutation/editors/ (servicespec.go:5): This is a PR description accuracy concern, not a code issue. The servicespec.go change (adding Protocol-aware port matching) is a legitimate bug fix that belongs in this PR.

<!-- claude-review-cycle -->

Copilot AI review requested due to automatic review settings March 23, 2026 16:08
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

Copilot reviewed 18 out of 18 changed files in this pull request and generated 6 comments.

Copilot AI review requested due to automatic review settings March 23, 2026 17:02
@sourcehawk
Copy link
Owner Author

Claude Review Cycle 1 Complete

Addressed:

  • Added TestDefaultFieldApplicator_PreservesStatus to guard against regressions clearing Status.LoadBalancer.Ingress (resource_test.go:117 comment)
  • Added TestResource_Mutate_FeatureOrdering to verify mutation ordering across multiple features (resource_test.go:163 comment)
  • Updated EnsurePort docs to mention protocol matching semantics — match on Port + effective Protocol (treating empty as TCP) when Name is empty (docs/primitives/service.md:159 comment)
  • Fixed critical bug: exported BeginFeature() on FeatureMutator interface and all primitive mutators so cross-package mutators can satisfy the interface and receive proper feature boundary calls from ApplyMutations (mutator.go:50 comment)
  • Added nodePort preservation in DefaultFieldApplicator — when the desired port's NodePort is 0, the auto-allocated value from the current object is preserved, matching ports by Name or by Port+Protocol when unnamed (resource.go:26 comment)
  • Added TestDefaultFieldApplicator_PreservesNodePorts test for the nodePort fix

Intentionally ignored:

  • Markdown table || formatting (docs/primitives/service.md:14 comment): The tables already use correct single | delimiters — no || patterns exist in the file. This appears to be a false positive.

Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

Copilot reviewed 23 out of 23 changed files in this pull request and generated 4 comments.

sourcehawk and others added 11 commits March 23, 2026 20:16
Provides typed methods for managing service ports, selectors, session
affinity, traffic policies, and other ServiceSpec fields. Includes
full test coverage for all editor methods.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Implements the Service primitive with:
- Builder with fluent API for mutations, flavors, status handlers
- Mutator with plan-and-apply pattern (metadata then spec edits)
- DefaultFieldApplicator preserving immutable clusterIP/clusterIPs
- DefaultOperationalStatusHandler (LoadBalancer pending until ingress assigned)
- DefaultDeleteOnSuspendHandler (true - Services deleted on suspend)
- PreserveCurrentLabels and PreserveCurrentAnnotations flavors
- Full test coverage for builder, mutator, handlers, and flavors

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Covers building, mutations, editors, flavors, operational status,
suspension behavior, data extraction, and usage guidance.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Demonstrates base construction, feature-gated mutations (version
labels, metrics port), annotation preservation, operational status
tracking, suspension, and data extraction with a fake client.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Use non-deprecated ServiceExternalTrafficPolicy type and rename
unused test parameter.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
… fix doc terminology

- Fix DefaultOperationalStatusHandler to verify ingress entries have an
  actual IP or Hostname before reporting Operational (not just non-empty slice)
- Add resource_test.go covering Resource wrapper behaviors (Identity, Object,
  Mutate with ClusterIP preservation, ConvergingStatus, Suspend, ExtractData)
- Fix inconsistent terminology in service.md (OperationPending -> Pending)
- Add test case for ingress entries without IP/Hostname

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
…comments, improve port matching

- Preserve server-populated Status (including LoadBalancer.Ingress) in
  DefaultFieldApplicator so ConvergingStatus correctly detects assigned
  ingress addresses.
- Fix misleading doc comments on WithCustomSuspendStatus,
  WithCustomSuspendMutation, and WithCustomSuspendDeletionDecision to
  accurately reflect that Services are left in place by default.
- Include Protocol in unnamed port matching in EnsurePort to avoid
  incorrect replacement when same port number is used with different
  protocols (e.g., TCP/UDP).
- Update README suspension description to match actual default behavior.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Replace manual status assignment with generic.PreserveStatus() to align
with the deployment primitive pattern and the new shared helper.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Initialize plans slice inline and set active pointer directly,
matching the fix already applied to deployment and configmap mutators.
This prevents an empty feature from being created when the generic
helper in mutator_helper.go calls beginFeature().

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
…d port matching

- Only preserve server-allocated healthCheckNodePort when the desired
  Service is type LoadBalancer with externalTrafficPolicy: Local. This
  prevents carrying forward stale values when the Service changes type.
- Restrict EnsurePort unnamed port matching to only match existing ports
  that are also unnamed, preventing accidental name erasure.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
@sourcehawk
Copy link
Owner Author

Claude Review Cycle 1 Complete

Addressed:

  • pkg/primitives/service/resource.go:51 — Gated healthCheckNodePort preservation on the desired Service being type: LoadBalancer with externalTrafficPolicy: Local. Previously it was preserved unconditionally when desired left it at 0, which could carry forward stale values when the Service type changed.
  • pkg/mutation/editors/servicespec.go:38 — Restricted unnamed port matching in EnsurePort to only match existing ports where existing.Name == "", preventing accidental erasure of named ports when upserting an unnamed port with matching port/protocol.

Intentionally ignored:
None

<!-- claude-review-cycle -->

Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

Copilot reviewed 19 out of 19 changed files in this pull request and generated 2 comments.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
@sourcehawk
Copy link
Owner Author

Claude Review Cycle 1 Complete

Addressed:

  • Added service-primitive example to the run-examples Makefile target so it is included in CI and make run-examples runs.

Intentionally ignored:

  • Double-pipe table syntax in service.md: The tables in docs/primitives/service.md already use standard single-pipe | markdown table syntax throughout. No double pipes || exist in the file, so no changes were needed.

@sourcehawk sourcehawk requested review from Copilot and removed request for Copilot March 24, 2026 18:33
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

Copilot reviewed 20 out of 20 changed files in this pull request and generated no new comments.

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