Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 19 additions & 9 deletions .README.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,9 @@
</style>
<style type="text/css">code{white-space: pre;}</style>
<style type="text/css">
html { -webkit-text-size-adjust: 100%; }
pre > code.sourceCode { white-space: pre; position: relative; }
pre > code.sourceCode > span { line-height: 1.25; }
pre > code.sourceCode > span { display: inline-block; line-height: 1.25; }
pre > code.sourceCode > span:empty { height: 1.2em; }
.sourceCode { overflow: visible; }
code.sourceCode > span { color: inherit; text-decoration: inherit; }
Expand All @@ -70,7 +71,7 @@
}
@media print {
pre > code.sourceCode { white-space: pre-wrap; }
pre > code.sourceCode > span { display: inline-block; text-indent: -5em; padding-left: 5em; }
pre > code.sourceCode > span { text-indent: -5em; padding-left: 5em; }
}
pre.numberSource code
{ counter-reset: source-line 0; }
Expand Down Expand Up @@ -169,8 +170,8 @@ <h1 class="toc-title">Contents</h1>
id="toc-config-file-redefinition">Config file redefinition</a></li>
<li><a href="#version-change" id="toc-version-change">Version
change</a></li>
<li><a href="#server-tunning" id="toc-server-tunning">Server
tunning</a></li>
<li><a href="#server-tuning" id="toc-server-tuning">Server
tuning</a></li>
<li><a href="#ssl-usage" id="toc-ssl-usage">SSL usage</a></li>
</ul></li>
<li><a href="#example-playbook" id="toc-example-playbook">Example
Expand Down Expand Up @@ -208,6 +209,8 @@ <h2 id="postgresql_password">postgresql_password</h2>
class="sourceCode yaml"><code class="sourceCode yaml"><span id="cb3-1"><a href="#cb3-1" aria-hidden="true" tabindex="-1"></a><span class="fu">postgresql_password</span><span class="kw">: </span><span class="at">!vault </span><span class="ch">|</span></span>
<span id="cb3-2"><a href="#cb3-2" aria-hidden="true" tabindex="-1"></a> $ANSIBLE_VAULT;1.2;AES256;dev</span>
<span id="cb3-3"><a href="#cb3-3" aria-hidden="true" tabindex="-1"></a> ....</span></code></pre></div>
<p>This option is not available for running the role in container
builds.</p>
<h2 id="postgresql_pg_hba_conf">postgresql_pg_hba_conf</h2>
<p>The content of the <code>postgresql_pg_hba_conf</code> variable
replaces the default upstream configuration in the
Expand Down Expand Up @@ -275,13 +278,20 @@ <h2 id="postgresql_input_file">postgresql_input_file</h2>
<code>postgresql_input_file</code> variable:</p>
<div class="sourceCode" id="cb9"><pre
class="sourceCode yaml"><code class="sourceCode yaml"><span id="cb9-1"><a href="#cb9-1" aria-hidden="true" tabindex="-1"></a><span class="fu">postgresql_input_file</span><span class="kw">:</span><span class="at"> </span><span class="st">&quot;/tmp/mypath/file.sql&quot;</span></span></code></pre></div>
<p>This option is not available for running the role in container
builds.</p>
<h2 id="postgresql_server_tuning">postgresql_server_tuning</h2>
<p>By default, the PostgreSQL system role enables server settings
optimization based on system resources. To disabe the tuning, set the
optimization based on system resources. To disable the tuning, set the
<code>postgresql_server_tuning</code> variable to
<code>false</code>.</p>
<div class="sourceCode" id="cb10"><pre
class="sourceCode yaml"><code class="sourceCode yaml"><span id="cb10-1"><a href="#cb10-1" aria-hidden="true" tabindex="-1"></a><span class="fu">postgresql_server_tuning</span><span class="kw">:</span><span class="at"> </span><span class="ch">false</span></span></code></pre></div>
<p>However, when running against a <a
href="https://docs.ansible.com/ansible/latest/collections/containers/podman/buildah_connection.html">buildah
connection</a>, i.e. a container build, this defaults to
<code>false</code>. The available RAM during a container build is
independent of the actual deployment.</p>
<p>See the <a href="examples"><code>examples/</code></a> for
details.</p>
<h1 id="idempotence">Idempotence</h1>
Expand All @@ -290,9 +300,9 @@ <h2 id="password-change">Password change</h2>
<p>Once you set the password by using the
<code>postgresql_password</code> variable, it is impossible to change
the password by setting another value. You must use the
<code>postgresql_password</code> variable for every database acces under
the superuser, including running an SQL script (the functionality of the
<code>postgresql_input_file</code> variable).</p>
<code>postgresql_password</code> variable for every database access
under the superuser, including running an SQL script (the functionality
of the <code>postgresql_input_file</code> variable).</p>
<h2 id="config-file-redefinition">Config file redefinition</h2>
<p>Configuration files generated from
<code>postgresql_pg_hba_conf</code> and <code>postgresql_conf</code> are
Expand All @@ -302,7 +312,7 @@ <h2 id="version-change">Version change</h2>
<p>Once the PostgreSQL server is installed, it is impossible to upgrade
or downgrade the server by increasing or decreasing the version number
in the <code>postgresql_version</code> variable.</p>
<h2 id="server-tunning">Server tunning</h2>
<h2 id="server-tuning">Server tuning</h2>
<p>This option reflects the setup of the latest run of the role.</p>
<h2 id="ssl-usage">SSL usage</h2>
<p>This option reflects the setup of the latest run of the role. The
Expand Down
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,35 @@
Changelog
=========

[1.4.0] - 2025-06-16
--------------------

### New Features

- feat: Support this role in container builds (#125)

### Bug Fixes

- fix: Fixes for Ansible 2.19 (#129)

### Other Changes

- ci: ansible-plugin-scan is disabled for now (#111)
- ci: bump ansible-lint to v25; provide collection requirements for ansible-lint (#114)
- ci: Check spelling with codespell (#115)
- ci: Add test plan that runs CI tests and customize it for each role (#116)
- ci: In test plans, prefix all relate variables with SR_ (#117)
- ci: Fix bug with ARTIFACTS_URL after prefixing with SR_ (#118)
- ci: several changes related to new qemu test, ansible-lint, python versions, ubuntu versions (#119)
- ci: use tox-lsr 3.6.0; improve qemu test logging (#120)
- ci: skip storage scsi, nvme tests in github qemu ci (#121)
- ci: bump sclorg/testing-farm-as-github-action from 3 to 4 (#122)
- ci: bump tox-lsr to 3.8.0; rename qemu/kvm tests (#123)
- ci: Add Fedora 42; use tox-lsr 3.9.0; use lsr-report-errors for qemu tests (#124)
- tests: Add bootc end-to-end validation test (#126)
- ci: Add support for bootc end-to-end validation tests (#127)
- ci: Use ansible 2.19 for fedora 42 testing; support python 3.13 (#128)

[1.3.10] - 2025-01-09
--------------------

Expand Down
Loading