Skip to content

Commit f480970

Browse files
authored
Change the node-volume-size to 20 for k8s deployments on AWS (#3202) (#3204)
1 parent 22220f4 commit f480970

2 files changed

Lines changed: 14 additions & 2 deletions

File tree

modules/ROOT/pages/kubernetes/quickstart-cluster/prerequisites.adoc

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,13 @@ ssh-keygen -t rsa -C "your-name@example.com"
9494
+
9595
[source, shell]
9696
----
97-
eksctl create cluster --name "my-neo4j-eks-cluster" --region "${AWS_DEFAULT_REGION}" --nodegroup-name "neo4j-nodes" --nodes-min 1 --nodes-max 4 --node-type c4.xlarge --nodes 4 --node-volume-size 10 --ssh-access --with-oidc
97+
eksctl create cluster --name "my-neo4j-eks-cluster" \
98+
--region "${AWS_DEFAULT_REGION}" \
99+
--nodegroup-name "neo4j-nodes" \
100+
--nodes-min 1 --nodes-max 4 \
101+
--node-type c4.xlarge --nodes 4 \
102+
--node-volume-size 20 \
103+
--ssh-access --with-oidc
98104
----
99105
. Create an IAM role (e.g., `AmazonEKS_EBS_CSI_DriverRole`) and attach the required AWS-managed policy to it (e.g., `AmazonEBSCSIDriverPolicy`).
100106
+

modules/ROOT/pages/kubernetes/quickstart-standalone/prerequisites.adoc

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,13 @@ ssh-keygen -t rsa -C "your-name@example.com"
9292
+
9393
[source, shell]
9494
----
95-
eksctl create cluster --name "my-neo4j-eks-cluster" --region "${AWS_DEFAULT_REGION}" --nodegroup-name "neo4j-nodes" --nodes-min 1 --nodes-max 2 --node-type c4.xlarge --nodes 1 --node-volume-size 10 --ssh-access --with-oidc
95+
eksctl create cluster --name "my-neo4j-eks-cluster" \
96+
--region "${AWS_DEFAULT_REGION}" \
97+
--nodegroup-name "neo4j-nodes" \
98+
--nodes-min 1 --nodes-max 2 \
99+
--node-type c4.xlarge --nodes 1 \
100+
--node-volume-size 20 \
101+
--ssh-access --with-oidc
96102
----
97103
. Create an IAM role (e.g., `AmazonEKS_EBS_CSI_DriverRole`) and attach the required AWS-managed policy to it (e.g., `AmazonEBSCSIDriverPolicy`).
98104
+

0 commit comments

Comments
 (0)