ddreian
ddreian

Reputation: 1856

How can I make 2 services in 2 different kubernetes clusters talk to each other securely in azure?

I have 2 kubernetes clusters in Azure. Let's call them LegacyCluster and NewCluster. NewCluster is provisioned with Terraform. Each has LegacyService and NewService. I need NewService to securely call LegacyService over rest. How can I do this? Is there a feature in either Kubernetes or Azure to make two networks act like one?

Upvotes: 0

Views: 522

Answers (1)

4c74356b41
4c74356b41

Reputation: 72171

you can use virtual network peering and\or site-2-site VPN.

Networks address space have to not overlap

Upvotes: 2

Related Questions