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
2 changes: 1 addition & 1 deletion docs/hypernode-deploy/applications/config-for-nextjs.md
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
8 changes: 4 additions & 4 deletions docs/hypernode-deploy/getting-started/configure-ci-cd.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
]);
```

Expand Down
8 changes: 4 additions & 4 deletions docs/hypernode-deploy/pipelines/bitbucket-pipelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
```
````

Expand Down
10 changes: 5 additions & 5 deletions docs/hypernode-deploy/pipelines/github-actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
...
```
````
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/hypernode-deploy/pipelines/gitlab-ci.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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**<br/><sub></sub> | True | True, False |
| **new_relic_distributed_tracing_enabled**<br/><sub></sub> | True | True, False |
| **new_relic_enabled**<br/><sub></sub> | False | True, False |
| **nodejs_version**<br/><sub>Change the Node version</sub> | 20 | 6, 10, 16, 18, 20 |
| **nodejs_version**<br/><sub>Change the Node version</sub> | 22 | 6, 10, 16, 18, 20, 22 |
| **opensearch_auto_create_index**<br/><sub></sub> | True | True, False |
| **opensearch_enabled**<br/><sub>Enable OpenSearch</sub> | True | True, False |
| **opensearch_version**<br/><sub>Change the OpenSearch version</sub> | 2.12 | 1.x, 2.6, 2.12 |
Expand Down
Loading