3f355bbfd3
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
7 lines
157 B
Bash
Executable File
7 lines
157 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
echo "Installing additional Ruby gems..."
|
|
/opt/puppetlabs/puppet/bin/gem install toml
|
|
echo "Additional Ruby gems installed successfully"
|