This folder contains example Kubernetes manifests for deploying the Lakevision app (single-container, frontend + backend).
deployment.yaml- Includes theDeploymentandServicefor the app.config-map.yaml- Holds app configuration (env vars).secrets.yaml- Holds secrets (e.g. API keys).
-
Edit the manifests to:
- Set the correct
image:indeployment.yaml(your registry path). - Adjust any needed environment variables in
config-map.yaml. - Update secrets in
secrets.yaml.
- Set the correct
-
Apply the manifests to your cluster:
kubectl apply -f secrets.yaml kubectl apply -f config-map.yaml kubectl apply -f deployment.yaml
-
Access the app:
Use kubectl get svc to find the service, or expose it with a LoadBalancer/Route/Ingress as needed.