Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for meshNetworks (0.13 sec)

  1. pkg/config/analysis/analyzers/analyzers_test.go

    		},
    		meshNetworksFile: "testdata/common/meshnetworks.yaml",
    		analyzer:         &multicluster.MeshNetworksAnalyzer{},
    		expected: []message{
    			{msg.UnknownMeshNetworksServiceRegistry, "MeshNetworks istio-system/meshnetworks"},
    			{msg.UnknownMeshNetworksServiceRegistry, "MeshNetworks istio-system/meshnetworks"},
    		},
    	},
    	{
    		name: "authorizationpolicies",
    		inputFiles: []string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_builder_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: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/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
    - 21.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	//	  gateways:
    	//	  - registryServiceName: istio-ingressgateway.istio-system.svc.cluster.local
    	//	    port: 443
    	MeshNetworks *structpb.Struct `protobuf:"bytes,19,opt,name=meshNetworks,proto3" json:"meshNetworks,omitempty"`
    	// Specifies the Configuration for Istio mesh across multiple clusters through Istio gateways.
    	MultiCluster *MultiClusterConfig `protobuf:"bytes,22,opt,name=multiCluster,proto3" json:"multiCluster,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
Back to top