feat: add custom entrypoint script for additional Ruby gems
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.
This commit is contained in:
+6
@@ -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"
|
||||
Reference in New Issue
Block a user