新しいjenkinsパイプラインをまとめて、コードへの新しいプルリクエストをテストしようとしています。ubuntu:14.04
画像でdockerを使用して、本番環境をシミュレートしています。
以下は最小の動作例です:
#jenkinsfile
stage('Checkout and provision'){
docker.image('ubuntu:14.04').withRun('-u root'){
checkout scm
sh 'chmod -R 770 ./'
sh './init-script.sh'
}
}
そして
#init-script.sh
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update -y
sudo apt-get dist-upgrade -y
sudo apt-get install \
apache2 \
php \
php-mysql \
php-xml \
libapache2-mod-auth-mysql \
libapache2-mod-php \
php5-curl \
zip \
htop \
supervisor \
mailutils \
git \
build-essential -y
sudo apt-get autoremove -y
/etc/sudoers
コンテナのファイルは次のとおりです。
#
# This file MUST be edited with the 'visudo' command as root.
#
# Please consider adding local content in /etc/sudoers.d/ instead of
# directly modifying this file.
#
# See the man page for details on how to write a sudoers file.
#
Defaults env_reset
Defaults mail_badpass
Defaults secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
Defaults:jenkins !requiretty
# User alias specification
# Cmnd alias specification
# User privilege specification
root ALL=(ALL:ALL) ALL
# Members of the admin group may gain root privileges
%admin ALL=(ALL) ALL
# Allow members of group sudo to execute any command
%sudo ALL=(ALL:ALL) ALL
# See sudoers(5) for more information on "#include" directives:
#includedir /etc/sudoers.d
jenkins ALL=(ALL:ALL) NOPASSWD:ALL
私が抱えている問題は、Dockerが以前のようにrootとして実行されておらず、代わりにホストマシンからのjenkinsユーザーのユーザーIDを保持していることです。これにより、sudoを実行することが難しくなります。
jenkinsユーザーをコンテナー/etc/passwd
ファイルに追加し、chmod
そのファイルに対して実行しようとしましたが、からこれらのいずれかを実行する権限もありませんjenkinsfile
。
この構成では、私はrootユーザーになる必要があります。ただし、Error: must run as root
使用しないsudo
か、sudo:使用するかno tty present and no askpass program specified
を確認します。
この状況に対処する正しい方法はありますか?理想的からjenkinsfile
; Dockerfile
テストと本番環境をさらに差別化するため、可能であれば追加の作成は避けたいと思います。