Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 82 for meshNetworks (0.22 sec)

  1. pkg/config/analysis/local/istiod_analyze.go

    	}
    	// Create a store containing meshnetworks. There should be exactly one.
    	_, err = sa.internalStore.Create(config.Config{
    		Meta: config.Meta{
    			Name:             "meshnetworks",
    			Namespace:        sa.istioNamespace.String(),
    			GroupVersionKind: gvk.MeshNetworks,
    		},
    		Spec: sa.meshNetworks,
    	})
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  2. pkg/config/mesh/networks_watcher_test.go

    	g := NewWithT(t)
    
    	path := newTempFile(t)
    	defer removeSilent(path)
    
    	n := meshconfig.MeshNetworks{
    		Networks: make(map[string]*meshconfig.Network),
    	}
    	writeMessage(t, path, &n)
    
    	w := newNetworksWatcher(t, path)
    	g.Expect(w.Networks()).To(Equal(&n))
    
    	doneCh := make(chan struct{}, 1)
    
    	var newN *meshconfig.MeshNetworks
    	w.AddNetworksHandler(func() {
    		newN = w.Networks()
    		close(doneCh)
    	})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/templates/configmap.yaml

        operator.istio.io/component: "Pilot"
        release: {{ .Release.Name }}
    data:
    
      # Configuration file for the mesh networks to be used by the Split Horizon EDS.
      meshNetworks: |-
      {{- if .Values.global.meshNetworks }}
        networks:
    {{ toYaml .Values.global.meshNetworks | trim | indent 6 }}
      {{- else }}
        networks: {}
      {{- end }}
    
      mesh: |-
    {{- if .Values.meshConfig }}
    {{ $mesh | toYaml | indent 4 }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. pilot/pkg/model/network_test.go

    		errF := failingDNSServer.Shutdown()
    		if errW != nil || errF != nil {
    			t.Logf("failed shutting down fake dns servers")
    		}
    	})
    
    	meshNetworks := mesh.NewFixedNetworksWatcher(nil)
    	xdsUpdater := xdsfake.NewFakeXDS()
    	env := &model.Environment{NetworksWatcher: meshNetworks, ServiceDiscovery: memory.NewServiceDiscovery()}
    	if err := env.InitNetworksManager(xdsUpdater); err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 01:18:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. pilot/pkg/xds/mesh_network_test.go

    				Name:      "istio-meshnetworks-gateway",
    				Namespace: "istio-system",
    			},
    			Spec: corev1.ServiceSpec{Type: corev1.ServiceTypeLoadBalancer},
    			Status: corev1.ServiceStatus{
    				LoadBalancer: corev1.LoadBalancerStatus{Ingress: []corev1.LoadBalancerIngress{{IP: "4.4.4.4"}}},
    			},
    		}, metav1.CreateOptions{})
    		meshNetworks.SetNetworks(&meshconfig.MeshNetworks{Networks: map[string]*meshconfig.Network{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/network.go

    	n.networkFromMeshConfig = ""
    	n.registryServiceNameGateways = make(map[host.Name][]model.NetworkGateway)
    
    	meshNetworks := n.meshNetworksWatcher.Networks()
    	if meshNetworks == nil || len(meshNetworks.Networks) == 0 {
    		return
    	}
    	for id, v := range meshNetworks.Networks {
    		// track endpoints items from this registry are a part of this network
    		fromRegistry := false
    		for _, ep := range v.Endpoints {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/output/pilot_disable_tracing.golden.yaml

          tracing: {}
        defaultProviders:
          metrics:
          - prometheus
        enablePrometheusMerge: true
        rootNamespace: istio-system
        trustDomain: cluster.local
      meshNetworks: 'networks: {}'
    kind: ConfigMap
    metadata:
      labels:
        install.operator.istio.io/owning-resource: unknown
        istio.io/rev: default
        operator.istio.io/component: Pilot
        release: istio
      name: istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 525 bytes
    - Viewed (0)
  8. manifests/charts/istiod-remote/templates/configmap.yaml

        operator.istio.io/component: "Pilot"
        release: {{ .Release.Name }}
    data:
    
      # Configuration file for the mesh networks to be used by the Split Horizon EDS.
      meshNetworks: |-
      {{- if .Values.global.meshNetworks }}
        networks:
    {{ toYaml .Values.global.meshNetworks | trim | indent 6 }}
      {{- else }}
        networks: {}
      {{- end }}
    
      mesh: |-
    {{- if .Values.meshConfig }}
    {{ $mesh | toYaml | indent 4 }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/output/pilot_merge_meshconfig.golden.yaml

        defaultProviders:
          metrics:
          - prometheus
        enablePrometheusMerge: true
        outboundTrafficPolicy:
          mode: REGISTRY_ONLY
        rootNamespace: istio-control
        trustDomain: cluster.local
      meshNetworks: 'networks: {}'
    kind: ConfigMap
    metadata:
      labels:
        install.operator.istio.io/owning-resource: unknown
        istio.io/rev: default
        operator.istio.io/component: Pilot
        release: istio
      name: istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 743 bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inputs/merge-probers.yaml.43.values.gen.yaml

        "istioNamespace": "istio-system",
        "istiod": {
          "enableAnalysis": false
        },
        "logAsJson": false,
        "logging": {
          "level": "default:info"
        },
        "meshID": "",
        "meshNetworks": {},
        "mountMtlsCerts": false,
        "multiCluster": {
          "clusterName": "",
          "enabled": false
        },
        "namespace": "istio-system",
        "network": "",
        "omitSidecarInjectorConfigMap": false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top