Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

Lakevision Kubernetes Deployment

This folder contains example Kubernetes manifests for deploying the Lakevision app (single-container, frontend + backend).

Files

  • deployment.yaml - Includes the Deployment and Service for the app.
  • config-map.yaml - Holds app configuration (env vars).
  • secrets.yaml - Holds secrets (e.g. API keys).

Usage

  1. Edit the manifests to:

    • Set the correct image: in deployment.yaml (your registry path).
    • Adjust any needed environment variables in config-map.yaml.
    • Update secrets in secrets.yaml.
  2. Apply the manifests to your cluster:

    kubectl apply -f secrets.yaml
    kubectl apply -f config-map.yaml
    kubectl apply -f deployment.yaml
  3. Access the app:

Use kubectl get svc to find the service, or expose it with a LoadBalancer/Route/Ingress as needed.