feat(deploy): add Kustomize deployment option#245
Open
mkoushni wants to merge 3 commits into
Open
Conversation
Signed-off-by: mkoushni <mkoushni@redhat.com>
v9 moves the action's runtime from Node 20 to Node 24, per the upstream release notes. Signed-off-by: mkoushni <mkoushni@redhat.com>
golangci-lint flagged plugin_test.go for improper gofmt formatting and an unused waitForTokenPrices helper with no call sites. Signed-off-by: mkoushni <mkoushni@redhat.com>
mkoushni
force-pushed
the
feat/kustomize-deployment
branch
from
July 16, 2026 10:21
f54b42e to
af5b45a
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
[Feature] Enable deployment using Kustomize
Adds a Kustomize deployment path for the Inference Payload Processor (IPP),
aligning with the llm-d community deployment standard and enabling IPP to be
consumed as a step in llm-d-benchmark
and GitOps workflows that prefer Kustomize over Helm.
The existing Helm chart (
config/charts/payload-processor/) is untouched;Kustomize is an additive alternative.
Fixes #125
Changes
New:
config/kustomize/Each overlay exposes a single
namespace:field as the sole namespace controlpoint — the base layer intentionally omits
metadata.namespaceso that theoverlay drives it.
Modified:
MakefileNew
##@ Deploymentsection:make kustomizebin/if absentmake kustomize-build [KUSTOMIZE_OVERLAY=default|istio|gke]make kustomize-deploy [KUSTOMIZE_OVERLAY=default|istio|gke]make kustomize-undeploy [KUSTOMIZE_OVERLAY=default|istio|gke]Modified:
README.mdAdded a Deployment section with side-by-side Helm and Kustomize quick-start
commands.
Fixed: pre-existing
goconstlint issuesExtracted repeated string literals into named constants to clear
golangci-lint(4 issues, pre-existing):
pkg/config/loader/defaults.goconfigAPIVersion,configKindtest/integration/util.goheaderContentLength,bodyFieldPromptUsage
See
config/kustomize/README.mdfor customizationoptions (namespace, image tag, custom IPP config, multi-namespace RBAC).
Testing
Kustomize build validation
All three overlays render without errors and produce the expected resource kinds:
defaultistiogkeValidated with:
Go test suite
All 24 test packages pass with race detection enabled (
go test -race -count=1 ./...):pkg/commonpkg/common/envoypkg/common/envoy/testpkg/common/errorpkg/common/observability/loggingpkg/config/loaderpkg/datastore/inmemorypkg/framework/interface/datalayerpkg/framework/interface/requesthandlingpkg/framework/plugins/datalayer/notificationsourcepkg/framework/plugins/datalayer/requestmetadatapkg/framework/plugins/modelselector/picker/maxscorepkg/framework/plugins/modelselector/picker/randompkg/framework/plugins/modelselector/picker/weightedrandompkg/framework/plugins/modelselector/scorer/costawarepkg/framework/plugins/requesthandling/basemodelextractorpkg/framework/plugins/requesthandling/bodyfieldtoheaderpkg/framework/plugins/requesthandling/profilepicker/singlepkg/handlerspkg/metricspkg/modelselectorpkg/servertest/integrationTotal coverage: 51.5% (statements)
Linting
Release note (write
NONEif no user-facing change):