This commit is contained in:
2025-04-13 07:24:18 -05:00
parent 6292d1730e
commit 5603924b25
3 changed files with 32 additions and 15 deletions

View File

@@ -1,13 +1,14 @@
apiVersion: v1 #apiVersion: v1
kind: Namespace #kind: Namespace
metadata: #metadata:
annotations: # annotations:
topology.istio.io/controlPlaneClusters: cluster1 # topology.istio.io/controlPlaneClusters: cluster1
labels: # labels:
kubernetes.io/metadata.name: istio-system # kubernetes.io/metadata.name: istio-system
name: istio-system # name: istio-system
spec: #spec:
finalizers: # finalizers:
- kubernetes # - kubernetes
status: #status:
phase: Active # phase: Active
#

View File

@@ -0,0 +1,16 @@
apiVersion: networking.istio.io/v1
kind: Gateway
metadata:
name: cross-network-gateway
spec:
selector:
istio: eastwestgateway
servers:
- port:
number: 15443
name: tls
protocol: TLS
tls:
mode: AUTO_PASSTHROUGH
hosts:
- "*.local"

View File

@@ -428,7 +428,7 @@ istiod:
# If the mesh admin does not specify a value, Istio will use the value of the # If the mesh admin does not specify a value, Istio will use the value of the
# mesh's Trust Domain. The best practice is to select a proper Trust Domain # mesh's Trust Domain. The best practice is to select a proper Trust Domain
# value. # value.
meshID: "" meshID: "mesh1"
# Configure the mesh networks to be used by the Split Horizon EDS. # Configure the mesh networks to be used by the Split Horizon EDS.
# #
@@ -474,7 +474,7 @@ istiod:
# Network defines the network this cluster belong to. This name # Network defines the network this cluster belong to. This name
# corresponds to the networks in the map of mesh networks. # corresponds to the networks in the map of mesh networks.
network: "" network: "network2"
# Configure the certificate provider for control plane communication. # Configure the certificate provider for control plane communication.
# Currently, two providers are supported: "kubernetes" and "istiod". # Currently, two providers are supported: "kubernetes" and "istiod".