This is the best way to deploy ProdManager
app for production deployment.
- Any Kubernetes cluster
- kubectl binary
Create a dedicated namespace for the application
kubectl create namespace prod-manager
Then deploy the app
kubectl apply \
--namespace prod-manager \
--filename deploy/kubernetes/
If you have an ingress controller, the service should be exposed through it. If not use the builtin kubectl port fowarder :
kubectl port-forward \
--namespace prod-manager \
service/prod-manager-proxy 8080:80
Then access to http://localhost:8080
You can edit the Kubernetes manifests file to best match your needs.