The home path can be used to change the URL through which the Kadeck Teams UI and API are accessible.
In the default configuration, all endpoints are exposed via the host domain (e.g. localhost:80/). The home path parameter can be used to append another section to the address, e.g. localhost:80/kadeckteams/.
All endpoints are affected
Please note that changing the home path configuration will affect all endpoints, including live and readiness probes, health and metric endpoints, Websocket connections, and HTTP/HTTPS endpoints for both the Kadeck Teams interface and the backend API endpoints.
To change the home path to, e.g. "kadeckteams", you need to configure the parameter xeotek_kadeck_home and set its value to "kadeckteams".
Deployment.yaml example:
[...]
env:
- name: xeotek_kadeck_home
value: "kadeckteams"
[...]
Docker command example:
docker run [...] -e xeotek_kadeck_home="kadeckteams" [...]