Problem Scenario: OKD cluster is having two cluster-admins: User1 and User2.
If User1 connects to cluster using ssh and performs oc login
and parallely User2 connects to the same cluster with new ssh session and performs oc login
.
Now when User1 checks oc whoami
the result will be User2
(which is desired to have User1
). This will create problems like User1 operations(ex:deployements) to clash with User2.
How can this problem be eliminated so that two users can parallelly use the cluster?
Note: Both User1 and User2 are configured with LDAP, is this creating problem?