feat: deploy DiceBear avatar renderer via the bundle#206
Merged
Conversation
Wire the giantswarm/dicebear chart into the agentic-platform meta-package as a force-enabled component, so the self-hosted DiceBear avatar API is deployed on every cluster that runs the platform (giantswarm/giantswarm#37211). Rendered as an OCIRepository + HelmRelease like every other component (injectGlobal: false — the chart's strict schema consumes registry.domain, not global). Its public avatar HTTPRoute is on by default, so every installation must set dicebear.route.parentRefs and dicebear.route.hostnames (e.g. avatars.<domain>), matching the existing ingress.* per-cluster contract. - values.yaml: components.dicebear + forwarded dicebear: block - examples/customer-bom.yaml: pin dicebear to 0.3.0 - values.schema.json: document the dicebear pass-through block - Makefile.custom.mk: verify-meta asserts the component renders - README.md, CHANGELOG.md
paurosello
approved these changes
Jul 21, 2026
fiunchinho
reviewed
Jul 21, 2026
fiunchinho
reviewed
Jul 21, 2026
| # route.hostnames (e.g. [avatars.<domain>]); the chart hard-fails otherwise, by design. | ||
| dicebear: | ||
| route: | ||
| enabled: true |
Member
There was a problem hiding this comment.
in which cases / scenarios would users set dicebear.route.enabled: false?
Member
Author
There was a problem hiding this comment.
In the rare case they don't have Envoy Gateway, they could use this to disable rendering the HTTPRoute resource. However, the chart doesn't offer any alternative (like Ingress), so it wouldn't really work.
Member
There was a problem hiding this comment.
That's where I was heading. I wouldn't expose this setting at all, given that the alternative doesn't really work.
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.
Wires the
giantswarm/dicebearchart into the meta-package as a force-enabled component, so the self-hosted DiceBear avatar API is deployed on every cluster that runs the platform. Resolves the open "chart home" decision in the agent-avatar-icon PRD — part of the bundle.Context: giantswarm/giantswarm#37211.
What changed
values.yaml—components.dicebear(versionRange: "0.x",injectGlobal: false— the chart's strict schema consumesregistry.domain, notglobal; force-enabled like muster/connectivity) + a forwarded top-leveldicebear:block.examples/customer-bom.yaml— pindicebear: 0.3.0(required;verify-metarejects unpinned ranges).values.schema.json— document thedicebearpass-through block and itsroutesub-keys.Makefile.custom.mk—verify-metaasserts the component renders.README.md/CHANGELOG.md.No changes to the dicebear chart — it already ships the workload, the public
HTTPRoute, and the EnvoyHTTPRouteFilterthat does the path→query rewrite.Per-cluster requirement
The public avatar route is on by default, so every installation must set
dicebear.route.parentRefs(typically the same public Gateway asingress.parentRefs) anddicebear.route.hostnames(e.g.avatars.<domain>) via its gitops overlay — the chart hard-fails otherwise, by design, matching the existingingress.*contract.Runtime prerequisite (dicebear repo, not this PR)
The chart pins
image.tag: "4.9"while retagger mirrorsdocker.io/dicebear/apiwithsemver: ">= 4.9.0". Confirm a4.9tag actually lands ingsoci.azurecr.io/giantswarm/dicebear-api, or pods won't pull.Verification
helm templaterenders the dicebearOCIRepository+HelmReleasewithroute.enabled: true(flux and argo).make verify-meta(incl. new assertion + BOM-pin guard) andmake verify-modespass.helm lintpasses; default values validate against the schema.HTTPRoute+HTTPRouteFilterwhen route config is supplied, and hard-fails whenhostnamesis omitted.Checklist
values.yamlandvalues.schema.jsonare valid.