Koreo UI is a lightweight, read-only application that provides a visual representation of your Koreo Workflows and related resources.
Refer to the Koreo documentation for steps on installing Koreo UI.
Version 10.2.0 or higher should be used.
pnpm install
Locally, Koreo UI leverages kubeconfig credentials at ~/.kube/config to
authenticate with a Kubernetes cluster. Ensure that you have authenticated
properly, either with kubectl
or, if using a cloud-managed Kubernetes such as
GKE, with the respective tooling such as gcloud
.
Refer to the Kubernetes documentation for more.
To run the application in development mode:
pnpm dev
To build the application:
pnpm build
To build the Docker image:
docker build -t koreo-ui .
To run the built application:
pnpm start
Ensure pnpm clean
is run on any code that is committed:
pnpm clean