Add entrypoint.sh for key provisioning from env vars or auto-gen#60
Merged
rubenhensen merged 7 commits intomainfrom Feb 26, 2026
Merged
Add entrypoint.sh for key provisioning from env vars or auto-gen#60rubenhensen merged 7 commits intomainfrom
rubenhensen merged 7 commits intomainfrom
Conversation
Closes #59 On startup, load PKG keys from environment variables (PKG_IBE_SECRET, PKG_IBE_PUBLIC, PKG_IBS_SECRET, PKG_IBS_PUBLIC) supplied via Scaleway Secrets Manager / Kubernetes secrets. If no env vars are set, generate a fresh key pair with pg-pkg gen. The server is always started with explicit --ibe-*/--ibs-* path flags pointing to /keys/.
w-ensink
approved these changes
Feb 26, 2026
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.
Closes #59
Summary
entrypoint.shthat runs before the PKG server to provision keys either from environment variables (Scaleway Secrets Manager → Kubernetes secrets) or by auto-generating them if no env vars are set.Dockerfileto copy and wire up the entrypoint, create a/keysdirectory owned bynonroot, and replace the oldCMDwithENTRYPOINT.Key loading behaviour
PKG_IBE_SECRET,PKG_IBE_PUBLIC,PKG_IBS_SECRET,PKG_IBS_PUBLIC)/keys/pg-pkg gen→ generate fresh keys into/keys/The server always starts with explicit
--ibe-secret-path /keys/pkg_ibe.sec --ibe-public-path /keys/pkg_ibe.pub --ibs-secret-path /keys/pkg_ibs.sec --ibs-public-path /keys/pkg_ibs.pub.Test plan