Skip to content

Latest commit

 

History

History
52 lines (38 loc) · 1.44 KB

File metadata and controls

52 lines (38 loc) · 1.44 KB

CKEditor Word Services On-Premises Helm chart

Use this Helm chart to provision CKEditor Word Services on your Kubernetes cluster.

Minimum requirements

  • 2 CPU Cores
  • 1024MB RAM
  • Kubernetes 1.19+
  • Helm v3

The default configuration for running this service requires the reservation of 2 CPU cores and 1024MB of RAM in the cluster. For more information about resources usage look here: https://ckeditor.com/docs/cs/latest/onpremises/docx-onpremises/requirements.html

Installation

  • create imagePullSecret for pulling images from the CKEditor container registry, replace xxx with the authentication token
kubectl create secret docker-registry docker-cke-cs-com \
    --docker-username "docx" \
    --docker-server "https://docker.cke-cs.com" \
    --docker-password="xxx"
  • install chart in the cluster

⚠️ By default, the chart installs the CKEditor Word Services On-premises with the "latest" tag. If you are using this chart for a production environment, it is strongly recommended to change the container image tag to a numeric representation of the version you want to install.

helm install ckeditor-docx-converter ./ckeditor-docx-converter \
    --set image.tag="latest" \
    --set server.secret.data.LICENSE_KEY="" \
    --set ingress.hosts[0].host="test.example" \
    --set ingress.enabled=true
  • validate installation by visiting the /demo page.

Deleting

helm delete ckeditor-docx-converter