Skip to content

Commit 4c12d34

Browse files
authored
Helm Chart installs Community Edition by default (#1417) (#1419)
Cherry-picked from #1417
1 parent cba94d2 commit 4c12d34

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

modules/ROOT/pages/kubernetes/configuration.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ Once you change the password in Neo4j, the password stored in _Kubernetes Secret
129129

130130
=== `neo4j.edition` and `neo4j.acceptLicenseAgreement`
131131

132-
By default, the standalone Helm chart installs Neo4j Community Edition.
132+
By default, the Helm chart installs Neo4j Community Edition.
133133
If you want to install Neo4j Enterprise Edition, set the configuration parameters `edition: "enterprise"` and acknowledge license compliance by setting `neo4j.acceptLicenseAgreement` to `"yes"`.
134134

135135
=== `volumes.data`

modules/ROOT/pages/kubernetes/quickstart-cluster/create-value-file.adoc

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ You create a Helm deployment YAML file for each Neo4j cluster member with all th
99
== Important configuration parameters
1010

1111
`neo4j.name`::
12+
Starting from Neo4j 5.0.0, standalone servers and cluster servers have no distinction.
13+
This means a standalone server can be upgraded to a cluster by adding more servers.
1214
All Neo4j cluster servers are linked together by the value of the parameter `neo4j.name`.
1315
When installed via the Neo4j Helm chart, they will join the cluster identified by `neo4j.name`. +
1416
`neo4j.name` is different from the Helm _release name_, which is used to reference a cluster server elsewhere in Kubernetes. +
@@ -55,9 +57,8 @@ You cannot use `neo4j` as the initial password as this is the default password.
5557
====
5658

5759
`neo4j.edition` and `neo4j.acceptLicenseAgreement`::
58-
By default, the Neo4j Helm chart installs Neo4j Enterprise Edition since clusters are not available in Community Edition.
59-
This means that you do not have to explicitly set the configuration parameter `edition:` to `"enterprise"`, as you would do for a standalone server of Neo4j Enterprise Edition.
60-
However, you must acknowledge license compliance by setting `neo4j.acceptLicenseAgreement` to `"yes"`.
60+
By default, the Helm chart installs Neo4j Community Edition.
61+
If you want to install Neo4j Enterprise Edition, set the configuration parameters `edition: "enterprise"` and acknowledge license compliance by setting `neo4j.acceptLicenseAgreement` to `"yes"`.
6162
For more information on how to obtain a valid license for Neo4j Enterprise Edition, see https://neo4j.com/licensing/ or use the form https://neo4j.com/contact-us[Contact Neo4j].
6263

6364
`volumes.data`::
@@ -91,6 +92,7 @@ neo4j:
9192
cpu: "0.5"
9293
memory: "2Gi"
9394
password: "my-password"
95+
edition: "enterprise"
9496
acceptLicenseAgreement: "yes"
9597
9698
volumes:

0 commit comments

Comments
 (0)