Files

Development Notes

Check that Kubernetes is reachable locally

kubectl get nodes

Install the local Portabase Helm chart

helm install portabase . \
--set project.secret=$(openssl rand -hex 32)

Check the pods

kubectl get pods

Check the services

kubectl get svc

If the service type is ClusterIP, expose it locally using port forwarding:

kubectl port-forward svc/portabase 8887:80