You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For these examples I'll assume that we the following trusted cluster relationship: main.example.com<-remote.example.com.
Remove Trusted Cluster relationship from both sides
Once established, to fully remove a trust relationship between two clusters, do the following:
Remove the relationship from the remote side: tctl rm tc/main.example.com.
Remove the relationship from the main side: tctl rm rc/remote.example.com.
Remove Trusted Cluster relationship from the main side
Remove the relationship from the main side: tctl rm rc/remote.example.com.
Note: The remote.example.com cluster will continue to try and ping the main cluster, but will not be able to connect. To re-establish the trusted cluster relationship, the trusted cluster has to be create again from the remote side.
Remote Trusted Cluster relationship from the remote side
Remove the relationship from the remote side: tctl rm tc/main.example.com.
The text was updated successfully, but these errors were encountered:
Hi @kontsevoy,
I'am also trying to disable trusted clusters completely, I think there is something missing in your fix. Could you check it? You added like;
execute on "main":
$ tctl rm tc/east
execute on "east":
$ tctl rm tc/main
I think it should be like;
execute on "main":
$ tctl rm rc/east
execute on "east":
$ tctl rm tc/main
@russjones , I applied it like that, but in "main" cluster, I get this warning in proxy log.
WARN cluster "east" is not found web/apiserver.go:1877
I checked that the clusters are seperated (tsh clusters). But "main" proxy is still tring to reach "east".
For these examples I'll assume that we the following trusted cluster relationship:
main.example.com<-remote.example.com
.Remove Trusted Cluster relationship from both sides
Once established, to fully remove a trust relationship between two clusters, do the following:
tctl rm tc/main.example.com
.tctl rm rc/remote.example.com
.Remove Trusted Cluster relationship from the main side
tctl rm rc/remote.example.com
.Note: The
remote.example.com
cluster will continue to try and ping the main cluster, but will not be able to connect. To re-establish the trusted cluster relationship, the trusted cluster has to be create again from the remote side.Remote Trusted Cluster relationship from the remote side
tctl rm tc/main.example.com
.The text was updated successfully, but these errors were encountered: