How to achieve multi tenancy in Kubernetes?

2/13/2019

I have to deploy an application on cloud which should support multi-tenancy. The application should have authentication of users and display the customized UI on the basis of user. I want to understand how Kubernetes or Kubernetes for GCP supports kubernetes.

I have tried to search of relevant material on internet.

-- abhisekh c
google-kubernetes-engine
kubernetes

1 Answer

2/13/2019

kubernetes is a container orchestration engine that helps you deploy a container/pod, scaling, rolling upgrade, rollback etc.

application authentication and custom UI for different users needs to be handled in the application code. We have implemented similar functionality using angularjs frontend with postgreSQL as backend. The app runs fine in kubernetes cluster.

-- P Ekambaram
Source: StackOverflow