feat: add custom entrypoint script for additional Ruby gems (#63)

Add support for installing additional Ruby gems via custom entrypoint script.
The script is mounted as a ConfigMap into /container-custom-entrypoint.d/
and will be executed during Puppetserver container startup.

Reviewed-on: #63
This commit was merged in pull request #63.
This commit is contained in:
2026-03-21 16:01:46 +11:00
parent 00cbb6a817
commit 3f355bbfd3
3 changed files with 18 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
#!/bin/bash
set -e
echo "Installing additional Ruby gems..."
/opt/puppetlabs/puppet/bin/gem install toml
echo "Additional Ruby gems installed successfully"