Skip to content

AKS Cross-Cluster-Replication using Azure Load Balancer #458

Answered by mrvdcsg
mrvdcsg asked this question in Q&A
Discussion options

You must be logged in to vote

This should be resolved using the newer features allowing for definition of remote clusters by proxy rather than seed ip. This isn't fully tested yet but initial tests appear successful.

Seed Example

PUT /_cluster/settings?pretty
{
  "persistent": {
    "cluster": {
      "remote": {
        "master": {
          "seeds": ["10.10.10.10:9300"]
        }
      }
    }
  }
}

Proxy Example

PUT /_cluster/settings?pretty
{
  "persistent": {
    "cluster": {
      "remote": {
        "master": {
          "mode": "proxy",
          "proxy_address": "my_dns_name_for_azureLB.com:9300"
        }
      }
    }
  }

}

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by mrvdcsg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant