|
| 1 | +--- |
| 2 | +layout: default |
| 3 | +title: "Component versions in recent OpenVox releases" |
| 4 | +--- |
| 5 | + |
| 6 | +[about_agent]: ./about_agent.html |
| 7 | +[openfact]: /openfact/latest/ |
| 8 | +[openbolt]: /openbolt/latest/ |
| 9 | +[openbolt_apply]: /openbolt/latest/applying_manifest_blocks.html |
| 10 | +[server_install_pre]: /openvox-server/latest/install_pre.html |
| 11 | +[openvoxdb_postgres]: /openvoxdb/latest/configure_postgres.html |
| 12 | + |
| 13 | +{% assign nav_key = page.nav %} |
| 14 | + |
| 15 | +This page lists the versions of each stack component shipped in recent OpenVox |
| 16 | +releases, so you can answer "what's actually in this release?" in one place. |
| 17 | + |
| 18 | +## Why there are several tables |
| 19 | + |
| 20 | +Unlike a single bundled product, OpenVox ships its components on **independent |
| 21 | +version lines**. `openvox-agent`, `openvox-server`, `openvoxdb`, and `openbolt` are |
| 22 | +released separately and do not share a version number (for example, the newest |
| 23 | +agent, server, and database releases all carry different versions, and OpenBolt is |
| 24 | +on its own 5.x line). There is no single "OpenVox platform version" that pins all |
| 25 | +of them at once, so each component is shown in its own table, keyed by that |
| 26 | +component's release. |
| 27 | + |
| 28 | +The bundled-component columns are **generated** from upstream component pins, so |
| 29 | +they don't drift. Columns that aren't bundled or pinned anywhere (Java and |
| 30 | +PostgreSQL) are supported-version requirements maintained by hand; see the note |
| 31 | +under each table. |
| 32 | + |
| 33 | +<!-- markdownlint-disable MD055 MD056 --> |
| 34 | + |
| 35 | +## Agent and runtime components |
| 36 | + |
| 37 | +These ship inside the `openvox-agent` package (see [About openvox-agent][about_agent]). |
| 38 | +The OpenFact column is the **bundled** OpenFact version and links to the |
| 39 | +[OpenFact documentation][openfact], which is the authoritative source for OpenFact |
| 40 | +changes; this page is only a pointer. |
| 41 | + |
| 42 | +| OpenVox release | OpenFact | Ruby | OpenSSL | curl | |
| 43 | +| --- | --- | --- | --- | --- | |
| 44 | +{% for r in site.data.agent_release_contents[nav_key] %}| {{ r.release }} | [{{ r.openfact }}][openfact] | {{ r.ruby }} | {{ r.openssl }} | {{ r.curl }} | |
| 45 | +{% endfor %} |
| 46 | + |
| 47 | +## Server components |
| 48 | + |
| 49 | +These ship with the `openvox-server` package. JRuby is the bundled version, |
| 50 | +resolved from the server's pinned `jruby-utils`/`jruby-deps`. |
| 51 | + |
| 52 | +| OpenVox Server release | JRuby | Java | |
| 53 | +| --- | --- | --- | |
| 54 | +{% for r in site.data.server_release_contents[nav_key] %}| {{ r.release }} | {{ r.jruby }} | 17, 21 | |
| 55 | +{% endfor %} |
| 56 | + |
| 57 | +> **Java is not bundled.** OpenVox Server requires a supported JDK to be installed |
| 58 | +> separately. The Java column shows the currently supported major versions, not a |
| 59 | +> per-release pin; see [Before you install OpenVox Server][server_install_pre]. |
| 60 | +
|
| 61 | +## Data components |
| 62 | + |
| 63 | +OpenVoxDB ships in the `openvoxdb` package on its own release line. The |
| 64 | +`openvoxdb-termini` package (the terminus plugins that let OpenVox Server and |
| 65 | +agents talk to OpenVoxDB) is released in lockstep at the **same version** as |
| 66 | +`openvoxdb`, so it is not listed separately. |
| 67 | + |
| 68 | +| OpenVoxDB release | PostgreSQL | |
| 69 | +| --- | --- | |
| 70 | +{% for r in site.data.openvoxdb_release_contents[nav_key] %}| {{ r.release }} | 11+ (14+ recommended) | |
| 71 | +{% endfor %} |
| 72 | + |
| 73 | +> **PostgreSQL is not bundled.** OpenVoxDB connects to a PostgreSQL server you |
| 74 | +> install separately (the `puppet-openvoxdb` module can install it for you). The |
| 75 | +> PostgreSQL column shows the supported minimum (PostgreSQL 11; version 14 or newer |
| 76 | +> recommended), not a per-release pin; see [Configuring PostgreSQL][openvoxdb_postgres]. |
| 77 | +
|
| 78 | +## OpenBolt |
| 79 | + |
| 80 | +[OpenBolt][openbolt] is the orchestration tool. It is not part of the |
| 81 | +agent/server/data stack above and ships on its own **5.x** release line, bundling |
| 82 | +its own runtime. See the [OpenBolt documentation][openbolt] for OpenBolt's own |
| 83 | +release notes. |
| 84 | + |
| 85 | +OpenBolt is the only OpenVox package that **bundles r10k**. Although r10k is |
| 86 | +typically run on a server to deploy environments from a control repo, it is not |
| 87 | +shipped in `openvox-server` (or `openvox-agent`); on a server you install it |
| 88 | +separately, for example with the `puppet/r10k` module or a `gem install`. |
| 89 | + |
| 90 | +| OpenBolt release | OpenVox | Ruby | OpenSSL | r10k | |
| 91 | +| --- | --- | --- | --- | --- | |
| 92 | +{% for r in site.data.openbolt_release_contents %}| {{ r.release }} | {{ r.openvox }} | {{ r.ruby }} | {{ r.openssl }} | {{ r.r10k }} | |
| 93 | +{% endfor %} |
| 94 | + |
| 95 | +> **The OpenVox column is a requirement, not a pinned version.** OpenBolt bundles |
| 96 | +> OpenVox for [`bolt apply`][openbolt_apply], declared in its gemspec as a range |
| 97 | +> (`~> 8.0`); the exact version is resolved at build time (for example, OpenBolt |
| 98 | +> 5.6.0 bundles OpenVox 8.28.0). For `bolt apply`, OpenBolt compiles the catalog |
| 99 | +> with this bundled OpenVox and installs the `openvox-agent` package on targets via |
| 100 | +> `apply_prep` — so you don't install OpenVox separately to use it. |
| 101 | +
|
| 102 | +<!-- markdownlint-enable MD055 MD056 --> |
| 103 | + |
| 104 | +## Regenerating this page |
| 105 | + |
| 106 | +The agent/runtime, server, OpenVoxDB, and OpenBolt columns are generated from |
| 107 | +upstream release metadata. Regenerate the data with: |
| 108 | + |
| 109 | +```bash |
| 110 | +bundle exec rake references:component_versions |
| 111 | +``` |
| 112 | + |
| 113 | +The agent, server, and OpenVoxDB tables are per-OpenVox-series: each task writes a |
| 114 | +file named for the collection's nav_key, so the page renders its own series via |
| 115 | +`site.data.<table>[page.nav]`. With the 8.x defaults this writes |
| 116 | +`_data/agent_release_contents/openvox_8x.yml`, |
| 117 | +`_data/server_release_contents/openvox_8x.yml`, and |
| 118 | +`_data/openvoxdb_release_contents/openvox_8x.yml`. OpenBolt is independent of the |
| 119 | +OpenVox major and is shared across series in `_data/openbolt_release_contents.yml`. |
| 120 | + |
| 121 | +When a 9.x collection is added, run the per-series tasks again with `SERIES=9.` |
| 122 | +(and an appropriate `MIN_RELEASE`); they write `…/openvox_9x.yml` files, and the |
| 123 | +copied 9.x page reads them automatically through its own `page.nav`. |
0 commit comments