Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 66 for meshNetworks (0.41 sec)

The limit of a search time was exceeded. The partial result might be displayed.

  1. manifests/charts/istiod-remote/values.yaml

        # LoadBalancer gateway service type is currently supported, for a NodePort type gateway service,
        # it still need to be configured manually).
        #
        # meshNetworks:
        #   network1:
        #     endpoints:
        #     - fromCidr: "192.168.0.1/24"
        #     gateways:
        #     - address: 1.1.1.1
        #       port: 80
        #   network2:
        #     endpoints:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  2. tests/integration/pilot/testdata/upgrade/1.7.6-install.yaml.tar

    inline_string: "envoy.wasm.stats" --- apiVersion: v1 kind: ConfigMap metadata: name: istio-1-7-6 namespace: istio-system labels: istio.io/rev: 1-7-6 release: istio data: # Configuration file for the mesh networks to be used by the Split Horizon EDS. meshNetworks: |- networks: {} mesh: |- defaultConfig: discoveryAddress: istiod-1-7-6.istio-system.svc:15012 proxyMetadata: DNS_AGENT: "" tracing: zipkin: address: zipkin.istio-system:9411 disableMixerHttpRepo: true enablePrometheusMerg: true rootNamespace:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 16:06:08 UTC 2021
    - 60K bytes
    - Viewed (0)
  3. pilot/pkg/model/context.go

    	Cache XdsCache
    }
    
    func (e *Environment) Mesh() *meshconfig.MeshConfig {
    	if e != nil && e.Watcher != nil {
    		return e.Watcher.Mesh()
    	}
    	return nil
    }
    
    func (e *Environment) MeshNetworks() *meshconfig.MeshNetworks {
    	if e != nil && e.NetworksWatcher != nil {
    		return e.NetworksWatcher.Networks()
    	}
    	return nil
    }
    
    // SetPushContext sets the push context with lock protected
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  4. pilot/pkg/xds/bench_test.go

    			s := xds.NewFakeDiscoveryServer(b, xds.FakeOptions{
    				Configs: createEndpointsConfig(tt.endpoints, tt.services, numNetworks),
    				NetworksWatcher: mesh.NewFixedNetworksWatcher(&meshconfig.MeshNetworks{
    					Networks: createGateways(numNetworks),
    				}),
    			})
    			proxy := &model.Proxy{
    				Type:            model.SidecarProxy,
    				IPAddresses:     []string{"10.3.3.3"},
    				ID:              "random",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  5. tests/integration/pilot/testdata/upgrade/1.8.6-install.yaml.tar

    istio-1-8-6 namespace: istio-system labels: istio.io/rev: 1-8-6 install.operator.istio.io/owning-resource: unknown operator.istio.io/component: "Pilot" release: istio data: # Configuration file for the mesh networks to be used by the Split Horizon EDS. meshNetworks: |- networks: {} mesh: |- defaultConfig: discoveryAddress: istiod-1-8-6.istio-system.svc:15012 proxyMetadata: DNS_AGENT: "" tracing: zipkin: address: zipkin.istio-system:9411 enablePrometheusMerg: true rootNamespace: istio-system trustDomain: cluster.local...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 01 19:57:24 UTC 2021
    - 70K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/controller.go

    	NodeZoneLabelGA = v1.LabelTopologyZone
    
    	// DefaultNetworkGatewayPort is the port used by default for cross-network traffic if not otherwise specified
    	// by meshNetworks or "networking.istio.io/gatewayPort"
    	DefaultNetworkGatewayPort = 15443
    )
    
    var log = istiolog.RegisterScope("kube", "kubernetes service registry controller")
    
    var (
    	typeTag  = monitoring.CreateLabel("type")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  7. tests/integration/pilot/testdata/upgrade/1.10.0-install.yaml.tar

    istio-1-10-0 namespace: istio-system labels: istio.io/rev: 1-10-0 install.operator.istio.io/owning-resource: unknown operator.istio.io/component: "Pilot" release: istio data: # Configuration file for the mesh networks to be used by the Split Horizon EDS. meshNetworks: |- networks: {} mesh: |- defaultConfig: discoveryAddress: istiod-1-10-0.istio-system.svc:15012 proxyMetadata: {} tracing: zipkin: address: zipkin.istio-system:9411 enablePrometheusMerg: true rootNamespace: istio-system trustDomain: cluster.local...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 01 19:57:24 UTC 2021
    - 80K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/gateway_test.go

    	cases := []struct {
    		name           string
    		networks       *meshconfig.MeshNetworks
    		expectedconfig *hcm.HttpConnectionManager_InternalAddressConfig
    	}{
    		{
    			name:           "nil networks",
    			expectedconfig: nil,
    		},
    		{
    			name:           "empty networks",
    			networks:       &meshconfig.MeshNetworks{},
    			expectedconfig: nil,
    		},
    		{
    			name: "networks populated",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // LoadBalancer gateway service type is currently supported, for a NodePort type gateway service,
      // it still need to be configured manually).
      //
      // meshNetworks:
      //   network1:
      //     endpoints:
      //     - fromCidr: "192.168.0.1/24"
      //     gateways:
      //     - address: 1.1.1.1
      //       port: 80
      //   network2:
      //     endpoints:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

              address: zipkin.istio-system:9411
        defaultProviders:
          metrics:
          - prometheus
        enablePrometheusMerge: true
        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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
Back to top