diff --git a/docs/hypernode-deploy/applications/config-for-nextjs.md b/docs/hypernode-deploy/applications/config-for-nextjs.md index 5f276c20..0b96bffb 100644 --- a/docs/hypernode-deploy/applications/config-for-nextjs.md +++ b/docs/hypernode-deploy/applications/config-for-nextjs.md @@ -50,7 +50,7 @@ $configuration->setPlatformConfigurations([ new PlatformConfiguration\HypernodeSettingConfiguration('elasticsearch_enabled', 'False'), new PlatformConfiguration\HypernodeSettingConfiguration('opensearch_enabled', 'False'), new PlatformConfiguration\HypernodeSettingConfiguration('varnish_enabled', 'False'), - new PlatformConfiguration\HypernodeSettingConfiguration('nodejs_version', '20'), + new PlatformConfiguration\HypernodeSettingConfiguration('nodejs_version', '22'), ]); $configuration->addBuildTask('node:install'); diff --git a/docs/hypernode-deploy/getting-started/configure-ci-cd.md b/docs/hypernode-deploy/getting-started/configure-ci-cd.md index 005dd4e0..ba95dc88 100644 --- a/docs/hypernode-deploy/getting-started/configure-ci-cd.md +++ b/docs/hypernode-deploy/getting-started/configure-ci-cd.md @@ -103,8 +103,8 @@ env: jobs: build: runs-on: ubuntu-latest - # Here we use the latest Hypernode Deploy image with PHP 8.3 and Node.js 20 - container: quay.io/hypernode/deploy:latest-php8.3-node20 + # Here we use the latest Hypernode Deploy image with PHP 8.3 and Node.js 22 + container: quay.io/hypernode/deploy:latest-php8.3-node22 steps: - uses: actions/checkout@v2 - uses: actions/cache@v2 @@ -137,8 +137,8 @@ jobs: deploy: needs: build runs-on: ubuntu-latest - # Here we use the latest Hypernode Deploy image with PHP 8.3 and Node.js 20 - container: quay.io/hypernode/deploy:latest-php8.3-node20 + # Here we use the latest Hypernode Deploy image with PHP 8.3 and Node.js 22 + container: quay.io/hypernode/deploy:latest-php8.3-node22 steps: - uses: actions/checkout@v2 - name: download build artifact diff --git a/docs/hypernode-deploy/getting-started/configure-hypernode-settings-on-deployment.md b/docs/hypernode-deploy/getting-started/configure-hypernode-settings-on-deployment.md index 30d45b55..e08a5b87 100644 --- a/docs/hypernode-deploy/getting-started/configure-hypernode-settings-on-deployment.md +++ b/docs/hypernode-deploy/getting-started/configure-hypernode-settings-on-deployment.md @@ -31,7 +31,7 @@ $configuration->setPlatformConfigurations([ new PlatformConfiguration\HypernodeSettingConfiguration('elasticsearch_enabled', 'False'), new PlatformConfiguration\HypernodeSettingConfiguration('opensearch_enabled', 'True'), new PlatformConfiguration\HypernodeSettingConfiguration('varnish_enabled', 'True'), - new PlatformConfiguration\HypernodeSettingConfiguration('nodejs_version', '20'), + new PlatformConfiguration\HypernodeSettingConfiguration('nodejs_version', '22'), ]); ``` diff --git a/docs/hypernode-deploy/pipelines/bitbucket-pipelines.md b/docs/hypernode-deploy/pipelines/bitbucket-pipelines.md index 080a585e..3f650781 100644 --- a/docs/hypernode-deploy/pipelines/bitbucket-pipelines.md +++ b/docs/hypernode-deploy/pipelines/bitbucket-pipelines.md @@ -58,8 +58,8 @@ Create the file `bitbucket-pipelines.yml` with the contents below. This workflow will be used in other workflows. ```yaml -# Here we use the latest Hypernode Deploy image with PHP 8.3 and Node.js 20 -image: quay.io/hypernode/deploy:latest-php8.3-node20 +# Here we use the latest Hypernode Deploy image with PHP 8.3 and Node.js 22 +image: quay.io/hypernode/deploy:latest-php8.3-node22 definition: steps: @@ -73,9 +73,9 @@ definition: ````{note} Don't forget to set the specifications of the image to what your project needs. The same goes for the deploy steps. -For example, if your project needs PHP 8.3 and Node.js 20, set the image to: +For example, if your project needs PHP 8.3 and Node.js 22, set the image to: ```yaml -image: quay.io/hypernode/deploy:latest-php8.3-node20 +image: quay.io/hypernode/deploy:latest-php8.3-node22 ``` ```` diff --git a/docs/hypernode-deploy/pipelines/github-actions.md b/docs/hypernode-deploy/pipelines/github-actions.md index 0815ca34..9ae6897b 100644 --- a/docs/hypernode-deploy/pipelines/github-actions.md +++ b/docs/hypernode-deploy/pipelines/github-actions.md @@ -58,7 +58,7 @@ jobs: build: runs-on: ubuntu-latest # See https://quay.io/repository/hypernode/deploy?tab=tags for all possible tags. - container: quay.io/hypernode/deploy:latest-php8.3-node20 + container: quay.io/hypernode/deploy:latest-php8.3-node22 steps: - uses: actions/checkout@v3 - uses: actions/cache@v3 @@ -79,11 +79,11 @@ jobs: ````{note} Don't forget to set the specifications of the image to what your project needs. The same goes for the deploy steps. -For example, if your project needs PHP 8.3 and Node.js 20, set the image to: +For example, if your project needs PHP 8.3 and Node.js 22, set the image to: ```yaml jobs: build: - container: quay.io/hypernode/deploy:latest-php8.3-node20 + container: quay.io/hypernode/deploy:latest-php8.3-node22 ... ``` ```` @@ -113,7 +113,7 @@ jobs: environment: name: production url: https://www.example.com - container: quay.io/hypernode/deploy:latest-php8.3-node20 + container: quay.io/hypernode/deploy:latest-php8.3-node22 steps: - uses: actions/checkout@v3 - name: download build artifact @@ -157,7 +157,7 @@ jobs: environment: name: acceptance url: https://acceptance.example.com - container: quay.io/hypernode/deploy:latest-php8.3-node20 + container: quay.io/hypernode/deploy:latest-php8.3-node22 steps: - uses: actions/checkout@v3 - name: download build artifact diff --git a/docs/hypernode-deploy/pipelines/gitlab-ci.md b/docs/hypernode-deploy/pipelines/gitlab-ci.md index 4c47aac8..c5a7e75c 100644 --- a/docs/hypernode-deploy/pipelines/gitlab-ci.md +++ b/docs/hypernode-deploy/pipelines/gitlab-ci.md @@ -49,7 +49,7 @@ This sets the container image, defines the CI/CD stages and defines the build st ```yaml # See https://quay.io/repository/hypernode/deploy?tab=tags for all possible tags. -image: quay.io/hypernode/deploy:latest-php8.3-node20 +image: quay.io/hypernode/deploy:latest-php8.3-node22 stages: - build diff --git a/docs/hypernode-platform/tools/how-to-use-the-hypernode-systemctl-cli-tool.md b/docs/hypernode-platform/tools/how-to-use-the-hypernode-systemctl-cli-tool.md index 8a4301b4..e479779c 100644 --- a/docs/hypernode-platform/tools/how-to-use-the-hypernode-systemctl-cli-tool.md +++ b/docs/hypernode-platform/tools/how-to-use-the-hypernode-systemctl-cli-tool.md @@ -46,7 +46,7 @@ To see which values you can set and which values they are allowed to have take a | **new_relic_browser_monitoring_auto_instrument_enabled**
| True | True, False | | **new_relic_distributed_tracing_enabled**
| True | True, False | | **new_relic_enabled**
| False | True, False | -| **nodejs_version**
Change the Node version | 20 | 6, 10, 16, 18, 20 | +| **nodejs_version**
Change the Node version | 22 | 6, 10, 16, 18, 20, 22 | | **opensearch_auto_create_index**
| True | True, False | | **opensearch_enabled**
Enable OpenSearch | True | True, False | | **opensearch_version**
Change the OpenSearch version | 2.12 | 1.x, 2.6, 2.12 |