How to use Aspose.Cells in a dot net application deployed on EKS server with temporary licence/permanent licence

Can you please guide on how to use Aspose.Cells in a dot net application deployed on EKS server with temporary licence or with permanent licence.

We need to convert xlsx files to images or pdfs from a dot net application deployed on EKS cloud

@apoorvBaghel,

Aspose.Cells is a .NET component/library written in managed C#.NET. Using Aspose.Cells in a .NET application deployed on EKS (Elastic Kubernetes Service) is same as you do use with any other .NET library. To use Aspose.Cells .NET on an Amazon EKS (Elastic Kubernetes Service) cluster, you need to package the library within your application’s Docker image and then deploy the image to your EKS cluster. Here’s a breakdown of the process:
e.g.,
1). Package the .NET Library:

  • Include in Project: Add the .NET library from NuGet package or directly reference its DLL within your application’s project.
  • Build the Application: Build your application, ensuring the library is included in the output.
  • Create a Dockerfile: Define a Dockerfile that specifies how to build the Docker image. This includes:
    • Using a base image that supports .NET.
    • Copying your application’s output (including the library) into the image.
    • Specifying the entry point for your application.

2). Deploy to EKS:

Create a Kubernetes Deployment that uses the Docker image you built. This deployment will manage the pods running your application.

  • Expose Service:

Define a Kubernetes Service to expose your application to other parts of your cluster or to external users.

  • Apply Kubernetes Manifests:

Use kubectl apply -f <manifest_file> to deploy your application and related resources.

See the documents for your reference.

Hope, this helps a bit.

Thanks for your response. However second part pf my question was : How to use licence : permanent or temporary one, on my dot net application deployed on EKS.
Can you please guide on above question too?

@apoorvBaghel
Regarding how to apply a license and check if the license is loaded successfully, please refer to the following documents.

@apoorvBaghel
About how to get a temporary license and evaluation version limitations, please refer to the following document.