From 5eae26fa6f365ff1303102219b512f05f0113168 Mon Sep 17 00:00:00 2001 From: Deira-SF4418 Date: Tue, 3 Mar 2026 19:03:00 +0530 Subject: [PATCH 1/6] 1013936: Need to include new UG section on how to deploy spreadsheet server to AWS EKS using Docker --- ...eadsheet-server-to-aws-eks-using-docker.md | 125 ++++++++++++++++++ 1 file changed, 125 insertions(+) create mode 100644 Document-Processing/Excel/Spreadsheet/React/Server-Deployment/deploy-spreadsheet-server-to-aws-eks-using-docker.md diff --git a/Document-Processing/Excel/Spreadsheet/React/Server-Deployment/deploy-spreadsheet-server-to-aws-eks-using-docker.md b/Document-Processing/Excel/Spreadsheet/React/Server-Deployment/deploy-spreadsheet-server-to-aws-eks-using-docker.md new file mode 100644 index 000000000..acd320e2b --- /dev/null +++ b/Document-Processing/Excel/Spreadsheet/React/Server-Deployment/deploy-spreadsheet-server-to-aws-eks-using-docker.md @@ -0,0 +1,125 @@ +--- +layout: post +title: How to deploy spreadsheet server to AWS EKS using Docker in React Spreadsheet component | Syncfusion +description: Learn how to deploy the Syncfusion Spreadsheet server Docker image to AWS EKS and connect it to the React Spreadsheet component. +control: How to deploy spreadsheet server to AWS EKS using Docker +platform: document-processing +documentation: ug +domainurl: ##DomainURL## +--- + +# How to deploy spreadsheet server to AWS EKS using Docker in React Spreadsheet component + +## Prerequisites + +* `AWS account` and [`AWS CLI`](https://aws.amazon.com/cli/) installed and configured. +* [`kubectl`](https://kubernetes.io/docs/tasks/tools/) installed and configured. +* Access to an existing EKS cluster, or you can create one via the AWS console or CLI. +* Docker installed if you plan to build and push a custom image. + +**Step 1:** Configure your environment +Ensure `kubectl` is pointing to the EKS cluster and nodes are Ready. Run the following command to authenticate and configure kubectl for your cluster. + +```bash + +aws configure # enter your Access Key, Secret Key, region, and output format (e.g., json) +aws eks update-kubeconfig --region --name +kubectl get nodes # verify that your cluster nodes are ready + +``` + +**Step 2:** Create the Deployment +Create a file named spreadsheet-deployment.yaml defining a deployment for the Syncfusion® container. The container listens on port `8080`: + +```yaml + +apiVersion: apps/v1 +kind: Deployment +metadata: + name: spreadsheet-server + labels: + app: spreadsheet-server +spec: + replicas: 1 # Increase to 2 or more for higher availability + selector: + matchLabels: + app: spreadsheet-server + template: + metadata: + labels: + app: spreadsheet-server + spec: + containers: + - name: spreadsheet-server + image: syncfusion/spreadsheet-server:latest + ports: + - containerPort: 8080 + env: + - name: SYNCFUSION_LICENSE_KEY + value: "YOUR_LICENSE_KEY" + +``` + +N> If you build a custom image, push it to Docker Hub or AWS ECR and update `image:` field accordingly. + +**Step 3:** Expose the Service +Create a s`preadsheet-service.yaml` to define a Service of type `LoadBalancer` that forwards traffic to the container. Customize the external port (5000) as needed; the internal `targetPort` should remain 8080 because the container listens on that port. + +```yaml + +apiVersion: v1 +kind: Service +metadata: + name: spreadsheet-server-service +spec: + selector: + app: spreadsheet-server + type: LoadBalancer + ports: + - protocol: TCP + port: 5000 # External port exposed by the load balancer + targetPort: 8080 # Internal container port + +``` + +**Step 4:** Deploy to EKS +1. Apply the manifests: + +```bash + +kubectl apply -f spreadsheet-deployment.yaml +kubectl apply -f spreadsheet-service.yaml + +``` + +2. Use the kubectl get pods command to monitor pod status. To retrieve the external address, run: + +```bash + +kubectl get svc spreadsheet-server-service + +``` + +3. Retrieve the external address from the Service output. Use `https://` only if the Load Balancer is configured with TLS (use ACM for certificates). + +**Step 5:** Configure the React client + +Start by following the steps provided in this [link](../getting-started.md) to create a simple Document Editor sample in React. This will give you a basic setup of the Document Editor component. Once the Service reports an external address (e.g., a1b2c3d4e5f6-1234567890.us-east-1.elb.amazonaws.com), update the [`openUrl`](https://helpej2.syncfusion.com/react/documentation/api/spreadsheet/#openurl) and [`saveUrl`](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/#saveurl) properties of your React Spreadsheet component: + +```jsx + + + +``` + +N> Use `https://` if your Load Balancer has TLS configured. + +**Step 6:** Scaling and customization +- `Scale replicas:` To handle a higher workload, you can scale your deployment by increasing the replicas count in your `spreadsheet-deployment.yaml` file and then run `kubectl apply -f spreadsheet-deployment.yaml` to apply the changes. Kubernetes will automatically manage the distribution of traffic across the pods. +- `Resource limits:` Define `resources.requests`, and `resources.limits` in the container spec to allocate CPU and memory appropriately. +- `Environment variables:` In addition to SYNCFUSION_LICENSE_KEY, you can set other configuration keys (e.g., culture) using the env: section in the deployment manifest without modifying the docker image. + +For more information on deploying Spreadsheet docker image kindly refer to this [`Blog`](https://www.syncfusion.com/blogs/post/spreadsheet-docker-image-deployment) \ No newline at end of file From f3aed0ea759de511d3212cb4ff5515da2251638f Mon Sep 17 00:00:00 2001 From: Deira-SF4418 Date: Fri, 13 Mar 2026 16:54:32 +0530 Subject: [PATCH 2/6] 1013936: Need to include new UG section on how to deploy spreadsheet server to AWS EKS using Docker --- ...eadsheet-server-to-aws-eks-using-docker.md | 22 ++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/Document-Processing/Excel/Spreadsheet/React/Server-Deployment/deploy-spreadsheet-server-to-aws-eks-using-docker.md b/Document-Processing/Excel/Spreadsheet/React/Server-Deployment/deploy-spreadsheet-server-to-aws-eks-using-docker.md index acd320e2b..005a1a0b0 100644 --- a/Document-Processing/Excel/Spreadsheet/React/Server-Deployment/deploy-spreadsheet-server-to-aws-eks-using-docker.md +++ b/Document-Processing/Excel/Spreadsheet/React/Server-Deployment/deploy-spreadsheet-server-to-aws-eks-using-docker.md @@ -18,12 +18,24 @@ domainurl: ##DomainURL## * Docker installed if you plan to build and push a custom image. **Step 1:** Configure your environment -Ensure `kubectl` is pointing to the EKS cluster and nodes are Ready. Run the following command to authenticate and configure kubectl for your cluster. +* Open a terminal and authenticate to AWS ```bash aws configure # enter your Access Key, Secret Key, region, and output format (e.g., json) + +``` +* Update your kubectl context to point to the EKS cluster: + +```bash + aws eks update-kubeconfig --region --name + +``` +* After updating the [`kubeconfig`](https://kubernetes.io/docs/concepts/configuration/organize-cluster-access-kubeconfig/) with the EKS cluster, you can verify the node’s state. + +```bash + kubectl get nodes # verify that your cluster nodes are ready ``` @@ -83,7 +95,7 @@ spec: ``` **Step 4:** Deploy to EKS -1. Apply the manifests: +* Apply the manifests: ```bash @@ -92,7 +104,7 @@ kubectl apply -f spreadsheet-service.yaml ``` -2. Use the kubectl get pods command to monitor pod status. To retrieve the external address, run: +* Use the kubectl get pods command to monitor pod status. To retrieve the external address, run: ```bash @@ -100,7 +112,7 @@ kubectl get svc spreadsheet-server-service ``` -3. Retrieve the external address from the Service output. Use `https://` only if the Load Balancer is configured with TLS (use ACM for certificates). +* Retrieve the external address from the Service output. Use `https://` only if the Load Balancer is configured with TLS (use ACM for certificates). **Step 5:** Configure the React client @@ -122,4 +134,4 @@ N> Use `https://` if your Load Balancer has TLS configured. - `Resource limits:` Define `resources.requests`, and `resources.limits` in the container spec to allocate CPU and memory appropriately. - `Environment variables:` In addition to SYNCFUSION_LICENSE_KEY, you can set other configuration keys (e.g., culture) using the env: section in the deployment manifest without modifying the docker image. -For more information on deploying Spreadsheet docker image kindly refer to this [`Blog`](https://www.syncfusion.com/blogs/post/spreadsheet-docker-image-deployment) \ No newline at end of file +For more information on deploying Spreadsheet docker image in Amazon EKS kindly refer to this [`Blog`](https://www.syncfusion.com/blogs/post/spreadsheet-server-eks-deployment) \ No newline at end of file From fc2fdf9e0ca9f30ef01bdeee98a119864afa350b Mon Sep 17 00:00:00 2001 From: Deira-SF4418 Date: Fri, 13 Mar 2026 17:56:35 +0530 Subject: [PATCH 3/6] 1013936: Need to include new UG section on how to deploy spreadsheet server to AWS EKS using Docker --- Document-Processing-toc.html | 1 + .../deploy-spreadsheet-server-to-aws-eks-using-docker.md | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Document-Processing-toc.html b/Document-Processing-toc.html index 6faa3969a..d260b5051 100644 --- a/Document-Processing-toc.html +++ b/Document-Processing-toc.html @@ -5423,6 +5423,7 @@ diff --git a/Document-Processing/Excel/Spreadsheet/React/Server-Deployment/deploy-spreadsheet-server-to-aws-eks-using-docker.md b/Document-Processing/Excel/Spreadsheet/React/Server-Deployment/deploy-spreadsheet-server-to-aws-eks-using-docker.md index 005a1a0b0..7cf7bcb47 100644 --- a/Document-Processing/Excel/Spreadsheet/React/Server-Deployment/deploy-spreadsheet-server-to-aws-eks-using-docker.md +++ b/Document-Processing/Excel/Spreadsheet/React/Server-Deployment/deploy-spreadsheet-server-to-aws-eks-using-docker.md @@ -1,6 +1,6 @@ --- layout: post -title: How to deploy spreadsheet server to AWS EKS using Docker in React Spreadsheet component | Syncfusion +title: Deploy spreadsheet server to AWS EKS using Docker in React Spreadsheet component | Syncfusion description: Learn how to deploy the Syncfusion Spreadsheet server Docker image to AWS EKS and connect it to the React Spreadsheet component. control: How to deploy spreadsheet server to AWS EKS using Docker platform: document-processing @@ -75,7 +75,7 @@ spec: N> If you build a custom image, push it to Docker Hub or AWS ECR and update `image:` field accordingly. **Step 3:** Expose the Service -Create a s`preadsheet-service.yaml` to define a Service of type `LoadBalancer` that forwards traffic to the container. Customize the external port (5000) as needed; the internal `targetPort` should remain 8080 because the container listens on that port. +Create a `spreadsheet-service.yaml` to define a Service of type `LoadBalancer` that forwards traffic to the container. Customize the external port (5000) as needed; the internal `targetPort` should remain 8080 because the container listens on that port. ```yaml @@ -116,7 +116,7 @@ kubectl get svc spreadsheet-server-service **Step 5:** Configure the React client -Start by following the steps provided in this [link](../getting-started.md) to create a simple Document Editor sample in React. This will give you a basic setup of the Document Editor component. Once the Service reports an external address (e.g., a1b2c3d4e5f6-1234567890.us-east-1.elb.amazonaws.com), update the [`openUrl`](https://helpej2.syncfusion.com/react/documentation/api/spreadsheet/#openurl) and [`saveUrl`](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/#saveurl) properties of your React Spreadsheet component: +Start by following the steps provided in this [link](../getting-started.md) to create a simple Spreadsheet sample in React. This will give you a basic setup of the Spreadsheet component. Once the Service reports an external address (e.g., a1b2c3d4e5f6-1234567890.us-east-1.elb.amazonaws.com), update the [`openUrl`](https://helpej2.syncfusion.com/react/documentation/api/spreadsheet/#openurl) and [`saveUrl`](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/#saveurl) properties of your React Spreadsheet component: ```jsx From 5fe9b7fadcdba8976b9ff199915f19b976c527aa Mon Sep 17 00:00:00 2001 From: Deira-SF4418 Date: Fri, 13 Mar 2026 18:03:39 +0530 Subject: [PATCH 4/6] 1013936: Need to include new UG section on how to deploy spreadsheet server to AWS EKS using Docker --- .../deploy-spreadsheet-server-to-aws-eks-using-docker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Document-Processing/Excel/Spreadsheet/React/Server-Deployment/deploy-spreadsheet-server-to-aws-eks-using-docker.md b/Document-Processing/Excel/Spreadsheet/React/Server-Deployment/deploy-spreadsheet-server-to-aws-eks-using-docker.md index 7cf7bcb47..f5aaf53f1 100644 --- a/Document-Processing/Excel/Spreadsheet/React/Server-Deployment/deploy-spreadsheet-server-to-aws-eks-using-docker.md +++ b/Document-Processing/Excel/Spreadsheet/React/Server-Deployment/deploy-spreadsheet-server-to-aws-eks-using-docker.md @@ -1,6 +1,6 @@ --- layout: post -title: Deploy spreadsheet server to AWS EKS using Docker in React Spreadsheet component | Syncfusion +title: Deploy Spreadsheet Docker to AWS EKS Cluster | Syncfusion description: Learn how to deploy the Syncfusion Spreadsheet server Docker image to AWS EKS and connect it to the React Spreadsheet component. control: How to deploy spreadsheet server to AWS EKS using Docker platform: document-processing From e8f242a2fdff2e647f906568a73629e05862059c Mon Sep 17 00:00:00 2001 From: Babu <119495690+babu-periyasamy@users.noreply.github.com> Date: Fri, 13 Mar 2026 19:51:57 +0530 Subject: [PATCH 5/6] 1013936: Resolved the front matter error. Updated the title and modified links for the React Spreadsheet documentation. --- .../deploy-spreadsheet-server-to-aws-eks-using-docker.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Document-Processing/Excel/Spreadsheet/React/Server-Deployment/deploy-spreadsheet-server-to-aws-eks-using-docker.md b/Document-Processing/Excel/Spreadsheet/React/Server-Deployment/deploy-spreadsheet-server-to-aws-eks-using-docker.md index f5aaf53f1..f611b5361 100644 --- a/Document-Processing/Excel/Spreadsheet/React/Server-Deployment/deploy-spreadsheet-server-to-aws-eks-using-docker.md +++ b/Document-Processing/Excel/Spreadsheet/React/Server-Deployment/deploy-spreadsheet-server-to-aws-eks-using-docker.md @@ -8,7 +8,7 @@ documentation: ug domainurl: ##DomainURL## --- -# How to deploy spreadsheet server to AWS EKS using Docker in React Spreadsheet component +# How to deploy spreadsheet server to AWS EKS in React Spreadsheet Editor ## Prerequisites @@ -116,7 +116,7 @@ kubectl get svc spreadsheet-server-service **Step 5:** Configure the React client -Start by following the steps provided in this [link](../getting-started.md) to create a simple Spreadsheet sample in React. This will give you a basic setup of the Spreadsheet component. Once the Service reports an external address (e.g., a1b2c3d4e5f6-1234567890.us-east-1.elb.amazonaws.com), update the [`openUrl`](https://helpej2.syncfusion.com/react/documentation/api/spreadsheet/#openurl) and [`saveUrl`](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/#saveurl) properties of your React Spreadsheet component: +Start by following the steps provided in this [link](../getting-started.md) to create a simple Spreadsheet sample in React. This will give you a basic setup of the Spreadsheet component. Once the Service reports an external address (e.g., a1b2c3d4e5f6-1234567890.us-east-1.elb.amazonaws.com), update the [`openUrl`](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/index-default#openurl) and [`saveUrl`](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/index-default#saveurl) properties of your React Spreadsheet component: ```jsx @@ -134,4 +134,4 @@ N> Use `https://` if your Load Balancer has TLS configured. - `Resource limits:` Define `resources.requests`, and `resources.limits` in the container spec to allocate CPU and memory appropriately. - `Environment variables:` In addition to SYNCFUSION_LICENSE_KEY, you can set other configuration keys (e.g., culture) using the env: section in the deployment manifest without modifying the docker image. -For more information on deploying Spreadsheet docker image in Amazon EKS kindly refer to this [`Blog`](https://www.syncfusion.com/blogs/post/spreadsheet-server-eks-deployment) \ No newline at end of file +For more information on deploying Spreadsheet docker image in Amazon EKS kindly refer to this [`Blog`](https://www.syncfusion.com/blogs/post/spreadsheet-server-eks-deployment) From a72c8e23200652d86fc9a4cdcd426cd7fb0e0f45 Mon Sep 17 00:00:00 2001 From: Babu <119495690+babu-periyasamy@users.noreply.github.com> Date: Fri, 13 Mar 2026 20:35:18 +0530 Subject: [PATCH 6/6] 1013936: Revise title for AWS EKS deployment guide Updated the title of the deployment guide for clarity. --- .../deploy-spreadsheet-server-to-aws-eks-using-docker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Document-Processing/Excel/Spreadsheet/React/Server-Deployment/deploy-spreadsheet-server-to-aws-eks-using-docker.md b/Document-Processing/Excel/Spreadsheet/React/Server-Deployment/deploy-spreadsheet-server-to-aws-eks-using-docker.md index f611b5361..d59d68805 100644 --- a/Document-Processing/Excel/Spreadsheet/React/Server-Deployment/deploy-spreadsheet-server-to-aws-eks-using-docker.md +++ b/Document-Processing/Excel/Spreadsheet/React/Server-Deployment/deploy-spreadsheet-server-to-aws-eks-using-docker.md @@ -8,7 +8,7 @@ documentation: ug domainurl: ##DomainURL## --- -# How to deploy spreadsheet server to AWS EKS in React Spreadsheet Editor +# How to deploy spreadsheet server to AWS EKS Cluster ## Prerequisites