I am planning on deploying my services on digitalocean's managed Kubernetes Service and I'm trying to determine which is the best approach when working with testing and production environments. These are the approaches I'm considering:
prod
and test
to run the 2 environments on the same cluster. Is one of these approaches preferred/recommended or is it very subjectve? Feel free to suggest a completely different approach if the one's I have suggested aren't good!
Thank you for your time, Eliot
always prefer to go with two isolate cluster would be good option. but it will cost you. if you want use one cluster for both environment. you could isolate physical resource but not traffic(Istio would help). you could isolate by using hardcode resource quota to test env. to avoid consume Prod. resource and always use limit to all deployment and use nodeaffinity to limit your test env.