Для целей этого вопроса мне нужно провести различие между моим мастером кукол Производства и моим мастером кукол Развития. В любом случае мой /etc/puppet/puppet.conf:
[main]
ssldir=$vardir/ssl
[master]
certname=puppet
Мастер марионеток разработки запускается:
# puppetmasterd --debug --no-daemonize
и Производство кукол - дело тонкое / nginx. Соответствующие файлы конфигурации nginx:
# /etc/nginx/sites-enabled/default
upstream puppet-production {
server unix:/var/run/puppet/master.00.sock;
server unix:/var/run/puppet/master.01.sock;
server unix:/var/run/puppet/master.02.sock;
}
server {
listen puppet:8140;
include conf.d/puppet_ssl.conf;
include conf.d/puppet_proxy_set_header.conf;
default_type application/x-raw;
location /production/file_content/ {
rewrite ^/production/file_content/([^/]+)/(.*) /$1/files/$2;
break;
root /etc/puppet/modules/;
}
location / {
proxy_pass http://puppet-production;
}
}
и
# /etc/nginx/conf.d/puppet_proxy_set_header.conf
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Client-Verify $ssl_client_verify;
proxy_set_header X-Client-Verify SUCCESS;
proxy_set_header X-Client-DN $ssl_client_s_dn;
proxy_set_header X-SSL-Subject $ssl_client_s_dn;
proxy_set_header X-SSL-Issuer $ssl_client_i_dn;
и
# /etc/nginx/conf.d/puppet_ssl.conf
ssl on;
ssl_certificate /var/lib/puppet/ssl/certs/puppet.pem;
ssl_certificate_key /var/lib/puppet/ssl/private_keys/puppet.pem;
ssl_ciphers ALL:-ADH:+HIGH:+MEDIUM:-LOW:-SSLv2:-EXP;
ssl_client_certificate /var/lib/puppet/ssl/ca/ca_crt.pem;
ssl_verify_client on;
Соответствующие тонкие файлы конфигурации:
#/etc/puppet/config.ru
# a config.ru, for use with every rack-compatible webserver.
# SSL needs to be handled outside this, though.
# if puppet is not in your RUBYLIB:
# $:.unshift('/opt/puppet/lib')
$0 = "master"
# if you want debugging:
# ARGV << "--debug"
ARGV << "--rack"
require 'puppet/application/master'
# we're usually running inside a Rack::Builder.new {} block,
# therefore we need to call run *here*.
run Puppet::Application[:master].run
и
# /etc/supervisor/conf.d/puppetmaster.conf
# This file is autogenerated by Puppet. Manual changes will be overwritten!
[program:puppetmaster]
command=/usr/bin/thin start -e development --socket /var/run/puppet/master.%(process_num)02d.sock --user puppet --group puppet --chdir /etc/puppet -R /etc/puppet/config.ru
process_name=%(program_name)s_%(process_num)02d
numprocs=3
priority=999
autostart=true
autorestart=unexpected
startsecs=3
startretries=3
exitcodes=0,2
stopsignal=TERM
stopwaitsecs=10
redirect_stderr=false
stdout_logfile=/var/log/supervisor/puppetmaster/puppetmaster.out
stdout_logfile_maxbytes=250MB
stdout_logfile_backups=10
stderr_logfile=/var/log/supervisor/puppetmaster/puppetmaster.err
stderr_logfile_maxbytes=250MB
stderr_logfile_backups=10
С помощью кукольный модуль-супервизор Я обнаружил, что путь к исходной строке в manifests/init.pp
вызывает ошибку 404 при работе в производственном режиме:
'/etc/logrotate.d/supervisor':
source => 'puppet:///modules/supervisor/logrotate',
require => Package[$supervisor::params::package];
но если я изменю путь, чтобы он был просто puppet:///supervisor/logrotate
все хорошо. Первая и вторая форма преуспевают в режиме разработки. Насколько я понимаю, первая форма верный и что в моем рабочем режиме не должно быть проблем.
Бег puppet agent --test
когда мастер настроен в производственном режиме приводит к:
# puppet agent --test
info: Caching catalog for puppet.troutwine.us
info: Applying configuration version '1327957286'
err: /Stage[main]/Supervisor/File[/etc/logrotate.d/supervisor]/ensure: change from absent to file failed: Could not set 'file on ensure: Error 404 on SERVER: <html>
<head><title>404 Not Found</title></head>
<body bgcolor="white">
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.1.8</center>
</body>
</html>
at /etc/puppet/modules/supervisor/manifests/init.pp:32
notice: Finished catalog run in 1.65 seconds
и журналы из /var/log/nginx/access.log
# cat /var/log/nginx/{access,error}.log
127.0.1.1 - - [30/Jan/2012:20:50:58 +0000] "POST /production/catalog/puppet.troutwine.us HTTP/1.1" 200 13290 "-" "Ruby"
127.0.1.1 - - [30/Jan/2012:20:51:00 +0000] "GET /production/file_metadata/modules/supervisor/logrotate? HTTP/1.1" 200 308 "-" "Ruby"
127.0.1.1 - - [30/Jan/2012:20:51:00 +0000] "GET /production/file_content/modules/supervisor/logrotate HTTP/1.1" 404 168 "-" "Ruby"
127.0.1.1 - - [30/Jan/2012:20:51:01 +0000] "PUT /production/report/puppet.troutwine.us HTTP/1.1" 200 14 "-" "Ruby"
2012/01/30 20:51:00 [error] 10716#0: *222 open() "/etc/puppet/modules/modules/files/supervisor/logrotate" failed (2: No such file or directory), client: 127.0.1.1, server: , request: "GET /production/file_content/modules/supervisor/logrotate HTTP/1.1", host: "puppet:8140"
Подробности о моем окружении:
# puppet --version
2.7.9
# cat /etc/debian_version
6.0.3
# ruby -v
ruby 1.9.2p0 (2010-08-18 revision 29036) [i486-linux]
У кого-нибудь есть подозрение, что происходит не так?
Путь, который запрашивает клиентский узел:
/production/file_content/modules/supervisor/logrotate
Хотя написанная конфигурация nginx, похоже, ожидает:
/production/file_content/supervisor/logrotate
Так, modules
пойман первым захватом и supervisor/logrotate
пойман вторым захватом; то files
который должен стоять между именем модуля и именем файла не в нужном месте и modules
удваивается:
"/etc/puppet/modules/modules/files/supervisor/logrotate" failed (2: No such file or directory)
Похоже, вы могли бы просто изменить свое правило перезаписи на это:
rewrite ^/production/file_content/modules/([^/]+)/(.*) /$1/files/$2;