I want to set up multi-cluster kubernetes cluster using 2 microK8s cluster with help of istio. I have done all steps in documentation https://istio.io/latest/docs/setup/install/multicluster/multi-primary/ but still I can get those clusters connected so that I can access the pod from one cluster in other. If some one has help for me, I will appreciate it.
Cluster1.yaml
apiVersion: install.istio.io/v1alpha1
kind: IstioOperator
spec:
meshConfig:
defaultConfig:
proxyMetadata:
# Enable basic DNS proxying
ISTIO_META_DNS_CAPTURE: "true"
# Enable automatic address allocation, optional
ISTIO_META_DNS_AUTO_ALLOCATE: "true"
values:
global:
meshID: mesh1
multiCluster:
clusterName: cluster1
network: network1
Cluster2.yaml
apiVersion: install.istio.io/v1alpha1
kind: IstioOperator
spec:
meshConfig:
defaultConfig:
proxyMetadata:
# Enable basic DNS proxying
ISTIO_META_DNS_CAPTURE: "true"
# Enable automatic address allocation, optional
ISTIO_META_DNS_AUTO_ALLOCATE: "true"
values:
global:
meshID: mesh1
multiCluster:
clusterName: cluster2
network: network1
I want help for how to setup those clusters so that they can work together.
I have tried instructions on this pages https://istio.io/latest/docs/setup/install/multicluster/multi-primary/
NGIRIMANA Schadrack is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.