Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc fixes #23

Open
wants to merge 1 commit into
base: 3.5
Choose a base branch
from
Open
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
6 changes: 5 additions & 1 deletion user-guide/USER-GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ will result in a single neo4j instance ([dbms.mode=SINGLE](https://neo4j.com/doc
* **memoryLimit**: Memory limit per pod
* **volumeSize**: Disk allocation to core nodes, for example “2Gi”

Whatever you choose for `name`, we will use the *same value* for the `APP_INSTANCE_NAME`
env var for the rest of these instructions.

### Hardware Allocation

In order to ensure that Neo4j is deployable on basic/default GKE clusters, the default values for hardware requests have been made fairly low, and can be found in [schema.yaml](../schema.yaml). The initial request is a fraction of a CPU per node, with 512MB of memory. By default, the CPU upper limit is 8, and memory limit 512GB, which can be adjusted.
Expand All @@ -57,7 +60,8 @@ After installing from GCP Marketplace, your cluster will start with a strong pas
kubectl get secrets $APP_INSTANCE_NAME-neo4j-secrets -o yaml | grep neo4j-password: | sed 's/.*neo4j-password: *//' | base64 --decode
```

This password applies for the base administrative user named “neo4j”.
This password applies for the base administrative user named “neo4j”. Set the `NEO4J_PASSWORD`
environment variable the value that is output here, for the rest of the steps.

### Hostnames

Expand Down