The Konfuzio Chat Installation takes place via HELM Chart on Kubernetes on own servers. Talk to usif you are planning an installation in your Kubernetes cluster.
This documentation describes the installation of Konfuzio Chat via the Open Telekom Cloud (OTC) marketplace.
Installation via the OTC marketplace
Simplified installation is possible via the Open Telekom Cloud Marketplace are possible.
- Create a CCE cluster instance. You can find the official documentation here.
- Make sure that your CCE instance has access to the Internet before deployment.
- Before deployment, make sure that you have an OpenAI API key ready (the OpenAI API is used in the background). You must enter this OpenAI key later during the deployment in the configuration field OPENAI_KEY enter.
- Deploy Konfuzio Chat in the OTC Cloud on your target cluster with the preset configuration.
After installation
Your Konfuzio chat frontend runs in the Kubernetes service "frontend" on port 3030.
To access it from the outside, configure a Kubernetes Ingress resource that maps the Ingress host of your domain to the service "frontend" and port 3030 forwarded.
Ingress - Cloud Container Engine - User Guide
Creating an Nginx Ingress on the Console - Cloud Container Engine - User Guide
Example (simplified):
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: konfuzio-chat-ingress
spec:
rules:
- host: chat.ihre-domain.tld
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: frontend
port:
number: 3030
Fit host, name and, if applicable, TLS configuration according to your environment.


