correctly set X-FORWARDED-PROTO header #1472
ci.yml
on: pull_request
Puppet
/
Static validations
40s
Matrix: Puppet / acceptance
Matrix: Puppet / unit
Puppet
/
Test suite
2s
Annotations
141 errors and 37 warnings
Puppet / 8 (Ruby 3.2):
spec/classes/pulpcore_spec.rb#L80
pulpcore on almalinux-9-x86_64 default params configures apache
Failure/Error:
is_expected.to contain_apache__vhost('pulpcore')
.with_serveraliases([])
.with_directories([
{
'provider' => 'Directory',
'path' => '/var/lib/pulp/pulpcore_static',
'options' => ['-Indexes', '-FollowSymLinks'],
'allow_override' => ['None'],
},
{
expected that the catalogue would contain Apache::Vhost[pulpcore] with directories set to [{"provider"=>"Directory", "path"=>"/var/lib/pulp/pulpcore_static", "options"=>["-Indexes", "-FollowSymLinks"], "allow_override"=>["None"]}, {"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT"]}] but it is set to [{"provider"=>"Directory", "path"=>"/var/lib/pulp/pulpcore_static", "options"=>["-Indexes", "-FollowSymLinks"], "allow_override"=>["None"]}, {"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT", "set X-FORWARDED-PROTO \"%{REQUEST_SCHEME}\""]}]
Diff:
@@ -1,3 +1,3 @@
{"provider"=>"Directory", "path"=>"/var/lib/pulp/pulpcore_static", "options"=>["-Indexes", "-FollowSymLinks"], "allow_override"=>["None"]}
-{"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT"]}
+{"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT", "set X-FORWARDED-PROTO \"%{REQUEST_SCHEME}\""]}
|
Puppet / 8 (Ruby 3.2):
spec/classes/pulpcore_spec.rb#L326
pulpcore on almalinux-9-x86_64 with external vhosts is expected to contain Apache::Vhost::Fragment[pulpcore-http-pulpcore] with vhost => "foreman", priority => "10" and content supplied string
Failure/Error:
is_expected.to contain_apache__vhost__fragment('pulpcore-http-pulpcore')
.with_vhost('foreman')
.with_priority('10')
.with_content(
<<CONTENT
<Location "/pulp/content">
RequestHeader unset X-CLIENT-CERT
RequestHeader set X-CLIENT-CERT "%{SSL_CLIENT_CERT}s" env=SSL_CLIENT_CERT
ProxyPass unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content disablereuse=on timeout=600
expected that the catalogue would contain Apache::Vhost::Fragment[pulpcore-http-pulpcore] with content set to supplied string
Diff:
@@ -2,6 +2,7 @@
<Location "/pulp/content">
RequestHeader unset X-CLIENT-CERT
RequestHeader set X-CLIENT-CERT "%{SSL_CLIENT_CERT}s" env=SSL_CLIENT_CERT
+ RequestHeader set X-FORWARDED-PROTO "%{REQUEST_SCHEME}"
ProxyPass unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content disablereuse=on timeout=600
ProxyPassReverse unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content
</Location>
|
Puppet / 8 (Ruby 3.2):
spec/classes/pulpcore_spec.rb#L343
pulpcore on almalinux-9-x86_64 with external vhosts is expected to contain Apache::Vhost::Fragment[pulpcore-https-pulpcore] with vhost => "foreman-ssl", priority => "10" and content supplied string
Failure/Error:
is_expected.to contain_apache__vhost__fragment('pulpcore-https-pulpcore')
.with_vhost('foreman-ssl')
.with_priority('10')
.with_content(
<<CONTENT
<Location "/pulp/content">
RequestHeader unset X-CLIENT-CERT
RequestHeader set X-CLIENT-CERT "%{SSL_CLIENT_CERT}s" env=SSL_CLIENT_CERT
ProxyPass unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content disablereuse=on timeout=600
expected that the catalogue would contain Apache::Vhost::Fragment[pulpcore-https-pulpcore] with content set to supplied string
Diff:
@@ -2,6 +2,7 @@
<Location "/pulp/content">
RequestHeader unset X-CLIENT-CERT
RequestHeader set X-CLIENT-CERT "%{SSL_CLIENT_CERT}s" env=SSL_CLIENT_CERT
+ RequestHeader set X-FORWARDED-PROTO "%{REQUEST_SCHEME}"
ProxyPass unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content disablereuse=on timeout=600
ProxyPassReverse unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content
</Location>
@@ -9,6 +10,7 @@
<Location "/pulp/api/v3">
RequestHeader unset REMOTE-USER
RequestHeader unset REMOTE_USER
+ RequestHeader set X-FORWARDED-PROTO "%{REQUEST_SCHEME}"
ProxyPass unix:///run/pulpcore-api.sock|http://pulpcore-api/pulp/api/v3 timeout=600
ProxyPassReverse unix:///run/pulpcore-api.sock|http://pulpcore-api/pulp/api/v3
</Location>
|
Puppet / 8 (Ruby 3.2):
spec/classes/pulpcore_spec.rb#L494
pulpcore on almalinux-9-x86_64 with API client auth common names is expected to contain Apache::Vhost[pulpcore-https] with directories => [{"provider"=>"Directory", "path"=>"/var/lib/pulp/pulpcore_static", "options"=>["-Indexes", "-FollowSymLinks"], "allow_override"=>["None"]}, {"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT"]}, {"path"=>"/pulp/api/v3", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-api.sock|http://pulpcore-api/pulp/api/v3", "params"=>{"timeout"=>"600"}}], "request_headers"=>["unset REMOTE-USER", "unset REMOTE_USER", "set REMOTE-USER \"admin\" \"expr=%{tolower:%{SSL_CLIENT_S_DN_CN}} == 'foreman.example.com'\""]}]
Failure/Error:
is_expected.to contain_apache__vhost('pulpcore-https')
.with_directories([
{
'provider' => 'Directory',
'path' => '/var/lib/pulp/pulpcore_static',
'options' => ['-Indexes', '-FollowSymLinks'],
'allow_override' => ['None'],
},
{
'path' => '/pulp/content',
expected that the catalogue would contain Apache::Vhost[pulpcore-https] with directories set to [{"provider"=>"Directory", "path"=>"/var/lib/pulp/pulpcore_static", "options"=>["-Indexes", "-FollowSymLinks"], "allow_override"=>["None"]}, {"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT"]}, {"path"=>"/pulp/api/v3", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-api.sock|http://pulpcore-api/pulp/api/v3", "params"=>{"timeout"=>"600"}}], "request_headers"=>["unset REMOTE-USER", "unset REMOTE_USER", "set REMOTE-USER \"admin\" \"expr=%{tolower:%{SSL_CLIENT_S_DN_CN}} == 'foreman.example.com'\""]}] but it is set to [{"provider"=>"Directory", "path"=>"/var/lib/pulp/pulpcore_static", "options"=>["-Indexes", "-FollowSymLinks"], "allow_override"=>["None"]}, {"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT", "set X-FORWARDED-PROTO \"%{REQUEST_SCHEME}\""]}, {"path"=>"/pulp/api/v3", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-api.sock|http://pulpcore-api/pulp/api/v3", "params"=>{"timeout"=>"600"}}], "request_headers"=>["unset REMOTE-USER", "unset REMOTE_USER", "set REMOTE-USER \"admin\" \"expr=%{tolower:%{SSL_CLIENT_S_DN_CN}} == 'foreman.example.com'\"", "set X-FORWARDED-PROTO \"%{REQUEST_SCHEME}\""]}]
Diff:
@@ -1,5 +1,5 @@
{"provider"=>"Directory", "path"=>"/var/lib/pulp/pulpcore_static", "options"=>["-Indexes", "-FollowSymLinks"], "allow_override"=>["None"]}
-{"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT"]}
+{"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT", "set X-FORWARDED-PROTO \"%{REQUEST_SCHEME}\""]}
-{"path"=>"/pulp/api/v3", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-api.sock|http://pulpcore-api/pulp/api/v3", "params"=>{"timeout"=>"600"}}], "request_heade
|
Puppet / 8 (Ruby 3.2):
spec/classes/pulpcore_spec.rb#L80
pulpcore on centos-9-x86_64 default params configures apache
Failure/Error:
is_expected.to contain_apache__vhost('pulpcore')
.with_serveraliases([])
.with_directories([
{
'provider' => 'Directory',
'path' => '/var/lib/pulp/pulpcore_static',
'options' => ['-Indexes', '-FollowSymLinks'],
'allow_override' => ['None'],
},
{
expected that the catalogue would contain Apache::Vhost[pulpcore] with directories set to [{"provider"=>"Directory", "path"=>"/var/lib/pulp/pulpcore_static", "options"=>["-Indexes", "-FollowSymLinks"], "allow_override"=>["None"]}, {"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT"]}] but it is set to [{"provider"=>"Directory", "path"=>"/var/lib/pulp/pulpcore_static", "options"=>["-Indexes", "-FollowSymLinks"], "allow_override"=>["None"]}, {"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT", "set X-FORWARDED-PROTO \"%{REQUEST_SCHEME}\""]}]
Diff:
@@ -1,3 +1,3 @@
{"provider"=>"Directory", "path"=>"/var/lib/pulp/pulpcore_static", "options"=>["-Indexes", "-FollowSymLinks"], "allow_override"=>["None"]}
-{"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT"]}
+{"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT", "set X-FORWARDED-PROTO \"%{REQUEST_SCHEME}\""]}
|
Puppet / 8 (Ruby 3.2):
spec/classes/pulpcore_spec.rb#L326
pulpcore on centos-9-x86_64 with external vhosts is expected to contain Apache::Vhost::Fragment[pulpcore-http-pulpcore] with vhost => "foreman", priority => "10" and content supplied string
Failure/Error:
is_expected.to contain_apache__vhost__fragment('pulpcore-http-pulpcore')
.with_vhost('foreman')
.with_priority('10')
.with_content(
<<CONTENT
<Location "/pulp/content">
RequestHeader unset X-CLIENT-CERT
RequestHeader set X-CLIENT-CERT "%{SSL_CLIENT_CERT}s" env=SSL_CLIENT_CERT
ProxyPass unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content disablereuse=on timeout=600
expected that the catalogue would contain Apache::Vhost::Fragment[pulpcore-http-pulpcore] with content set to supplied string
Diff:
@@ -2,6 +2,7 @@
<Location "/pulp/content">
RequestHeader unset X-CLIENT-CERT
RequestHeader set X-CLIENT-CERT "%{SSL_CLIENT_CERT}s" env=SSL_CLIENT_CERT
+ RequestHeader set X-FORWARDED-PROTO "%{REQUEST_SCHEME}"
ProxyPass unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content disablereuse=on timeout=600
ProxyPassReverse unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content
</Location>
|
Puppet / 8 (Ruby 3.2):
spec/classes/pulpcore_spec.rb#L343
pulpcore on centos-9-x86_64 with external vhosts is expected to contain Apache::Vhost::Fragment[pulpcore-https-pulpcore] with vhost => "foreman-ssl", priority => "10" and content supplied string
Failure/Error:
is_expected.to contain_apache__vhost__fragment('pulpcore-https-pulpcore')
.with_vhost('foreman-ssl')
.with_priority('10')
.with_content(
<<CONTENT
<Location "/pulp/content">
RequestHeader unset X-CLIENT-CERT
RequestHeader set X-CLIENT-CERT "%{SSL_CLIENT_CERT}s" env=SSL_CLIENT_CERT
ProxyPass unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content disablereuse=on timeout=600
expected that the catalogue would contain Apache::Vhost::Fragment[pulpcore-https-pulpcore] with content set to supplied string
Diff:
@@ -2,6 +2,7 @@
<Location "/pulp/content">
RequestHeader unset X-CLIENT-CERT
RequestHeader set X-CLIENT-CERT "%{SSL_CLIENT_CERT}s" env=SSL_CLIENT_CERT
+ RequestHeader set X-FORWARDED-PROTO "%{REQUEST_SCHEME}"
ProxyPass unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content disablereuse=on timeout=600
ProxyPassReverse unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content
</Location>
@@ -9,6 +10,7 @@
<Location "/pulp/api/v3">
RequestHeader unset REMOTE-USER
RequestHeader unset REMOTE_USER
+ RequestHeader set X-FORWARDED-PROTO "%{REQUEST_SCHEME}"
ProxyPass unix:///run/pulpcore-api.sock|http://pulpcore-api/pulp/api/v3 timeout=600
ProxyPassReverse unix:///run/pulpcore-api.sock|http://pulpcore-api/pulp/api/v3
</Location>
|
Puppet / 8 (Ruby 3.2):
spec/classes/pulpcore_spec.rb#L494
pulpcore on centos-9-x86_64 with API client auth common names is expected to contain Apache::Vhost[pulpcore-https] with directories => [{"provider"=>"Directory", "path"=>"/var/lib/pulp/pulpcore_static", "options"=>["-Indexes", "-FollowSymLinks"], "allow_override"=>["None"]}, {"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT"]}, {"path"=>"/pulp/api/v3", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-api.sock|http://pulpcore-api/pulp/api/v3", "params"=>{"timeout"=>"600"}}], "request_headers"=>["unset REMOTE-USER", "unset REMOTE_USER", "set REMOTE-USER \"admin\" \"expr=%{tolower:%{SSL_CLIENT_S_DN_CN}} == 'foreman.example.com'\""]}]
Failure/Error:
is_expected.to contain_apache__vhost('pulpcore-https')
.with_directories([
{
'provider' => 'Directory',
'path' => '/var/lib/pulp/pulpcore_static',
'options' => ['-Indexes', '-FollowSymLinks'],
'allow_override' => ['None'],
},
{
'path' => '/pulp/content',
expected that the catalogue would contain Apache::Vhost[pulpcore-https] with directories set to [{"provider"=>"Directory", "path"=>"/var/lib/pulp/pulpcore_static", "options"=>["-Indexes", "-FollowSymLinks"], "allow_override"=>["None"]}, {"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT"]}, {"path"=>"/pulp/api/v3", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-api.sock|http://pulpcore-api/pulp/api/v3", "params"=>{"timeout"=>"600"}}], "request_headers"=>["unset REMOTE-USER", "unset REMOTE_USER", "set REMOTE-USER \"admin\" \"expr=%{tolower:%{SSL_CLIENT_S_DN_CN}} == 'foreman.example.com'\""]}] but it is set to [{"provider"=>"Directory", "path"=>"/var/lib/pulp/pulpcore_static", "options"=>["-Indexes", "-FollowSymLinks"], "allow_override"=>["None"]}, {"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT", "set X-FORWARDED-PROTO \"%{REQUEST_SCHEME}\""]}, {"path"=>"/pulp/api/v3", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-api.sock|http://pulpcore-api/pulp/api/v3", "params"=>{"timeout"=>"600"}}], "request_headers"=>["unset REMOTE-USER", "unset REMOTE_USER", "set REMOTE-USER \"admin\" \"expr=%{tolower:%{SSL_CLIENT_S_DN_CN}} == 'foreman.example.com'\"", "set X-FORWARDED-PROTO \"%{REQUEST_SCHEME}\""]}]
Diff:
@@ -1,5 +1,5 @@
{"provider"=>"Directory", "path"=>"/var/lib/pulp/pulpcore_static", "options"=>["-Indexes", "-FollowSymLinks"], "allow_override"=>["None"]}
-{"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT"]}
+{"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT", "set X-FORWARDED-PROTO \"%{REQUEST_SCHEME}\""]}
-{"path"=>"/pulp/api/v3", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-api.sock|http://pulpcore-api/pulp/api/v3", "params"=>{"timeout"=>"600"}}], "request_headers"
|
Puppet / 8 (Ruby 3.2):
spec/classes/pulpcore_spec.rb#L80
pulpcore on redhat-9-x86_64 default params configures apache
Failure/Error:
is_expected.to contain_apache__vhost('pulpcore')
.with_serveraliases([])
.with_directories([
{
'provider' => 'Directory',
'path' => '/var/lib/pulp/pulpcore_static',
'options' => ['-Indexes', '-FollowSymLinks'],
'allow_override' => ['None'],
},
{
expected that the catalogue would contain Apache::Vhost[pulpcore] with directories set to [{"provider"=>"Directory", "path"=>"/var/lib/pulp/pulpcore_static", "options"=>["-Indexes", "-FollowSymLinks"], "allow_override"=>["None"]}, {"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT"]}] but it is set to [{"provider"=>"Directory", "path"=>"/var/lib/pulp/pulpcore_static", "options"=>["-Indexes", "-FollowSymLinks"], "allow_override"=>["None"]}, {"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT", "set X-FORWARDED-PROTO \"%{REQUEST_SCHEME}\""]}]
Diff:
@@ -1,3 +1,3 @@
{"provider"=>"Directory", "path"=>"/var/lib/pulp/pulpcore_static", "options"=>["-Indexes", "-FollowSymLinks"], "allow_override"=>["None"]}
-{"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT"]}
+{"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT", "set X-FORWARDED-PROTO \"%{REQUEST_SCHEME}\""]}
|
Puppet / 8 (Ruby 3.2):
spec/classes/pulpcore_spec.rb#L326
pulpcore on redhat-9-x86_64 with external vhosts is expected to contain Apache::Vhost::Fragment[pulpcore-http-pulpcore] with vhost => "foreman", priority => "10" and content supplied string
Failure/Error:
is_expected.to contain_apache__vhost__fragment('pulpcore-http-pulpcore')
.with_vhost('foreman')
.with_priority('10')
.with_content(
<<CONTENT
<Location "/pulp/content">
RequestHeader unset X-CLIENT-CERT
RequestHeader set X-CLIENT-CERT "%{SSL_CLIENT_CERT}s" env=SSL_CLIENT_CERT
ProxyPass unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content disablereuse=on timeout=600
expected that the catalogue would contain Apache::Vhost::Fragment[pulpcore-http-pulpcore] with content set to supplied string
Diff:
@@ -2,6 +2,7 @@
<Location "/pulp/content">
RequestHeader unset X-CLIENT-CERT
RequestHeader set X-CLIENT-CERT "%{SSL_CLIENT_CERT}s" env=SSL_CLIENT_CERT
+ RequestHeader set X-FORWARDED-PROTO "%{REQUEST_SCHEME}"
ProxyPass unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content disablereuse=on timeout=600
ProxyPassReverse unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content
</Location>
|
Puppet / 7 (Ruby 2.7):
spec/classes/pulpcore_spec.rb#L80
pulpcore on centos-9-x86_64 default params configures apache
Failure/Error:
is_expected.to contain_apache__vhost('pulpcore')
.with_serveraliases([])
.with_directories([
{
'provider' => 'Directory',
'path' => '/var/lib/pulp/pulpcore_static',
'options' => ['-Indexes', '-FollowSymLinks'],
'allow_override' => ['None'],
},
{
expected that the catalogue would contain Apache::Vhost[pulpcore] with directories set to [{"provider"=>"Directory", "path"=>"/var/lib/pulp/pulpcore_static", "options"=>["-Indexes", "-FollowSymLinks"], "allow_override"=>["None"]}, {"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT"]}] but it is set to [{"provider"=>"Directory", "path"=>"/var/lib/pulp/pulpcore_static", "options"=>["-Indexes", "-FollowSymLinks"], "allow_override"=>["None"]}, {"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT", "set X-FORWARDED-PROTO \"%{REQUEST_SCHEME}\""]}]
Diff:
@@ -1,3 +1,3 @@
{"provider"=>"Directory", "path"=>"/var/lib/pulp/pulpcore_static", "options"=>["-Indexes", "-FollowSymLinks"], "allow_override"=>["None"]}
-{"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT"]}
+{"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT", "set X-FORWARDED-PROTO \"%{REQUEST_SCHEME}\""]}
|
Puppet / 7 (Ruby 2.7):
spec/classes/pulpcore_spec.rb#L326
pulpcore on centos-9-x86_64 with external vhosts is expected to contain Apache::Vhost::Fragment[pulpcore-http-pulpcore] with vhost => "foreman", priority => "10" and content supplied string
Failure/Error:
is_expected.to contain_apache__vhost__fragment('pulpcore-http-pulpcore')
.with_vhost('foreman')
.with_priority('10')
.with_content(
<<CONTENT
<Location "/pulp/content">
RequestHeader unset X-CLIENT-CERT
RequestHeader set X-CLIENT-CERT "%{SSL_CLIENT_CERT}s" env=SSL_CLIENT_CERT
ProxyPass unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content disablereuse=on timeout=600
expected that the catalogue would contain Apache::Vhost::Fragment[pulpcore-http-pulpcore] with content set to supplied string
Diff:
@@ -2,6 +2,7 @@
<Location "/pulp/content">
RequestHeader unset X-CLIENT-CERT
RequestHeader set X-CLIENT-CERT "%{SSL_CLIENT_CERT}s" env=SSL_CLIENT_CERT
+ RequestHeader set X-FORWARDED-PROTO "%{REQUEST_SCHEME}"
ProxyPass unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content disablereuse=on timeout=600
ProxyPassReverse unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content
</Location>
|
Puppet / 7 (Ruby 2.7):
spec/classes/pulpcore_spec.rb#L343
pulpcore on centos-9-x86_64 with external vhosts is expected to contain Apache::Vhost::Fragment[pulpcore-https-pulpcore] with vhost => "foreman-ssl", priority => "10" and content supplied string
Failure/Error:
is_expected.to contain_apache__vhost__fragment('pulpcore-https-pulpcore')
.with_vhost('foreman-ssl')
.with_priority('10')
.with_content(
<<CONTENT
<Location "/pulp/content">
RequestHeader unset X-CLIENT-CERT
RequestHeader set X-CLIENT-CERT "%{SSL_CLIENT_CERT}s" env=SSL_CLIENT_CERT
ProxyPass unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content disablereuse=on timeout=600
expected that the catalogue would contain Apache::Vhost::Fragment[pulpcore-https-pulpcore] with content set to supplied string
Diff:
@@ -2,6 +2,7 @@
<Location "/pulp/content">
RequestHeader unset X-CLIENT-CERT
RequestHeader set X-CLIENT-CERT "%{SSL_CLIENT_CERT}s" env=SSL_CLIENT_CERT
+ RequestHeader set X-FORWARDED-PROTO "%{REQUEST_SCHEME}"
ProxyPass unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content disablereuse=on timeout=600
ProxyPassReverse unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content
</Location>
@@ -9,6 +10,7 @@
<Location "/pulp/api/v3">
RequestHeader unset REMOTE-USER
RequestHeader unset REMOTE_USER
+ RequestHeader set X-FORWARDED-PROTO "%{REQUEST_SCHEME}"
ProxyPass unix:///run/pulpcore-api.sock|http://pulpcore-api/pulp/api/v3 timeout=600
ProxyPassReverse unix:///run/pulpcore-api.sock|http://pulpcore-api/pulp/api/v3
</Location>
|
Puppet / 7 (Ruby 2.7):
spec/classes/pulpcore_spec.rb#L494
pulpcore on centos-9-x86_64 with API client auth common names is expected to contain Apache::Vhost[pulpcore-https] with directories => [{"provider"=>"Directory", "path"=>"/var/lib/pulp/pulpcore_static", "options"=>["-Indexes", "-FollowSymLinks"], "allow_override"=>["None"]}, {"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT"]}, {"path"=>"/pulp/api/v3", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-api.sock|http://pulpcore-api/pulp/api/v3", "params"=>{"timeout"=>"600"}}], "request_headers"=>["unset REMOTE-USER", "unset REMOTE_USER", "set REMOTE-USER \"admin\" \"expr=%{tolower:%{SSL_CLIENT_S_DN_CN}} == 'foreman.example.com'\""]}]
Failure/Error:
is_expected.to contain_apache__vhost('pulpcore-https')
.with_directories([
{
'provider' => 'Directory',
'path' => '/var/lib/pulp/pulpcore_static',
'options' => ['-Indexes', '-FollowSymLinks'],
'allow_override' => ['None'],
},
{
'path' => '/pulp/content',
expected that the catalogue would contain Apache::Vhost[pulpcore-https] with directories set to [{"provider"=>"Directory", "path"=>"/var/lib/pulp/pulpcore_static", "options"=>["-Indexes", "-FollowSymLinks"], "allow_override"=>["None"]}, {"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT"]}, {"path"=>"/pulp/api/v3", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-api.sock|http://pulpcore-api/pulp/api/v3", "params"=>{"timeout"=>"600"}}], "request_headers"=>["unset REMOTE-USER", "unset REMOTE_USER", "set REMOTE-USER \"admin\" \"expr=%{tolower:%{SSL_CLIENT_S_DN_CN}} == 'foreman.example.com'\""]}] but it is set to [{"provider"=>"Directory", "path"=>"/var/lib/pulp/pulpcore_static", "options"=>["-Indexes", "-FollowSymLinks"], "allow_override"=>["None"]}, {"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT", "set X-FORWARDED-PROTO \"%{REQUEST_SCHEME}\""]}, {"path"=>"/pulp/api/v3", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-api.sock|http://pulpcore-api/pulp/api/v3", "params"=>{"timeout"=>"600"}}], "request_headers"=>["unset REMOTE-USER", "unset REMOTE_USER", "set REMOTE-USER \"admin\" \"expr=%{tolower:%{SSL_CLIENT_S_DN_CN}} == 'foreman.example.com'\"", "set X-FORWARDED-PROTO \"%{REQUEST_SCHEME}\""]}]
Diff:
@@ -1,5 +1,5 @@
{"provider"=>"Directory", "path"=>"/var/lib/pulp/pulpcore_static", "options"=>["-Indexes", "-FollowSymLinks"], "allow_override"=>["None"]}
-{"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT"]}
+{"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT", "set X-FORWARDED-PROTO \"%{REQUEST_SCHEME}\""]}
-{"path"=>"/pulp/api/v3", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-api.sock|http://pulpcore-api/pulp/api/v3", "params"=>{"timeout"=>"600"}}], "request_headers"
|
Puppet / 7 (Ruby 2.7):
spec/classes/pulpcore_spec.rb#L80
pulpcore on redhat-9-x86_64 default params configures apache
Failure/Error:
is_expected.to contain_apache__vhost('pulpcore')
.with_serveraliases([])
.with_directories([
{
'provider' => 'Directory',
'path' => '/var/lib/pulp/pulpcore_static',
'options' => ['-Indexes', '-FollowSymLinks'],
'allow_override' => ['None'],
},
{
expected that the catalogue would contain Apache::Vhost[pulpcore] with directories set to [{"provider"=>"Directory", "path"=>"/var/lib/pulp/pulpcore_static", "options"=>["-Indexes", "-FollowSymLinks"], "allow_override"=>["None"]}, {"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT"]}] but it is set to [{"provider"=>"Directory", "path"=>"/var/lib/pulp/pulpcore_static", "options"=>["-Indexes", "-FollowSymLinks"], "allow_override"=>["None"]}, {"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT", "set X-FORWARDED-PROTO \"%{REQUEST_SCHEME}\""]}]
Diff:
@@ -1,3 +1,3 @@
{"provider"=>"Directory", "path"=>"/var/lib/pulp/pulpcore_static", "options"=>["-Indexes", "-FollowSymLinks"], "allow_override"=>["None"]}
-{"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT"]}
+{"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT", "set X-FORWARDED-PROTO \"%{REQUEST_SCHEME}\""]}
|
Puppet / 7 (Ruby 2.7):
spec/classes/pulpcore_spec.rb#L326
pulpcore on redhat-9-x86_64 with external vhosts is expected to contain Apache::Vhost::Fragment[pulpcore-http-pulpcore] with vhost => "foreman", priority => "10" and content supplied string
Failure/Error:
is_expected.to contain_apache__vhost__fragment('pulpcore-http-pulpcore')
.with_vhost('foreman')
.with_priority('10')
.with_content(
<<CONTENT
<Location "/pulp/content">
RequestHeader unset X-CLIENT-CERT
RequestHeader set X-CLIENT-CERT "%{SSL_CLIENT_CERT}s" env=SSL_CLIENT_CERT
ProxyPass unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content disablereuse=on timeout=600
expected that the catalogue would contain Apache::Vhost::Fragment[pulpcore-http-pulpcore] with content set to supplied string
Diff:
@@ -2,6 +2,7 @@
<Location "/pulp/content">
RequestHeader unset X-CLIENT-CERT
RequestHeader set X-CLIENT-CERT "%{SSL_CLIENT_CERT}s" env=SSL_CLIENT_CERT
+ RequestHeader set X-FORWARDED-PROTO "%{REQUEST_SCHEME}"
ProxyPass unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content disablereuse=on timeout=600
ProxyPassReverse unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content
</Location>
|
Puppet / 7 (Ruby 2.7):
spec/classes/pulpcore_spec.rb#L343
pulpcore on redhat-9-x86_64 with external vhosts is expected to contain Apache::Vhost::Fragment[pulpcore-https-pulpcore] with vhost => "foreman-ssl", priority => "10" and content supplied string
Failure/Error:
is_expected.to contain_apache__vhost__fragment('pulpcore-https-pulpcore')
.with_vhost('foreman-ssl')
.with_priority('10')
.with_content(
<<CONTENT
<Location "/pulp/content">
RequestHeader unset X-CLIENT-CERT
RequestHeader set X-CLIENT-CERT "%{SSL_CLIENT_CERT}s" env=SSL_CLIENT_CERT
ProxyPass unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content disablereuse=on timeout=600
expected that the catalogue would contain Apache::Vhost::Fragment[pulpcore-https-pulpcore] with content set to supplied string
Diff:
@@ -2,6 +2,7 @@
<Location "/pulp/content">
RequestHeader unset X-CLIENT-CERT
RequestHeader set X-CLIENT-CERT "%{SSL_CLIENT_CERT}s" env=SSL_CLIENT_CERT
+ RequestHeader set X-FORWARDED-PROTO "%{REQUEST_SCHEME}"
ProxyPass unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content disablereuse=on timeout=600
ProxyPassReverse unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content
</Location>
@@ -9,6 +10,7 @@
<Location "/pulp/api/v3">
RequestHeader unset REMOTE-USER
RequestHeader unset REMOTE_USER
+ RequestHeader set X-FORWARDED-PROTO "%{REQUEST_SCHEME}"
ProxyPass unix:///run/pulpcore-api.sock|http://pulpcore-api/pulp/api/v3 timeout=600
ProxyPassReverse unix:///run/pulpcore-api.sock|http://pulpcore-api/pulp/api/v3
</Location>
|
Puppet / 7 (Ruby 2.7):
spec/classes/pulpcore_spec.rb#L494
pulpcore on redhat-9-x86_64 with API client auth common names is expected to contain Apache::Vhost[pulpcore-https] with directories => [{"provider"=>"Directory", "path"=>"/var/lib/pulp/pulpcore_static", "options"=>["-Indexes", "-FollowSymLinks"], "allow_override"=>["None"]}, {"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT"]}, {"path"=>"/pulp/api/v3", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-api.sock|http://pulpcore-api/pulp/api/v3", "params"=>{"timeout"=>"600"}}], "request_headers"=>["unset REMOTE-USER", "unset REMOTE_USER", "set REMOTE-USER \"admin\" \"expr=%{tolower:%{SSL_CLIENT_S_DN_CN}} == 'foreman.example.com'\""]}]
Failure/Error:
is_expected.to contain_apache__vhost('pulpcore-https')
.with_directories([
{
'provider' => 'Directory',
'path' => '/var/lib/pulp/pulpcore_static',
'options' => ['-Indexes', '-FollowSymLinks'],
'allow_override' => ['None'],
},
{
'path' => '/pulp/content',
expected that the catalogue would contain Apache::Vhost[pulpcore-https] with directories set to [{"provider"=>"Directory", "path"=>"/var/lib/pulp/pulpcore_static", "options"=>["-Indexes", "-FollowSymLinks"], "allow_override"=>["None"]}, {"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT"]}, {"path"=>"/pulp/api/v3", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-api.sock|http://pulpcore-api/pulp/api/v3", "params"=>{"timeout"=>"600"}}], "request_headers"=>["unset REMOTE-USER", "unset REMOTE_USER", "set REMOTE-USER \"admin\" \"expr=%{tolower:%{SSL_CLIENT_S_DN_CN}} == 'foreman.example.com'\""]}] but it is set to [{"provider"=>"Directory", "path"=>"/var/lib/pulp/pulpcore_static", "options"=>["-Indexes", "-FollowSymLinks"], "allow_override"=>["None"]}, {"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT", "set X-FORWARDED-PROTO \"%{REQUEST_SCHEME}\""]}, {"path"=>"/pulp/api/v3", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-api.sock|http://pulpcore-api/pulp/api/v3", "params"=>{"timeout"=>"600"}}], "request_headers"=>["unset REMOTE-USER", "unset REMOTE_USER", "set REMOTE-USER \"admin\" \"expr=%{tolower:%{SSL_CLIENT_S_DN_CN}} == 'foreman.example.com'\"", "set X-FORWARDED-PROTO \"%{REQUEST_SCHEME}\""]}]
Diff:
@@ -1,5 +1,5 @@
{"provider"=>"Directory", "path"=>"/var/lib/pulp/pulpcore_static", "options"=>["-Indexes", "-FollowSymLinks"], "allow_override"=>["None"]}
-{"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT"]}
+{"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT", "set X-FORWARDED-PROTO \"%{REQUEST_SCHEME}\""]}
-{"path"=>"/pulp/api/v3", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-api.sock|http://pulpcore-api/pulp/api/v3", "params"=>{"timeout"=>"600"}}], "request_headers"
|
Puppet / 7 (Ruby 2.7):
spec/classes/pulpcore_spec.rb#L80
pulpcore on almalinux-9-x86_64 default params configures apache
Failure/Error:
is_expected.to contain_apache__vhost('pulpcore')
.with_serveraliases([])
.with_directories([
{
'provider' => 'Directory',
'path' => '/var/lib/pulp/pulpcore_static',
'options' => ['-Indexes', '-FollowSymLinks'],
'allow_override' => ['None'],
},
{
expected that the catalogue would contain Apache::Vhost[pulpcore] with directories set to [{"provider"=>"Directory", "path"=>"/var/lib/pulp/pulpcore_static", "options"=>["-Indexes", "-FollowSymLinks"], "allow_override"=>["None"]}, {"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT"]}] but it is set to [{"provider"=>"Directory", "path"=>"/var/lib/pulp/pulpcore_static", "options"=>["-Indexes", "-FollowSymLinks"], "allow_override"=>["None"]}, {"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT", "set X-FORWARDED-PROTO \"%{REQUEST_SCHEME}\""]}]
Diff:
@@ -1,3 +1,3 @@
{"provider"=>"Directory", "path"=>"/var/lib/pulp/pulpcore_static", "options"=>["-Indexes", "-FollowSymLinks"], "allow_override"=>["None"]}
-{"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT"]}
+{"path"=>"/pulp/content", "provider"=>"location", "proxy_pass"=>[{"url"=>"unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content", "params"=>{"timeout"=>"600", "disablereuse"=>"on"}}], "request_headers"=>["unset X-CLIENT-CERT", "set X-CLIENT-CERT \"%{SSL_CLIENT_CERT}s\" env=SSL_CLIENT_CERT", "set X-FORWARDED-PROTO \"%{REQUEST_SCHEME}\""]}
|
Puppet / 7 (Ruby 2.7):
spec/classes/pulpcore_spec.rb#L326
pulpcore on almalinux-9-x86_64 with external vhosts is expected to contain Apache::Vhost::Fragment[pulpcore-http-pulpcore] with vhost => "foreman", priority => "10" and content supplied string
Failure/Error:
is_expected.to contain_apache__vhost__fragment('pulpcore-http-pulpcore')
.with_vhost('foreman')
.with_priority('10')
.with_content(
<<CONTENT
<Location "/pulp/content">
RequestHeader unset X-CLIENT-CERT
RequestHeader set X-CLIENT-CERT "%{SSL_CLIENT_CERT}s" env=SSL_CLIENT_CERT
ProxyPass unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content disablereuse=on timeout=600
expected that the catalogue would contain Apache::Vhost::Fragment[pulpcore-http-pulpcore] with content set to supplied string
Diff:
@@ -2,6 +2,7 @@
<Location "/pulp/content">
RequestHeader unset X-CLIENT-CERT
RequestHeader set X-CLIENT-CERT "%{SSL_CLIENT_CERT}s" env=SSL_CLIENT_CERT
+ RequestHeader set X-FORWARDED-PROTO "%{REQUEST_SCHEME}"
ProxyPass unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content disablereuse=on timeout=600
ProxyPassReverse unix:///run/pulpcore-content.sock|http://pulpcore-content/pulp/content
</Location>
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp 3.63:
vendor/bundle/ruby/3.2.0/gems/voxpupuli-acceptance-3.4.0/lib/voxpupuli/acceptance/examples.rb#L4
basic installation behaves like an idempotent resource applies with no errors
Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}"
Beaker::Host::CommandFailure:
Host 'almalinux9-64-puppet8.example.com' exited with 6 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_151402635.rt7ev3.pp
Last 10 lines of output were:
Feb 19 15:14:50 almalinux9-64-puppet8.example.com httpd[3162]: AH00526: Syntax error on line 25 of /etc/httpd/conf.d/10-pulpcore-https.conf:
Feb 19 15:14:50 almalinux9-64-puppet8.example.com httpd[3162]: Unrecognized header format %
Feb 19 15:14:50 almalinux9-64-puppet8.example.com systemd[1]: httpd.service: Main process exited, code=exited, status=1/FAILURE
Feb 19 15:14:50 almalinux9-64-puppet8.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:14:50 almalinux9-64-puppet8.example.com systemd[1]: Failed to start The Apache HTTP Server.
�[mNotice: /Stage[main]/Apache::Service/Service[httpd]: Triggered 'refresh' from 1 event
Info: Class[Apache::Service]: Unscheduling all events on Class[Apache::Service]
Info: Stage[main]: Unscheduling all events on Stage[main]
�[mNotice: Applied catalog in 44.64 seconds
Shared Example Group: "an idempotent resource" called from ./spec/acceptance/basic_spec.rb:4
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp 3.63:
vendor/bundle/ruby/3.2.0/gems/voxpupuli-acceptance-3.4.0/lib/voxpupuli/acceptance/examples.rb#L8
basic installation behaves like an idempotent resource applies a second time without changes
Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}"
Beaker::Host::CommandFailure:
Host 'almalinux9-64-puppet8.example.com' exited with 4 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_151450875.1knrOO.pp
Last 10 lines of output were:
Feb 19 15:14:50 almalinux9-64-puppet8.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:14:50 almalinux9-64-puppet8.example.com systemd[1]: Failed to start The Apache HTTP Server.
Feb 19 15:14:57 almalinux9-64-puppet8.example.com systemd[1]: Starting The Apache HTTP Server...
Feb 19 15:14:57 almalinux9-64-puppet8.example.com httpd[3411]: AH00526: Syntax error on line 25 of /etc/httpd/conf.d/10-pulpcore-https.conf:
Feb 19 15:14:57 almalinux9-64-puppet8.example.com httpd[3411]: Unrecognized header format %
Feb 19 15:14:57 almalinux9-64-puppet8.example.com systemd[1]: httpd.service: Main process exited, code=exited, status=1/FAILURE
Feb 19 15:14:57 almalinux9-64-puppet8.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:14:57 almalinux9-64-puppet8.example.com systemd[1]: Failed to start The Apache HTTP Server.
�[mNotice: Applied catalog in 4.05 seconds
Shared Example Group: "an idempotent resource" called from ./spec/acceptance/basic_spec.rb:4
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp 3.63:
spec/support/acceptance/examples.rb#L15
basic installation Service "httpd" is expected to be enabled
Failure/Error: it { is_expected.to be_enabled }
expected Service "httpd" to be enabled
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp 3.63:
spec/support/acceptance/examples.rb#L16
basic installation Service "httpd" is expected to be running
Failure/Error: it { is_expected.to be_running }
expected Service "httpd" to be running
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp 3.63:
spec/support/acceptance/examples.rb#L40
basic installation Port "80" is expected to be listening
Failure/Error: it { is_expected.to be_listening }
expected Port "80" to be listening
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp 3.63:
spec/support/acceptance/examples.rb#L44
basic installation Port "443" is expected to be listening
Failure/Error: it { is_expected.to be_listening }
expected Port "443" to be listening
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp 3.63:
spec/support/acceptance/examples.rb#L48
basic installation Curl command "https://almalinux9-64-puppet8.example.com/pulp/api/v3/status/" response_code is expected to eq 200
Failure/Error: its(:response_code) { is_expected.to eq(200) }
expected: 200
got: 0
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp 3.63:
spec/support/acceptance/examples.rb#L49
basic installation Curl command "https://almalinux9-64-puppet8.example.com/pulp/api/v3/status/" exit_status is expected to eq 0
Failure/Error: its(:exit_status) { is_expected.to eq 0 }
expected: 0
got: 7
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp 3.63:
spec/support/acceptance/examples.rb#L58
basic installation Curl command "https://almalinux9-64-puppet8.example.com/pulp/api/v3/" response_code is expected to eq 200
Failure/Error: its(:response_code) { is_expected.to eq(200) }
expected: 200
got: 0
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp 3.63:
spec/support/acceptance/examples.rb#L59
basic installation Curl command "https://almalinux9-64-puppet8.example.com/pulp/api/v3/" exit_status is expected to eq 0
Failure/Error: its(:exit_status) { is_expected.to eq 0 }
expected: 0
got: 7
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp 3.63:
vendor/bundle/ruby/3.2.0/gems/voxpupuli-acceptance-3.4.0/lib/voxpupuli/acceptance/examples.rb#L4
basic installation behaves like an idempotent resource applies with no errors
Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}"
Beaker::Host::CommandFailure:
Host 'almalinux9-64-puppet7.example.com' exited with 6 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_151406265.KoN2WA.pp
Last 10 lines of output were:
Feb 19 15:14:55 almalinux9-64-puppet7.example.com httpd[3163]: AH00526: Syntax error on line 25 of /etc/httpd/conf.d/10-pulpcore-https.conf:
Feb 19 15:14:55 almalinux9-64-puppet7.example.com httpd[3163]: Unrecognized header format %
Feb 19 15:14:55 almalinux9-64-puppet7.example.com systemd[1]: httpd.service: Main process exited, code=exited, status=1/FAILURE
Feb 19 15:14:55 almalinux9-64-puppet7.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:14:55 almalinux9-64-puppet7.example.com systemd[1]: Failed to start The Apache HTTP Server.
�[mNotice: /Stage[main]/Apache::Service/Service[httpd]: Triggered 'refresh' from 1 event
Info: Class[Apache::Service]: Unscheduling all events on Class[Apache::Service]
Info: Stage[main]: Unscheduling all events on Stage[main]
�[mNotice: Applied catalog in 46.34 seconds
Shared Example Group: "an idempotent resource" called from ./spec/acceptance/basic_spec.rb:4
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp 3.63:
vendor/bundle/ruby/3.2.0/gems/voxpupuli-acceptance-3.4.0/lib/voxpupuli/acceptance/examples.rb#L8
basic installation behaves like an idempotent resource applies a second time without changes
Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}"
Beaker::Host::CommandFailure:
Host 'almalinux9-64-puppet7.example.com' exited with 4 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_151456278.HlJxp7.pp
Last 10 lines of output were:
Feb 19 15:14:55 almalinux9-64-puppet7.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:14:55 almalinux9-64-puppet7.example.com systemd[1]: Failed to start The Apache HTTP Server.
Feb 19 15:15:03 almalinux9-64-puppet7.example.com systemd[1]: Starting The Apache HTTP Server...
Feb 19 15:15:03 almalinux9-64-puppet7.example.com httpd[3413]: AH00526: Syntax error on line 25 of /etc/httpd/conf.d/10-pulpcore-https.conf:
Feb 19 15:15:03 almalinux9-64-puppet7.example.com httpd[3413]: Unrecognized header format %
Feb 19 15:15:03 almalinux9-64-puppet7.example.com systemd[1]: httpd.service: Main process exited, code=exited, status=1/FAILURE
Feb 19 15:15:03 almalinux9-64-puppet7.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:15:03 almalinux9-64-puppet7.example.com systemd[1]: Failed to start The Apache HTTP Server.
�[mNotice: Applied catalog in 4.21 seconds
Shared Example Group: "an idempotent resource" called from ./spec/acceptance/basic_spec.rb:4
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp 3.63:
spec/support/acceptance/examples.rb#L15
basic installation Service "httpd" is expected to be enabled
Failure/Error: it { is_expected.to be_enabled }
expected Service "httpd" to be enabled
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp 3.63:
spec/support/acceptance/examples.rb#L16
basic installation Service "httpd" is expected to be running
Failure/Error: it { is_expected.to be_running }
expected Service "httpd" to be running
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp 3.63:
spec/support/acceptance/examples.rb#L40
basic installation Port "80" is expected to be listening
Failure/Error: it { is_expected.to be_listening }
expected Port "80" to be listening
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp 3.63:
spec/support/acceptance/examples.rb#L44
basic installation Port "443" is expected to be listening
Failure/Error: it { is_expected.to be_listening }
expected Port "443" to be listening
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp 3.63:
spec/support/acceptance/examples.rb#L48
basic installation Curl command "https://almalinux9-64-puppet7.example.com/pulp/api/v3/status/" response_code is expected to eq 200
Failure/Error: its(:response_code) { is_expected.to eq(200) }
expected: 200
got: 0
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp 3.63:
spec/support/acceptance/examples.rb#L49
basic installation Curl command "https://almalinux9-64-puppet7.example.com/pulp/api/v3/status/" exit_status is expected to eq 0
Failure/Error: its(:exit_status) { is_expected.to eq 0 }
expected: 0
got: 7
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp 3.63:
spec/support/acceptance/examples.rb#L58
basic installation Curl command "https://almalinux9-64-puppet7.example.com/pulp/api/v3/" response_code is expected to eq 200
Failure/Error: its(:response_code) { is_expected.to eq(200) }
expected: 200
got: 0
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp 3.63:
spec/support/acceptance/examples.rb#L59
basic installation Curl command "https://almalinux9-64-puppet7.example.com/pulp/api/v3/" exit_status is expected to eq 0
Failure/Error: its(:exit_status) { is_expected.to eq 0 }
expected: 0
got: 7
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - CentOS 9 - Pulp 3.63:
vendor/bundle/ruby/3.2.0/gems/voxpupuli-acceptance-3.4.0/lib/voxpupuli/acceptance/examples.rb#L4
basic installation behaves like an idempotent resource applies with no errors
Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}"
Beaker::Host::CommandFailure:
Host 'centos9-64-puppet7.example.com' exited with 6 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_151418961.iHx5XH.pp
Last 10 lines of output were:
Feb 19 15:15:17 centos9-64-puppet7.example.com httpd[2664]: AH00526: Syntax error on line 25 of /etc/httpd/conf.d/10-pulpcore-https.conf:
Feb 19 15:15:17 centos9-64-puppet7.example.com httpd[2664]: Unrecognized header format %
Feb 19 15:15:17 centos9-64-puppet7.example.com systemd[1]: httpd.service: Main process exited, code=exited, status=1/FAILURE
Feb 19 15:15:17 centos9-64-puppet7.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:15:17 centos9-64-puppet7.example.com systemd[1]: Failed to start The Apache HTTP Server.
�[mNotice: /Stage[main]/Apache::Service/Service[httpd]: Triggered 'refresh' from 1 event
Info: Class[Apache::Service]: Unscheduling all events on Class[Apache::Service]
Info: Stage[main]: Unscheduling all events on Stage[main]
�[mNotice: Applied catalog in 55.95 seconds
Shared Example Group: "an idempotent resource" called from ./spec/acceptance/basic_spec.rb:4
|
Puppet / Puppet 7 - CentOS 9 - Pulp 3.63:
vendor/bundle/ruby/3.2.0/gems/voxpupuli-acceptance-3.4.0/lib/voxpupuli/acceptance/examples.rb#L8
basic installation behaves like an idempotent resource applies a second time without changes
Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}"
Beaker::Host::CommandFailure:
Host 'centos9-64-puppet7.example.com' exited with 4 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_151518468.LqKXUc.pp
Last 10 lines of output were:
Feb 19 15:15:17 centos9-64-puppet7.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:15:17 centos9-64-puppet7.example.com systemd[1]: Failed to start The Apache HTTP Server.
Feb 19 15:15:25 centos9-64-puppet7.example.com systemd[1]: Starting The Apache HTTP Server...
Feb 19 15:15:25 centos9-64-puppet7.example.com httpd[2888]: AH00526: Syntax error on line 25 of /etc/httpd/conf.d/10-pulpcore-https.conf:
Feb 19 15:15:25 centos9-64-puppet7.example.com httpd[2888]: Unrecognized header format %
Feb 19 15:15:25 centos9-64-puppet7.example.com systemd[1]: httpd.service: Main process exited, code=exited, status=1/FAILURE
Feb 19 15:15:25 centos9-64-puppet7.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:15:25 centos9-64-puppet7.example.com systemd[1]: Failed to start The Apache HTTP Server.
�[mNotice: Applied catalog in 4.05 seconds
Shared Example Group: "an idempotent resource" called from ./spec/acceptance/basic_spec.rb:4
|
Puppet / Puppet 7 - CentOS 9 - Pulp 3.63:
spec/support/acceptance/examples.rb#L15
basic installation Service "httpd" is expected to be enabled
Failure/Error: it { is_expected.to be_enabled }
expected Service "httpd" to be enabled
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - CentOS 9 - Pulp 3.63:
spec/support/acceptance/examples.rb#L16
basic installation Service "httpd" is expected to be running
Failure/Error: it { is_expected.to be_running }
expected Service "httpd" to be running
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - CentOS 9 - Pulp 3.63:
spec/support/acceptance/examples.rb#L40
basic installation Port "80" is expected to be listening
Failure/Error: it { is_expected.to be_listening }
expected Port "80" to be listening
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - CentOS 9 - Pulp 3.63:
spec/support/acceptance/examples.rb#L44
basic installation Port "443" is expected to be listening
Failure/Error: it { is_expected.to be_listening }
expected Port "443" to be listening
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - CentOS 9 - Pulp 3.63:
spec/support/acceptance/examples.rb#L48
basic installation Curl command "https://centos9-64-puppet7.example.com/pulp/api/v3/status/" response_code is expected to eq 200
Failure/Error: its(:response_code) { is_expected.to eq(200) }
expected: 200
got: 0
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - CentOS 9 - Pulp 3.63:
spec/support/acceptance/examples.rb#L49
basic installation Curl command "https://centos9-64-puppet7.example.com/pulp/api/v3/status/" exit_status is expected to eq 0
Failure/Error: its(:exit_status) { is_expected.to eq 0 }
expected: 0
got: 7
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - CentOS 9 - Pulp 3.63:
spec/support/acceptance/examples.rb#L58
basic installation Curl command "https://centos9-64-puppet7.example.com/pulp/api/v3/" response_code is expected to eq 200
Failure/Error: its(:response_code) { is_expected.to eq(200) }
expected: 200
got: 0
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - CentOS 9 - Pulp 3.63:
spec/support/acceptance/examples.rb#L59
basic installation Curl command "https://centos9-64-puppet7.example.com/pulp/api/v3/" exit_status is expected to eq 0
Failure/Error: its(:exit_status) { is_expected.to eq 0 }
expected: 0
got: 7
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp nightly:
vendor/bundle/ruby/3.2.0/gems/voxpupuli-acceptance-3.4.0/lib/voxpupuli/acceptance/examples.rb#L4
basic installation behaves like an idempotent resource applies with no errors
Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}"
Beaker::Host::CommandFailure:
Host 'almalinux9-64-puppet8.example.com' exited with 6 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_151405982.jp0kQk.pp
Last 10 lines of output were:
Feb 19 15:14:54 almalinux9-64-puppet8.example.com httpd[3036]: AH00526: Syntax error on line 25 of /etc/httpd/conf.d/10-pulpcore-https.conf:
Feb 19 15:14:54 almalinux9-64-puppet8.example.com httpd[3036]: Unrecognized header format %
Feb 19 15:14:54 almalinux9-64-puppet8.example.com systemd[1]: httpd.service: Main process exited, code=exited, status=1/FAILURE
Feb 19 15:14:54 almalinux9-64-puppet8.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:14:54 almalinux9-64-puppet8.example.com systemd[1]: Failed to start The Apache HTTP Server.
�[mNotice: /Stage[main]/Apache::Service/Service[httpd]: Triggered 'refresh' from 1 event
Info: Class[Apache::Service]: Unscheduling all events on Class[Apache::Service]
Info: Stage[main]: Unscheduling all events on Stage[main]
�[mNotice: Applied catalog in 45.40 seconds
Shared Example Group: "an idempotent resource" called from ./spec/acceptance/basic_spec.rb:4
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp nightly:
vendor/bundle/ruby/3.2.0/gems/voxpupuli-acceptance-3.4.0/lib/voxpupuli/acceptance/examples.rb#L8
basic installation behaves like an idempotent resource applies a second time without changes
Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}"
Beaker::Host::CommandFailure:
Host 'almalinux9-64-puppet8.example.com' exited with 4 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_151455212.SvHdYS.pp
Last 10 lines of output were:
Feb 19 15:14:54 almalinux9-64-puppet8.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:14:54 almalinux9-64-puppet8.example.com systemd[1]: Failed to start The Apache HTTP Server.
Feb 19 15:15:02 almalinux9-64-puppet8.example.com systemd[1]: Starting The Apache HTTP Server...
Feb 19 15:15:02 almalinux9-64-puppet8.example.com httpd[3288]: AH00526: Syntax error on line 25 of /etc/httpd/conf.d/10-pulpcore-https.conf:
Feb 19 15:15:02 almalinux9-64-puppet8.example.com httpd[3288]: Unrecognized header format %
Feb 19 15:15:02 almalinux9-64-puppet8.example.com systemd[1]: httpd.service: Main process exited, code=exited, status=1/FAILURE
Feb 19 15:15:02 almalinux9-64-puppet8.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:15:02 almalinux9-64-puppet8.example.com systemd[1]: Failed to start The Apache HTTP Server.
�[mNotice: Applied catalog in 4.29 seconds
Shared Example Group: "an idempotent resource" called from ./spec/acceptance/basic_spec.rb:4
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp nightly:
spec/support/acceptance/examples.rb#L15
basic installation Service "httpd" is expected to be enabled
Failure/Error: it { is_expected.to be_enabled }
expected Service "httpd" to be enabled
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp nightly:
spec/support/acceptance/examples.rb#L16
basic installation Service "httpd" is expected to be running
Failure/Error: it { is_expected.to be_running }
expected Service "httpd" to be running
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp nightly:
spec/support/acceptance/examples.rb#L40
basic installation Port "80" is expected to be listening
Failure/Error: it { is_expected.to be_listening }
expected Port "80" to be listening
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp nightly:
spec/support/acceptance/examples.rb#L44
basic installation Port "443" is expected to be listening
Failure/Error: it { is_expected.to be_listening }
expected Port "443" to be listening
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp nightly:
spec/support/acceptance/examples.rb#L48
basic installation Curl command "https://almalinux9-64-puppet8.example.com/pulp/api/v3/status/" response_code is expected to eq 200
Failure/Error: its(:response_code) { is_expected.to eq(200) }
expected: 200
got: 0
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp nightly:
spec/support/acceptance/examples.rb#L49
basic installation Curl command "https://almalinux9-64-puppet8.example.com/pulp/api/v3/status/" exit_status is expected to eq 0
Failure/Error: its(:exit_status) { is_expected.to eq 0 }
expected: 0
got: 7
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp nightly:
spec/support/acceptance/examples.rb#L58
basic installation Curl command "https://almalinux9-64-puppet8.example.com/pulp/api/v3/" response_code is expected to eq 200
Failure/Error: its(:response_code) { is_expected.to eq(200) }
expected: 200
got: 0
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp nightly:
spec/support/acceptance/examples.rb#L59
basic installation Curl command "https://almalinux9-64-puppet8.example.com/pulp/api/v3/" exit_status is expected to eq 0
Failure/Error: its(:exit_status) { is_expected.to eq 0 }
expected: 0
got: 7
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp nightly:
vendor/bundle/ruby/3.2.0/gems/voxpupuli-acceptance-3.4.0/lib/voxpupuli/acceptance/examples.rb#L4
basic installation behaves like an idempotent resource applies with no errors
Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}"
Beaker::Host::CommandFailure:
Host 'almalinux9-64-puppet7.example.com' exited with 6 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_151408399.MP7fx0.pp
Last 10 lines of output were:
Feb 19 15:15:00 almalinux9-64-puppet7.example.com httpd[3034]: AH00526: Syntax error on line 25 of /etc/httpd/conf.d/10-pulpcore-https.conf:
Feb 19 15:15:00 almalinux9-64-puppet7.example.com httpd[3034]: Unrecognized header format %
Feb 19 15:15:00 almalinux9-64-puppet7.example.com systemd[1]: httpd.service: Main process exited, code=exited, status=1/FAILURE
Feb 19 15:15:00 almalinux9-64-puppet7.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:15:00 almalinux9-64-puppet7.example.com systemd[1]: Failed to start The Apache HTTP Server.
�[mNotice: /Stage[main]/Apache::Service/Service[httpd]: Triggered 'refresh' from 1 event
Info: Class[Apache::Service]: Unscheduling all events on Class[Apache::Service]
Info: Stage[main]: Unscheduling all events on Stage[main]
�[mNotice: Applied catalog in 49.05 seconds
Shared Example Group: "an idempotent resource" called from ./spec/acceptance/basic_spec.rb:4
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp nightly:
vendor/bundle/ruby/3.2.0/gems/voxpupuli-acceptance-3.4.0/lib/voxpupuli/acceptance/examples.rb#L8
basic installation behaves like an idempotent resource applies a second time without changes
Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}"
Beaker::Host::CommandFailure:
Host 'almalinux9-64-puppet7.example.com' exited with 4 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_151501129.JhqmG2.pp
Last 10 lines of output were:
Feb 19 15:15:00 almalinux9-64-puppet7.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:15:00 almalinux9-64-puppet7.example.com systemd[1]: Failed to start The Apache HTTP Server.
Feb 19 15:15:08 almalinux9-64-puppet7.example.com systemd[1]: Starting The Apache HTTP Server...
Feb 19 15:15:08 almalinux9-64-puppet7.example.com httpd[3289]: AH00526: Syntax error on line 25 of /etc/httpd/conf.d/10-pulpcore-https.conf:
Feb 19 15:15:08 almalinux9-64-puppet7.example.com httpd[3289]: Unrecognized header format %
Feb 19 15:15:08 almalinux9-64-puppet7.example.com systemd[1]: httpd.service: Main process exited, code=exited, status=1/FAILURE
Feb 19 15:15:08 almalinux9-64-puppet7.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:15:08 almalinux9-64-puppet7.example.com systemd[1]: Failed to start The Apache HTTP Server.
�[mNotice: Applied catalog in 4.39 seconds
Shared Example Group: "an idempotent resource" called from ./spec/acceptance/basic_spec.rb:4
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp nightly:
spec/support/acceptance/examples.rb#L15
basic installation Service "httpd" is expected to be enabled
Failure/Error: it { is_expected.to be_enabled }
expected Service "httpd" to be enabled
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp nightly:
spec/support/acceptance/examples.rb#L16
basic installation Service "httpd" is expected to be running
Failure/Error: it { is_expected.to be_running }
expected Service "httpd" to be running
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp nightly:
spec/support/acceptance/examples.rb#L40
basic installation Port "80" is expected to be listening
Failure/Error: it { is_expected.to be_listening }
expected Port "80" to be listening
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp nightly:
spec/support/acceptance/examples.rb#L44
basic installation Port "443" is expected to be listening
Failure/Error: it { is_expected.to be_listening }
expected Port "443" to be listening
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp nightly:
spec/support/acceptance/examples.rb#L48
basic installation Curl command "https://almalinux9-64-puppet7.example.com/pulp/api/v3/status/" response_code is expected to eq 200
Failure/Error: its(:response_code) { is_expected.to eq(200) }
expected: 200
got: 0
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp nightly:
spec/support/acceptance/examples.rb#L49
basic installation Curl command "https://almalinux9-64-puppet7.example.com/pulp/api/v3/status/" exit_status is expected to eq 0
Failure/Error: its(:exit_status) { is_expected.to eq 0 }
expected: 0
got: 7
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp nightly:
spec/support/acceptance/examples.rb#L58
basic installation Curl command "https://almalinux9-64-puppet7.example.com/pulp/api/v3/" response_code is expected to eq 200
Failure/Error: its(:response_code) { is_expected.to eq(200) }
expected: 200
got: 0
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp nightly:
spec/support/acceptance/examples.rb#L59
basic installation Curl command "https://almalinux9-64-puppet7.example.com/pulp/api/v3/" exit_status is expected to eq 0
Failure/Error: its(:exit_status) { is_expected.to eq 0 }
expected: 0
got: 7
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - CentOS 9 - Pulp 3.63:
vendor/bundle/ruby/3.2.0/gems/voxpupuli-acceptance-3.4.0/lib/voxpupuli/acceptance/examples.rb#L4
basic installation behaves like an idempotent resource applies with no errors
Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}"
Beaker::Host::CommandFailure:
Host 'centos9-64-puppet8.example.com' exited with 6 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_151446144.KBLmhK.pp
Last 10 lines of output were:
Feb 19 15:15:48 centos9-64-puppet8.example.com httpd[2649]: AH00526: Syntax error on line 25 of /etc/httpd/conf.d/10-pulpcore-https.conf:
Feb 19 15:15:48 centos9-64-puppet8.example.com httpd[2649]: Unrecognized header format %
Feb 19 15:15:48 centos9-64-puppet8.example.com systemd[1]: httpd.service: Main process exited, code=exited, status=1/FAILURE
Feb 19 15:15:48 centos9-64-puppet8.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:15:48 centos9-64-puppet8.example.com systemd[1]: Failed to start The Apache HTTP Server.
�[mNotice: /Stage[main]/Apache::Service/Service[httpd]: Triggered 'refresh' from 1 event
Info: Class[Apache::Service]: Unscheduling all events on Class[Apache::Service]
Info: Stage[main]: Unscheduling all events on Stage[main]
�[mNotice: Applied catalog in 59.29 seconds
Shared Example Group: "an idempotent resource" called from ./spec/acceptance/basic_spec.rb:4
|
Puppet / Puppet 8 - CentOS 9 - Pulp 3.63:
vendor/bundle/ruby/3.2.0/gems/voxpupuli-acceptance-3.4.0/lib/voxpupuli/acceptance/examples.rb#L8
basic installation behaves like an idempotent resource applies a second time without changes
Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}"
Beaker::Host::CommandFailure:
Host 'centos9-64-puppet8.example.com' exited with 4 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_151549256.2asriM.pp
Last 10 lines of output were:
Feb 19 15:15:48 centos9-64-puppet8.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:15:48 centos9-64-puppet8.example.com systemd[1]: Failed to start The Apache HTTP Server.
Feb 19 15:15:56 centos9-64-puppet8.example.com systemd[1]: Starting The Apache HTTP Server...
Feb 19 15:15:56 centos9-64-puppet8.example.com httpd[2880]: AH00526: Syntax error on line 25 of /etc/httpd/conf.d/10-pulpcore-https.conf:
Feb 19 15:15:56 centos9-64-puppet8.example.com httpd[2880]: Unrecognized header format %
Feb 19 15:15:56 centos9-64-puppet8.example.com systemd[1]: httpd.service: Main process exited, code=exited, status=1/FAILURE
Feb 19 15:15:56 centos9-64-puppet8.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:15:56 centos9-64-puppet8.example.com systemd[1]: Failed to start The Apache HTTP Server.
�[mNotice: Applied catalog in 4.32 seconds
Shared Example Group: "an idempotent resource" called from ./spec/acceptance/basic_spec.rb:4
|
Puppet / Puppet 8 - CentOS 9 - Pulp 3.63:
spec/support/acceptance/examples.rb#L15
basic installation Service "httpd" is expected to be enabled
Failure/Error: it { is_expected.to be_enabled }
expected Service "httpd" to be enabled
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - CentOS 9 - Pulp 3.63:
spec/support/acceptance/examples.rb#L16
basic installation Service "httpd" is expected to be running
Failure/Error: it { is_expected.to be_running }
expected Service "httpd" to be running
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - CentOS 9 - Pulp 3.63:
spec/support/acceptance/examples.rb#L40
basic installation Port "80" is expected to be listening
Failure/Error: it { is_expected.to be_listening }
expected Port "80" to be listening
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - CentOS 9 - Pulp 3.63:
spec/support/acceptance/examples.rb#L44
basic installation Port "443" is expected to be listening
Failure/Error: it { is_expected.to be_listening }
expected Port "443" to be listening
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - CentOS 9 - Pulp 3.63:
spec/support/acceptance/examples.rb#L48
basic installation Curl command "https://centos9-64-puppet8.example.com/pulp/api/v3/status/" response_code is expected to eq 200
Failure/Error: its(:response_code) { is_expected.to eq(200) }
expected: 200
got: 0
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - CentOS 9 - Pulp 3.63:
spec/support/acceptance/examples.rb#L49
basic installation Curl command "https://centos9-64-puppet8.example.com/pulp/api/v3/status/" exit_status is expected to eq 0
Failure/Error: its(:exit_status) { is_expected.to eq 0 }
expected: 0
got: 7
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - CentOS 9 - Pulp 3.63:
spec/support/acceptance/examples.rb#L58
basic installation Curl command "https://centos9-64-puppet8.example.com/pulp/api/v3/" response_code is expected to eq 200
Failure/Error: its(:response_code) { is_expected.to eq(200) }
expected: 200
got: 0
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - CentOS 9 - Pulp 3.63:
spec/support/acceptance/examples.rb#L59
basic installation Curl command "https://centos9-64-puppet8.example.com/pulp/api/v3/" exit_status is expected to eq 0
Failure/Error: its(:exit_status) { is_expected.to eq 0 }
expected: 0
got: 7
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - CentOS 9 - Pulp nightly:
vendor/bundle/ruby/3.2.0/gems/voxpupuli-acceptance-3.4.0/lib/voxpupuli/acceptance/examples.rb#L4
basic installation behaves like an idempotent resource applies with no errors
Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}"
Beaker::Host::CommandFailure:
Host 'centos9-64-puppet8.example.com' exited with 6 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_151431399.jm2v8O.pp
Last 10 lines of output were:
Feb 19 15:15:35 centos9-64-puppet8.example.com httpd[2412]: AH00526: Syntax error on line 25 of /etc/httpd/conf.d/10-pulpcore-https.conf:
Feb 19 15:15:35 centos9-64-puppet8.example.com httpd[2412]: Unrecognized header format %
Feb 19 15:15:35 centos9-64-puppet8.example.com systemd[1]: httpd.service: Main process exited, code=exited, status=1/FAILURE
Feb 19 15:15:35 centos9-64-puppet8.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:15:35 centos9-64-puppet8.example.com systemd[1]: Failed to start The Apache HTTP Server.
�[mNotice: /Stage[main]/Apache::Service/Service[httpd]: Triggered 'refresh' from 1 event
Info: Class[Apache::Service]: Unscheduling all events on Class[Apache::Service]
Info: Stage[main]: Unscheduling all events on Stage[main]
�[mNotice: Applied catalog in 60.68 seconds
Shared Example Group: "an idempotent resource" called from ./spec/acceptance/basic_spec.rb:4
|
Puppet / Puppet 8 - CentOS 9 - Pulp nightly:
vendor/bundle/ruby/3.2.0/gems/voxpupuli-acceptance-3.4.0/lib/voxpupuli/acceptance/examples.rb#L8
basic installation behaves like an idempotent resource applies a second time without changes
Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}"
Beaker::Host::CommandFailure:
Host 'centos9-64-puppet8.example.com' exited with 4 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_151535669.67YVYr.pp
Last 10 lines of output were:
Feb 19 15:15:35 centos9-64-puppet8.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:15:35 centos9-64-puppet8.example.com systemd[1]: Failed to start The Apache HTTP Server.
Feb 19 15:15:43 centos9-64-puppet8.example.com systemd[1]: Starting The Apache HTTP Server...
Feb 19 15:15:43 centos9-64-puppet8.example.com httpd[2639]: AH00526: Syntax error on line 25 of /etc/httpd/conf.d/10-pulpcore-https.conf:
Feb 19 15:15:43 centos9-64-puppet8.example.com httpd[2639]: Unrecognized header format %
Feb 19 15:15:43 centos9-64-puppet8.example.com systemd[1]: httpd.service: Main process exited, code=exited, status=1/FAILURE
Feb 19 15:15:43 centos9-64-puppet8.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:15:43 centos9-64-puppet8.example.com systemd[1]: Failed to start The Apache HTTP Server.
�[mNotice: Applied catalog in 4.24 seconds
Shared Example Group: "an idempotent resource" called from ./spec/acceptance/basic_spec.rb:4
|
Puppet / Puppet 8 - CentOS 9 - Pulp nightly:
spec/support/acceptance/examples.rb#L15
basic installation Service "httpd" is expected to be enabled
Failure/Error: it { is_expected.to be_enabled }
expected Service "httpd" to be enabled
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - CentOS 9 - Pulp nightly:
spec/support/acceptance/examples.rb#L16
basic installation Service "httpd" is expected to be running
Failure/Error: it { is_expected.to be_running }
expected Service "httpd" to be running
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - CentOS 9 - Pulp nightly:
spec/support/acceptance/examples.rb#L40
basic installation Port "80" is expected to be listening
Failure/Error: it { is_expected.to be_listening }
expected Port "80" to be listening
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - CentOS 9 - Pulp nightly:
spec/support/acceptance/examples.rb#L44
basic installation Port "443" is expected to be listening
Failure/Error: it { is_expected.to be_listening }
expected Port "443" to be listening
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - CentOS 9 - Pulp nightly:
spec/support/acceptance/examples.rb#L48
basic installation Curl command "https://centos9-64-puppet8.example.com/pulp/api/v3/status/" response_code is expected to eq 200
Failure/Error: its(:response_code) { is_expected.to eq(200) }
expected: 200
got: 0
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - CentOS 9 - Pulp nightly:
spec/support/acceptance/examples.rb#L49
basic installation Curl command "https://centos9-64-puppet8.example.com/pulp/api/v3/status/" exit_status is expected to eq 0
Failure/Error: its(:exit_status) { is_expected.to eq 0 }
expected: 0
got: 7
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - CentOS 9 - Pulp nightly:
spec/support/acceptance/examples.rb#L58
basic installation Curl command "https://centos9-64-puppet8.example.com/pulp/api/v3/" response_code is expected to eq 200
Failure/Error: its(:response_code) { is_expected.to eq(200) }
expected: 200
got: 0
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - CentOS 9 - Pulp nightly:
spec/support/acceptance/examples.rb#L59
basic installation Curl command "https://centos9-64-puppet8.example.com/pulp/api/v3/" exit_status is expected to eq 0
Failure/Error: its(:exit_status) { is_expected.to eq 0 }
expected: 0
got: 7
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - CentOS 9 - Pulp nightly:
vendor/bundle/ruby/3.2.0/gems/voxpupuli-acceptance-3.4.0/lib/voxpupuli/acceptance/examples.rb#L4
basic installation behaves like an idempotent resource applies with no errors
Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}"
Beaker::Host::CommandFailure:
Host 'centos9-64-puppet7.example.com' exited with 6 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_151416977.WEDsRf.pp
Last 10 lines of output were:
Feb 19 15:15:26 centos9-64-puppet7.example.com httpd[2550]: AH00526: Syntax error on line 25 of /etc/httpd/conf.d/10-pulpcore-https.conf:
Feb 19 15:15:26 centos9-64-puppet7.example.com httpd[2550]: Unrecognized header format %
Feb 19 15:15:26 centos9-64-puppet7.example.com systemd[1]: httpd.service: Main process exited, code=exited, status=1/FAILURE
Feb 19 15:15:26 centos9-64-puppet7.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:15:26 centos9-64-puppet7.example.com systemd[1]: Failed to start The Apache HTTP Server.
�[mNotice: /Stage[main]/Apache::Service/Service[httpd]: Triggered 'refresh' from 1 event
Info: Class[Apache::Service]: Unscheduling all events on Class[Apache::Service]
Info: Stage[main]: Unscheduling all events on Stage[main]
�[mNotice: Applied catalog in 66.33 seconds
Shared Example Group: "an idempotent resource" called from ./spec/acceptance/basic_spec.rb:4
|
Puppet / Puppet 7 - CentOS 9 - Pulp nightly:
vendor/bundle/ruby/3.2.0/gems/voxpupuli-acceptance-3.4.0/lib/voxpupuli/acceptance/examples.rb#L8
basic installation behaves like an idempotent resource applies a second time without changes
Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}"
Beaker::Host::CommandFailure:
Host 'centos9-64-puppet7.example.com' exited with 4 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_151526947.f0MnS4.pp
Last 10 lines of output were:
Feb 19 15:15:26 centos9-64-puppet7.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:15:26 centos9-64-puppet7.example.com systemd[1]: Failed to start The Apache HTTP Server.
Feb 19 15:15:34 centos9-64-puppet7.example.com systemd[1]: Starting The Apache HTTP Server...
Feb 19 15:15:34 centos9-64-puppet7.example.com httpd[2779]: AH00526: Syntax error on line 25 of /etc/httpd/conf.d/10-pulpcore-https.conf:
Feb 19 15:15:34 centos9-64-puppet7.example.com httpd[2779]: Unrecognized header format %
Feb 19 15:15:34 centos9-64-puppet7.example.com systemd[1]: httpd.service: Main process exited, code=exited, status=1/FAILURE
Feb 19 15:15:34 centos9-64-puppet7.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:15:34 centos9-64-puppet7.example.com systemd[1]: Failed to start The Apache HTTP Server.
�[mNotice: Applied catalog in 4.37 seconds
Shared Example Group: "an idempotent resource" called from ./spec/acceptance/basic_spec.rb:4
|
Puppet / Puppet 7 - CentOS 9 - Pulp nightly:
spec/support/acceptance/examples.rb#L15
basic installation Service "httpd" is expected to be enabled
Failure/Error: it { is_expected.to be_enabled }
expected Service "httpd" to be enabled
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - CentOS 9 - Pulp nightly:
spec/support/acceptance/examples.rb#L16
basic installation Service "httpd" is expected to be running
Failure/Error: it { is_expected.to be_running }
expected Service "httpd" to be running
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - CentOS 9 - Pulp nightly:
spec/support/acceptance/examples.rb#L40
basic installation Port "80" is expected to be listening
Failure/Error: it { is_expected.to be_listening }
expected Port "80" to be listening
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - CentOS 9 - Pulp nightly:
spec/support/acceptance/examples.rb#L44
basic installation Port "443" is expected to be listening
Failure/Error: it { is_expected.to be_listening }
expected Port "443" to be listening
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - CentOS 9 - Pulp nightly:
spec/support/acceptance/examples.rb#L48
basic installation Curl command "https://centos9-64-puppet7.example.com/pulp/api/v3/status/" response_code is expected to eq 200
Failure/Error: its(:response_code) { is_expected.to eq(200) }
expected: 200
got: 0
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - CentOS 9 - Pulp nightly:
spec/support/acceptance/examples.rb#L49
basic installation Curl command "https://centos9-64-puppet7.example.com/pulp/api/v3/status/" exit_status is expected to eq 0
Failure/Error: its(:exit_status) { is_expected.to eq 0 }
expected: 0
got: 7
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - CentOS 9 - Pulp nightly:
spec/support/acceptance/examples.rb#L58
basic installation Curl command "https://centos9-64-puppet7.example.com/pulp/api/v3/" response_code is expected to eq 200
Failure/Error: its(:response_code) { is_expected.to eq(200) }
expected: 200
got: 0
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - CentOS 9 - Pulp nightly:
spec/support/acceptance/examples.rb#L59
basic installation Curl command "https://centos9-64-puppet7.example.com/pulp/api/v3/" exit_status is expected to eq 0
Failure/Error: its(:exit_status) { is_expected.to eq 0 }
expected: 0
got: 7
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - CentOS 9 - Pulp 3.49:
vendor/bundle/ruby/3.2.0/gems/voxpupuli-acceptance-3.4.0/lib/voxpupuli/acceptance/examples.rb#L4
basic installation behaves like an idempotent resource applies with no errors
Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}"
Beaker::Host::CommandFailure:
Host 'centos9-64-puppet7.example.com' exited with 6 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_151416813.1SUWhO.pp
Last 10 lines of output were:
Feb 19 15:15:11 centos9-64-puppet7.example.com httpd[2663]: AH00526: Syntax error on line 25 of /etc/httpd/conf.d/10-pulpcore-https.conf:
Feb 19 15:15:11 centos9-64-puppet7.example.com httpd[2663]: Unrecognized header format %
Feb 19 15:15:11 centos9-64-puppet7.example.com systemd[1]: httpd.service: Main process exited, code=exited, status=1/FAILURE
Feb 19 15:15:11 centos9-64-puppet7.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:15:11 centos9-64-puppet7.example.com systemd[1]: Failed to start The Apache HTTP Server.
�[mNotice: /Stage[main]/Apache::Service/Service[httpd]: Triggered 'refresh' from 1 event
Info: Class[Apache::Service]: Unscheduling all events on Class[Apache::Service]
Info: Stage[main]: Unscheduling all events on Stage[main]
�[mNotice: Applied catalog in 51.69 seconds
Shared Example Group: "an idempotent resource" called from ./spec/acceptance/basic_spec.rb:4
|
Puppet / Puppet 7 - CentOS 9 - Pulp 3.49:
vendor/bundle/ruby/3.2.0/gems/voxpupuli-acceptance-3.4.0/lib/voxpupuli/acceptance/examples.rb#L8
basic installation behaves like an idempotent resource applies a second time without changes
Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}"
Beaker::Host::CommandFailure:
Host 'centos9-64-puppet7.example.com' exited with 4 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_151512093.817Z5j.pp
Last 10 lines of output were:
Feb 19 15:15:11 centos9-64-puppet7.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:15:11 centos9-64-puppet7.example.com systemd[1]: Failed to start The Apache HTTP Server.
Feb 19 15:15:19 centos9-64-puppet7.example.com systemd[1]: Starting The Apache HTTP Server...
Feb 19 15:15:19 centos9-64-puppet7.example.com httpd[2897]: AH00526: Syntax error on line 25 of /etc/httpd/conf.d/10-pulpcore-https.conf:
Feb 19 15:15:19 centos9-64-puppet7.example.com httpd[2897]: Unrecognized header format %
Feb 19 15:15:19 centos9-64-puppet7.example.com systemd[1]: httpd.service: Main process exited, code=exited, status=1/FAILURE
Feb 19 15:15:19 centos9-64-puppet7.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:15:19 centos9-64-puppet7.example.com systemd[1]: Failed to start The Apache HTTP Server.
�[mNotice: Applied catalog in 3.91 seconds
Shared Example Group: "an idempotent resource" called from ./spec/acceptance/basic_spec.rb:4
|
Puppet / Puppet 7 - CentOS 9 - Pulp 3.49:
spec/support/acceptance/examples.rb#L15
basic installation Service "httpd" is expected to be enabled
Failure/Error: it { is_expected.to be_enabled }
expected Service "httpd" to be enabled
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - CentOS 9 - Pulp 3.49:
spec/support/acceptance/examples.rb#L16
basic installation Service "httpd" is expected to be running
Failure/Error: it { is_expected.to be_running }
expected Service "httpd" to be running
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - CentOS 9 - Pulp 3.49:
spec/support/acceptance/examples.rb#L40
basic installation Port "80" is expected to be listening
Failure/Error: it { is_expected.to be_listening }
expected Port "80" to be listening
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - CentOS 9 - Pulp 3.49:
spec/support/acceptance/examples.rb#L44
basic installation Port "443" is expected to be listening
Failure/Error: it { is_expected.to be_listening }
expected Port "443" to be listening
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - CentOS 9 - Pulp 3.49:
spec/support/acceptance/examples.rb#L48
basic installation Curl command "https://centos9-64-puppet7.example.com/pulp/api/v3/status/" response_code is expected to eq 200
Failure/Error: its(:response_code) { is_expected.to eq(200) }
expected: 200
got: 0
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - CentOS 9 - Pulp 3.49:
spec/support/acceptance/examples.rb#L49
basic installation Curl command "https://centos9-64-puppet7.example.com/pulp/api/v3/status/" exit_status is expected to eq 0
Failure/Error: its(:exit_status) { is_expected.to eq 0 }
expected: 0
got: 7
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - CentOS 9 - Pulp 3.49:
spec/support/acceptance/examples.rb#L58
basic installation Curl command "https://centos9-64-puppet7.example.com/pulp/api/v3/" response_code is expected to eq 200
Failure/Error: its(:response_code) { is_expected.to eq(200) }
expected: 200
got: 0
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - CentOS 9 - Pulp 3.49:
spec/support/acceptance/examples.rb#L59
basic installation Curl command "https://centos9-64-puppet7.example.com/pulp/api/v3/" exit_status is expected to eq 0
Failure/Error: its(:exit_status) { is_expected.to eq 0 }
expected: 0
got: 7
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp 3.49:
vendor/bundle/ruby/3.2.0/gems/voxpupuli-acceptance-3.4.0/lib/voxpupuli/acceptance/examples.rb#L4
basic installation behaves like an idempotent resource applies with no errors
Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}"
Beaker::Host::CommandFailure:
Host 'almalinux9-64-puppet7.example.com' exited with 6 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_151409224.XHm4Oe.pp
Last 10 lines of output were:
Feb 19 15:15:01 almalinux9-64-puppet7.example.com httpd[3168]: AH00526: Syntax error on line 25 of /etc/httpd/conf.d/10-pulpcore-https.conf:
Feb 19 15:15:01 almalinux9-64-puppet7.example.com httpd[3168]: Unrecognized header format %
Feb 19 15:15:01 almalinux9-64-puppet7.example.com systemd[1]: httpd.service: Main process exited, code=exited, status=1/FAILURE
Feb 19 15:15:01 almalinux9-64-puppet7.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:15:01 almalinux9-64-puppet7.example.com systemd[1]: Failed to start The Apache HTTP Server.
�[mNotice: /Stage[main]/Apache::Service/Service[httpd]: Triggered 'refresh' from 1 event
Info: Class[Apache::Service]: Unscheduling all events on Class[Apache::Service]
Info: Stage[main]: Unscheduling all events on Stage[main]
�[mNotice: Applied catalog in 49.54 seconds
Shared Example Group: "an idempotent resource" called from ./spec/acceptance/basic_spec.rb:4
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp 3.49:
vendor/bundle/ruby/3.2.0/gems/voxpupuli-acceptance-3.4.0/lib/voxpupuli/acceptance/examples.rb#L8
basic installation behaves like an idempotent resource applies a second time without changes
Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}"
Beaker::Host::CommandFailure:
Host 'almalinux9-64-puppet7.example.com' exited with 4 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_151502504.mUaQWT.pp
Last 10 lines of output were:
Feb 19 15:15:01 almalinux9-64-puppet7.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:15:01 almalinux9-64-puppet7.example.com systemd[1]: Failed to start The Apache HTTP Server.
Feb 19 15:15:09 almalinux9-64-puppet7.example.com systemd[1]: Starting The Apache HTTP Server...
Feb 19 15:15:09 almalinux9-64-puppet7.example.com httpd[3426]: AH00526: Syntax error on line 25 of /etc/httpd/conf.d/10-pulpcore-https.conf:
Feb 19 15:15:09 almalinux9-64-puppet7.example.com httpd[3426]: Unrecognized header format %
Feb 19 15:15:09 almalinux9-64-puppet7.example.com systemd[1]: httpd.service: Main process exited, code=exited, status=1/FAILURE
Feb 19 15:15:09 almalinux9-64-puppet7.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:15:09 almalinux9-64-puppet7.example.com systemd[1]: Failed to start The Apache HTTP Server.
�[mNotice: Applied catalog in 3.88 seconds
Shared Example Group: "an idempotent resource" called from ./spec/acceptance/basic_spec.rb:4
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp 3.49:
spec/support/acceptance/examples.rb#L15
basic installation Service "httpd" is expected to be enabled
Failure/Error: it { is_expected.to be_enabled }
expected Service "httpd" to be enabled
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp 3.49:
spec/support/acceptance/examples.rb#L16
basic installation Service "httpd" is expected to be running
Failure/Error: it { is_expected.to be_running }
expected Service "httpd" to be running
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp 3.49:
spec/support/acceptance/examples.rb#L40
basic installation Port "80" is expected to be listening
Failure/Error: it { is_expected.to be_listening }
expected Port "80" to be listening
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp 3.49:
spec/support/acceptance/examples.rb#L44
basic installation Port "443" is expected to be listening
Failure/Error: it { is_expected.to be_listening }
expected Port "443" to be listening
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp 3.49:
spec/support/acceptance/examples.rb#L48
basic installation Curl command "https://almalinux9-64-puppet7.example.com/pulp/api/v3/status/" response_code is expected to eq 200
Failure/Error: its(:response_code) { is_expected.to eq(200) }
expected: 200
got: 0
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp 3.49:
spec/support/acceptance/examples.rb#L49
basic installation Curl command "https://almalinux9-64-puppet7.example.com/pulp/api/v3/status/" exit_status is expected to eq 0
Failure/Error: its(:exit_status) { is_expected.to eq 0 }
expected: 0
got: 7
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp 3.49:
spec/support/acceptance/examples.rb#L58
basic installation Curl command "https://almalinux9-64-puppet7.example.com/pulp/api/v3/" response_code is expected to eq 200
Failure/Error: its(:response_code) { is_expected.to eq(200) }
expected: 200
got: 0
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp 3.49:
spec/support/acceptance/examples.rb#L59
basic installation Curl command "https://almalinux9-64-puppet7.example.com/pulp/api/v3/" exit_status is expected to eq 0
Failure/Error: its(:exit_status) { is_expected.to eq 0 }
expected: 0
got: 7
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp 3.49:
vendor/bundle/ruby/3.2.0/gems/voxpupuli-acceptance-3.4.0/lib/voxpupuli/acceptance/examples.rb#L4
basic installation behaves like an idempotent resource applies with no errors
Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}"
Beaker::Host::CommandFailure:
Host 'almalinux9-64-puppet8.example.com' exited with 6 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_151413014.VoUr2M.pp
Last 10 lines of output were:
Feb 19 15:15:03 almalinux9-64-puppet8.example.com httpd[3154]: AH00526: Syntax error on line 25 of /etc/httpd/conf.d/10-pulpcore-https.conf:
Feb 19 15:15:03 almalinux9-64-puppet8.example.com httpd[3154]: Unrecognized header format %
Feb 19 15:15:03 almalinux9-64-puppet8.example.com systemd[1]: httpd.service: Main process exited, code=exited, status=1/FAILURE
Feb 19 15:15:03 almalinux9-64-puppet8.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:15:03 almalinux9-64-puppet8.example.com systemd[1]: Failed to start The Apache HTTP Server.
�[mNotice: /Stage[main]/Apache::Service/Service[httpd]: Triggered 'refresh' from 1 event
Info: Class[Apache::Service]: Unscheduling all events on Class[Apache::Service]
Info: Stage[main]: Unscheduling all events on Stage[main]
�[mNotice: Applied catalog in 47.37 seconds
Shared Example Group: "an idempotent resource" called from ./spec/acceptance/basic_spec.rb:4
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp 3.49:
vendor/bundle/ruby/3.2.0/gems/voxpupuli-acceptance-3.4.0/lib/voxpupuli/acceptance/examples.rb#L8
basic installation behaves like an idempotent resource applies a second time without changes
Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}"
Beaker::Host::CommandFailure:
Host 'almalinux9-64-puppet8.example.com' exited with 4 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_151503975.GzqaLz.pp
Last 10 lines of output were:
Feb 19 15:15:03 almalinux9-64-puppet8.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:15:03 almalinux9-64-puppet8.example.com systemd[1]: Failed to start The Apache HTTP Server.
Feb 19 15:15:10 almalinux9-64-puppet8.example.com systemd[1]: Starting The Apache HTTP Server...
Feb 19 15:15:10 almalinux9-64-puppet8.example.com httpd[3406]: AH00526: Syntax error on line 25 of /etc/httpd/conf.d/10-pulpcore-https.conf:
Feb 19 15:15:10 almalinux9-64-puppet8.example.com httpd[3406]: Unrecognized header format %
Feb 19 15:15:10 almalinux9-64-puppet8.example.com systemd[1]: httpd.service: Main process exited, code=exited, status=1/FAILURE
Feb 19 15:15:10 almalinux9-64-puppet8.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:15:10 almalinux9-64-puppet8.example.com systemd[1]: Failed to start The Apache HTTP Server.
�[mNotice: Applied catalog in 3.82 seconds
Shared Example Group: "an idempotent resource" called from ./spec/acceptance/basic_spec.rb:4
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp 3.49:
spec/support/acceptance/examples.rb#L15
basic installation Service "httpd" is expected to be enabled
Failure/Error: it { is_expected.to be_enabled }
expected Service "httpd" to be enabled
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp 3.49:
spec/support/acceptance/examples.rb#L16
basic installation Service "httpd" is expected to be running
Failure/Error: it { is_expected.to be_running }
expected Service "httpd" to be running
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp 3.49:
spec/support/acceptance/examples.rb#L40
basic installation Port "80" is expected to be listening
Failure/Error: it { is_expected.to be_listening }
expected Port "80" to be listening
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp 3.49:
spec/support/acceptance/examples.rb#L44
basic installation Port "443" is expected to be listening
Failure/Error: it { is_expected.to be_listening }
expected Port "443" to be listening
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp 3.49:
spec/support/acceptance/examples.rb#L48
basic installation Curl command "https://almalinux9-64-puppet8.example.com/pulp/api/v3/status/" response_code is expected to eq 200
Failure/Error: its(:response_code) { is_expected.to eq(200) }
expected: 200
got: 0
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp 3.49:
spec/support/acceptance/examples.rb#L49
basic installation Curl command "https://almalinux9-64-puppet8.example.com/pulp/api/v3/status/" exit_status is expected to eq 0
Failure/Error: its(:exit_status) { is_expected.to eq 0 }
expected: 0
got: 7
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp 3.49:
spec/support/acceptance/examples.rb#L58
basic installation Curl command "https://almalinux9-64-puppet8.example.com/pulp/api/v3/" response_code is expected to eq 200
Failure/Error: its(:response_code) { is_expected.to eq(200) }
expected: 200
got: 0
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp 3.49:
spec/support/acceptance/examples.rb#L59
basic installation Curl command "https://almalinux9-64-puppet8.example.com/pulp/api/v3/" exit_status is expected to eq 0
Failure/Error: its(:exit_status) { is_expected.to eq 0 }
expected: 0
got: 7
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - CentOS 9 - Pulp 3.49:
vendor/bundle/ruby/3.2.0/gems/voxpupuli-acceptance-3.4.0/lib/voxpupuli/acceptance/examples.rb#L4
basic installation behaves like an idempotent resource applies with no errors
Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}"
Beaker::Host::CommandFailure:
Host 'centos9-64-puppet8.example.com' exited with 6 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_151417000.2JGKjv.pp
Last 10 lines of output were:
Feb 19 15:15:08 centos9-64-puppet8.example.com httpd[2663]: AH00526: Syntax error on line 25 of /etc/httpd/conf.d/10-pulpcore-https.conf:
Feb 19 15:15:08 centos9-64-puppet8.example.com httpd[2663]: Unrecognized header format %
Feb 19 15:15:08 centos9-64-puppet8.example.com systemd[1]: httpd.service: Main process exited, code=exited, status=1/FAILURE
Feb 19 15:15:08 centos9-64-puppet8.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:15:08 centos9-64-puppet8.example.com systemd[1]: Failed to start The Apache HTTP Server.
�[mNotice: /Stage[main]/Apache::Service/Service[httpd]: Triggered 'refresh' from 1 event
Info: Class[Apache::Service]: Unscheduling all events on Class[Apache::Service]
Info: Stage[main]: Unscheduling all events on Stage[main]
�[mNotice: Applied catalog in 48.65 seconds
Shared Example Group: "an idempotent resource" called from ./spec/acceptance/basic_spec.rb:4
|
Puppet / Puppet 8 - CentOS 9 - Pulp 3.49:
vendor/bundle/ruby/3.2.0/gems/voxpupuli-acceptance-3.4.0/lib/voxpupuli/acceptance/examples.rb#L8
basic installation behaves like an idempotent resource applies a second time without changes
Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}"
Beaker::Host::CommandFailure:
Host 'centos9-64-puppet8.example.com' exited with 4 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_151509215.16VbR7.pp
Last 10 lines of output were:
Feb 19 15:15:08 centos9-64-puppet8.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:15:08 centos9-64-puppet8.example.com systemd[1]: Failed to start The Apache HTTP Server.
Feb 19 15:15:16 centos9-64-puppet8.example.com systemd[1]: Starting The Apache HTTP Server...
Feb 19 15:15:16 centos9-64-puppet8.example.com httpd[2888]: AH00526: Syntax error on line 25 of /etc/httpd/conf.d/10-pulpcore-https.conf:
Feb 19 15:15:16 centos9-64-puppet8.example.com httpd[2888]: Unrecognized header format %
Feb 19 15:15:16 centos9-64-puppet8.example.com systemd[1]: httpd.service: Main process exited, code=exited, status=1/FAILURE
Feb 19 15:15:16 centos9-64-puppet8.example.com systemd[1]: httpd.service: Failed with result 'exit-code'.
Feb 19 15:15:16 centos9-64-puppet8.example.com systemd[1]: Failed to start The Apache HTTP Server.
�[mNotice: Applied catalog in 3.85 seconds
Shared Example Group: "an idempotent resource" called from ./spec/acceptance/basic_spec.rb:4
|
Puppet / Puppet 8 - CentOS 9 - Pulp 3.49:
spec/support/acceptance/examples.rb#L15
basic installation Service "httpd" is expected to be enabled
Failure/Error: it { is_expected.to be_enabled }
expected Service "httpd" to be enabled
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - CentOS 9 - Pulp 3.49:
spec/support/acceptance/examples.rb#L16
basic installation Service "httpd" is expected to be running
Failure/Error: it { is_expected.to be_running }
expected Service "httpd" to be running
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - CentOS 9 - Pulp 3.49:
spec/support/acceptance/examples.rb#L40
basic installation Port "80" is expected to be listening
Failure/Error: it { is_expected.to be_listening }
expected Port "80" to be listening
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - CentOS 9 - Pulp 3.49:
spec/support/acceptance/examples.rb#L44
basic installation Port "443" is expected to be listening
Failure/Error: it { is_expected.to be_listening }
expected Port "443" to be listening
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - CentOS 9 - Pulp 3.49:
spec/support/acceptance/examples.rb#L48
basic installation Curl command "https://centos9-64-puppet8.example.com/pulp/api/v3/status/" response_code is expected to eq 200
Failure/Error: its(:response_code) { is_expected.to eq(200) }
expected: 200
got: 0
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - CentOS 9 - Pulp 3.49:
spec/support/acceptance/examples.rb#L49
basic installation Curl command "https://centos9-64-puppet8.example.com/pulp/api/v3/status/" exit_status is expected to eq 0
Failure/Error: its(:exit_status) { is_expected.to eq 0 }
expected: 0
got: 7
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - CentOS 9 - Pulp 3.49:
spec/support/acceptance/examples.rb#L58
basic installation Curl command "https://centos9-64-puppet8.example.com/pulp/api/v3/" response_code is expected to eq 200
Failure/Error: its(:response_code) { is_expected.to eq(200) }
expected: 200
got: 0
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Puppet 8 - CentOS 9 - Pulp 3.49:
spec/support/acceptance/examples.rb#L59
basic installation Curl command "https://centos9-64-puppet8.example.com/pulp/api/v3/" exit_status is expected to eq 0
Failure/Error: its(:exit_status) { is_expected.to eq 0 }
expected: 0
got: 7
(compared using ==)
Shared Example Group: "the default pulpcore application" called from ./spec/acceptance/basic_spec.rb:12
|
Puppet / Test suite
Process completed with exit code 1.
|
Puppet / Static validations
Cache not found for keys: setup-ruby-bundler-cache-v6-ubuntu-22.04-x64-ruby-3.2.7-wd-/home/runner/work/puppet-pulpcore/puppet-pulpcore-with--without-development:system_tests:release-only--v-1-Gemfile.lock-f84fef6bff8d2a5dc150cb443387acda35630075ded3e3f725141c2dab6a7eb3, setup-ruby-bundler-cache-v6-ubuntu-22.04-x64-ruby-3.2.7-wd-/home/runner/work/puppet-pulpcore/puppet-pulpcore-with--without-development:system_tests:release-only--v-1-Gemfile.lock-
|
Puppet / 7 (Ruby 2.7)
Cache not found for keys: setup-ruby-bundler-cache-v6-ubuntu-22.04-x64-ruby-2.7.8-wd-/home/runner/work/puppet-pulpcore/puppet-pulpcore-with--without-development:system_tests:release-only--v-1-Gemfile.lock-339d07696151f4289127cc74493137b03517f1898173f5eb94d64cc220dce2fd, setup-ruby-bundler-cache-v6-ubuntu-22.04-x64-ruby-2.7.8-wd-/home/runner/work/puppet-pulpcore/puppet-pulpcore-with--without-development:system_tests:release-only--v-1-Gemfile.lock-
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp 3.63
The Ubuntu-20.04 brownout takes place from 2025-02-01. For more details, see https://github.com/actions/runner-images/issues/11101
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp 3.63
Cache not found for keys: setup-ruby-bundler-cache-v6-ubuntu-20.04-x64-ruby-3.2.7-wd-/home/runner/work/puppet-pulpcore/puppet-pulpcore-with--without-development:test:release-only--v-1-Gemfile.lock-45bae18dc57859b7223bd32cf338e255c3e5ea98083c77e961b0086f60a8ea70, setup-ruby-bundler-cache-v6-ubuntu-20.04-x64-ruby-3.2.7-wd-/home/runner/work/puppet-pulpcore/puppet-pulpcore-with--without-development:test:release-only--v-1-Gemfile.lock-
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp 3.63
The Ubuntu-20.04 brownout takes place from 2025-02-01. For more details, see https://github.com/actions/runner-images/issues/11101
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp 3.63
Cache not found for keys: setup-ruby-bundler-cache-v6-ubuntu-20.04-x64-ruby-3.2.7-wd-/home/runner/work/puppet-pulpcore/puppet-pulpcore-with--without-development:test:release-only--v-1-Gemfile.lock-45bae18dc57859b7223bd32cf338e255c3e5ea98083c77e961b0086f60a8ea70, setup-ruby-bundler-cache-v6-ubuntu-20.04-x64-ruby-3.2.7-wd-/home/runner/work/puppet-pulpcore/puppet-pulpcore-with--without-development:test:release-only--v-1-Gemfile.lock-
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp 3.63
Failed to save: Failed to CreateCacheEntry: Received non-retryable error: Failed request: (409) Conflict: cache entry with the same key, version, and scope already exists
|
Puppet / Puppet 7 - CentOS 9 - Pulp 3.63
The Ubuntu-20.04 brownout takes place from 2025-02-01. For more details, see https://github.com/actions/runner-images/issues/11101
|
Puppet / Puppet 7 - CentOS 9 - Pulp 3.63
Cache not found for keys: setup-ruby-bundler-cache-v6-ubuntu-20.04-x64-ruby-3.2.7-wd-/home/runner/work/puppet-pulpcore/puppet-pulpcore-with--without-development:test:release-only--v-1-Gemfile.lock-45bae18dc57859b7223bd32cf338e255c3e5ea98083c77e961b0086f60a8ea70, setup-ruby-bundler-cache-v6-ubuntu-20.04-x64-ruby-3.2.7-wd-/home/runner/work/puppet-pulpcore/puppet-pulpcore-with--without-development:test:release-only--v-1-Gemfile.lock-
|
Puppet / Puppet 7 - CentOS 9 - Pulp 3.63
Failed to save: Failed to CreateCacheEntry: Received non-retryable error: Failed request: (409) Conflict: cache entry with the same key, version, and scope already exists
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp nightly
The Ubuntu-20.04 brownout takes place from 2025-02-01. For more details, see https://github.com/actions/runner-images/issues/11101
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp nightly
Cache not found for keys: setup-ruby-bundler-cache-v6-ubuntu-20.04-x64-ruby-3.2.7-wd-/home/runner/work/puppet-pulpcore/puppet-pulpcore-with--without-development:test:release-only--v-1-Gemfile.lock-45bae18dc57859b7223bd32cf338e255c3e5ea98083c77e961b0086f60a8ea70, setup-ruby-bundler-cache-v6-ubuntu-20.04-x64-ruby-3.2.7-wd-/home/runner/work/puppet-pulpcore/puppet-pulpcore-with--without-development:test:release-only--v-1-Gemfile.lock-
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp nightly
Failed to save: Failed to CreateCacheEntry: Received non-retryable error: Failed request: (409) Conflict: cache entry with the same key, version, and scope already exists
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp nightly
The Ubuntu-20.04 brownout takes place from 2025-02-01. For more details, see https://github.com/actions/runner-images/issues/11101
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp nightly
Cache not found for keys: setup-ruby-bundler-cache-v6-ubuntu-20.04-x64-ruby-3.2.7-wd-/home/runner/work/puppet-pulpcore/puppet-pulpcore-with--without-development:test:release-only--v-1-Gemfile.lock-45bae18dc57859b7223bd32cf338e255c3e5ea98083c77e961b0086f60a8ea70, setup-ruby-bundler-cache-v6-ubuntu-20.04-x64-ruby-3.2.7-wd-/home/runner/work/puppet-pulpcore/puppet-pulpcore-with--without-development:test:release-only--v-1-Gemfile.lock-
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp nightly
Failed to save: Failed to CreateCacheEntry: Received non-retryable error: Failed request: (409) Conflict: cache entry with the same key, version, and scope already exists
|
Puppet / Puppet 8 - CentOS 9 - Pulp 3.63
The Ubuntu-20.04 brownout takes place from 2025-02-01. For more details, see https://github.com/actions/runner-images/issues/11101
|
Puppet / Puppet 8 - CentOS 9 - Pulp 3.63
Cache not found for keys: setup-ruby-bundler-cache-v6-ubuntu-20.04-x64-ruby-3.2.7-wd-/home/runner/work/puppet-pulpcore/puppet-pulpcore-with--without-development:test:release-only--v-1-Gemfile.lock-45bae18dc57859b7223bd32cf338e255c3e5ea98083c77e961b0086f60a8ea70, setup-ruby-bundler-cache-v6-ubuntu-20.04-x64-ruby-3.2.7-wd-/home/runner/work/puppet-pulpcore/puppet-pulpcore-with--without-development:test:release-only--v-1-Gemfile.lock-
|
Puppet / Puppet 8 - CentOS 9 - Pulp 3.63
Failed to save: Failed to CreateCacheEntry: Received non-retryable error: Failed request: (409) Conflict: cache entry with the same key, version, and scope already exists
|
Puppet / Puppet 8 - CentOS 9 - Pulp nightly
The Ubuntu-20.04 brownout takes place from 2025-02-01. For more details, see https://github.com/actions/runner-images/issues/11101
|
Puppet / Puppet 8 - CentOS 9 - Pulp nightly
Cache not found for keys: setup-ruby-bundler-cache-v6-ubuntu-20.04-x64-ruby-3.2.7-wd-/home/runner/work/puppet-pulpcore/puppet-pulpcore-with--without-development:test:release-only--v-1-Gemfile.lock-45bae18dc57859b7223bd32cf338e255c3e5ea98083c77e961b0086f60a8ea70, setup-ruby-bundler-cache-v6-ubuntu-20.04-x64-ruby-3.2.7-wd-/home/runner/work/puppet-pulpcore/puppet-pulpcore-with--without-development:test:release-only--v-1-Gemfile.lock-
|
Puppet / Puppet 8 - CentOS 9 - Pulp nightly
Failed to save: Failed to CreateCacheEntry: Received non-retryable error: Failed request: (409) Conflict: cache entry with the same key, version, and scope already exists
|
Puppet / Puppet 7 - CentOS 9 - Pulp nightly
The Ubuntu-20.04 brownout takes place from 2025-02-01. For more details, see https://github.com/actions/runner-images/issues/11101
|
Puppet / Puppet 7 - CentOS 9 - Pulp nightly
Cache not found for keys: setup-ruby-bundler-cache-v6-ubuntu-20.04-x64-ruby-3.2.7-wd-/home/runner/work/puppet-pulpcore/puppet-pulpcore-with--without-development:test:release-only--v-1-Gemfile.lock-45bae18dc57859b7223bd32cf338e255c3e5ea98083c77e961b0086f60a8ea70, setup-ruby-bundler-cache-v6-ubuntu-20.04-x64-ruby-3.2.7-wd-/home/runner/work/puppet-pulpcore/puppet-pulpcore-with--without-development:test:release-only--v-1-Gemfile.lock-
|
Puppet / Puppet 7 - CentOS 9 - Pulp nightly
Failed to save: Failed to CreateCacheEntry: Received non-retryable error: Failed request: (409) Conflict: cache entry with the same key, version, and scope already exists
|
Puppet / Puppet 7 - CentOS 9 - Pulp 3.49
The Ubuntu-20.04 brownout takes place from 2025-02-01. For more details, see https://github.com/actions/runner-images/issues/11101
|
Puppet / Puppet 7 - CentOS 9 - Pulp 3.49
Cache not found for keys: setup-ruby-bundler-cache-v6-ubuntu-20.04-x64-ruby-3.2.7-wd-/home/runner/work/puppet-pulpcore/puppet-pulpcore-with--without-development:test:release-only--v-1-Gemfile.lock-45bae18dc57859b7223bd32cf338e255c3e5ea98083c77e961b0086f60a8ea70, setup-ruby-bundler-cache-v6-ubuntu-20.04-x64-ruby-3.2.7-wd-/home/runner/work/puppet-pulpcore/puppet-pulpcore-with--without-development:test:release-only--v-1-Gemfile.lock-
|
Puppet / Puppet 7 - CentOS 9 - Pulp 3.49
Failed to save: Failed to CreateCacheEntry: Received non-retryable error: Failed request: (409) Conflict: cache entry with the same key, version, and scope already exists
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp 3.49
The Ubuntu-20.04 brownout takes place from 2025-02-01. For more details, see https://github.com/actions/runner-images/issues/11101
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp 3.49
Cache not found for keys: setup-ruby-bundler-cache-v6-ubuntu-20.04-x64-ruby-3.2.7-wd-/home/runner/work/puppet-pulpcore/puppet-pulpcore-with--without-development:test:release-only--v-1-Gemfile.lock-45bae18dc57859b7223bd32cf338e255c3e5ea98083c77e961b0086f60a8ea70, setup-ruby-bundler-cache-v6-ubuntu-20.04-x64-ruby-3.2.7-wd-/home/runner/work/puppet-pulpcore/puppet-pulpcore-with--without-development:test:release-only--v-1-Gemfile.lock-
|
Puppet / Puppet 7 - AlmaLinux 9 - Pulp 3.49
Failed to save: Failed to CreateCacheEntry: Received non-retryable error: Failed request: (409) Conflict: cache entry with the same key, version, and scope already exists
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp 3.49
The Ubuntu-20.04 brownout takes place from 2025-02-01. For more details, see https://github.com/actions/runner-images/issues/11101
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp 3.49
Cache not found for keys: setup-ruby-bundler-cache-v6-ubuntu-20.04-x64-ruby-3.2.7-wd-/home/runner/work/puppet-pulpcore/puppet-pulpcore-with--without-development:test:release-only--v-1-Gemfile.lock-45bae18dc57859b7223bd32cf338e255c3e5ea98083c77e961b0086f60a8ea70, setup-ruby-bundler-cache-v6-ubuntu-20.04-x64-ruby-3.2.7-wd-/home/runner/work/puppet-pulpcore/puppet-pulpcore-with--without-development:test:release-only--v-1-Gemfile.lock-
|
Puppet / Puppet 8 - AlmaLinux 9 - Pulp 3.49
Failed to save: Failed to CreateCacheEntry: Received non-retryable error: Failed request: (409) Conflict: cache entry with the same key, version, and scope already exists
|
Puppet / Puppet 8 - CentOS 9 - Pulp 3.49
The Ubuntu-20.04 brownout takes place from 2025-02-01. For more details, see https://github.com/actions/runner-images/issues/11101
|
Puppet / Puppet 8 - CentOS 9 - Pulp 3.49
Cache not found for keys: setup-ruby-bundler-cache-v6-ubuntu-20.04-x64-ruby-3.2.7-wd-/home/runner/work/puppet-pulpcore/puppet-pulpcore-with--without-development:test:release-only--v-1-Gemfile.lock-45bae18dc57859b7223bd32cf338e255c3e5ea98083c77e961b0086f60a8ea70, setup-ruby-bundler-cache-v6-ubuntu-20.04-x64-ruby-3.2.7-wd-/home/runner/work/puppet-pulpcore/puppet-pulpcore-with--without-development:test:release-only--v-1-Gemfile.lock-
|
Puppet / Puppet 8 - CentOS 9 - Pulp 3.49
Failed to save: Failed to CreateCacheEntry: Received non-retryable error: Failed request: (409) Conflict: cache entry with the same key, version, and scope already exists
|