Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 566 for Mesh (0.07 sec)

  1. pkg/config/mesh/networks_watcher_test.go

    package mesh_test
    
    import (
    	"testing"
    	"time"
    
    	. "github.com/onsi/gomega"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/filewatcher"
    )
    
    func TestNewNetworksWatcherWithBadInputShouldFail(t *testing.T) {
    	g := NewWithT(t)
    	_, err := mesh.NewNetworksWatcher(filewatcher.NewWatcher(), "")
    	g.Expect(err).ToNot(BeNil())
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. pkg/test/loadbalancersim/mesh/client.go

    //  limitations under the License.
    
    package mesh
    
    import (
    	"sync"
    	"time"
    
    	"istio.io/istio/pkg/test/loadbalancersim/locality"
    	"istio.io/istio/pkg/test/loadbalancersim/network"
    )
    
    type ClientSettings struct {
    	RPS      int
    	Locality locality.Instance
    }
    
    type Client struct {
    	mesh *Instance
    	s    ClientSettings
    }
    
    func (c *Client) Mesh() *Instance {
    	return c.mesh
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 03 18:19:25 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  3. pilot/pkg/networking/plugin/authn/util_test.go

    package authn
    
    import (
    	"reflect"
    	"testing"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    )
    
    func TestTrustDomainsForValidation(t *testing.T) {
    	tests := []struct {
    		name       string
    		meshConfig *meshconfig.MeshConfig
    		want       []string
    	}{
    		{
    			name: "No duplicated trust domain in mesh config",
    			meshConfig: &meshconfig.MeshConfig{
    				TrustDomain:        "cluster.local",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 16:11:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. tests/fuzz/bootstrap_fuzzer.go

    	"istio.io/istio/pkg/config/mesh"
    )
    
    func FuzzNewBootstrapServer(data []byte) int {
    	f := fuzz.NewConsumer(data)
    
    	// Create mesh config file
    	meshConfigFile, err := createRandomConfigFile(f)
    	if err != nil {
    		return 0
    	}
    	defer os.Remove(meshConfigFile)
    	_, err = os.Stat(meshConfigFile)
    	if err != nil {
    		return 0
    	}
    	// Validate mesh config file
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 20 06:17:08 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/templates/configmap.yaml

    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 }}
    {{- else }}
    {{- include "mesh" . }}
    {{- end }}
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. tests/fuzz/mesh_fuzzer.go

    // limitations under the License.
    
    package fuzz
    
    import (
    	"istio.io/istio/pkg/config/mesh"
    )
    
    func FuzzParseMeshNetworks(data []byte) int {
    	_, _ = mesh.ParseMeshNetworks(string(data))
    	return 1
    }
    
    func FuzzValidateMeshConfig(data []byte) int {
    	_, _ = mesh.ApplyMeshConfigDefaults(string(data))
    	return 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 20 06:17:08 UTC 2022
    - 860 bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/virtualservice_gateways.yaml

    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: httpbin-mesh
    spec:
      hosts:
      - "*"
      gateways:
      - mesh # Expected: no validation error, "mesh" is a special-case value
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: cross-test
      namespace: default
    spec:
      hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  8. releasenotes/notes/disable-host-header-fallback.yaml

      prevent traffic coming from out-of-mesh locations from potential polluting the `destination_service` dimension in
      metrics with junk data (and exploding metrics cardinality). With this change, it is possible that users relying on
      host headers for labeling the destination service for inbound traffic from out-of-mesh workloads will see that traffic
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 22 19:40:45 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  9. tests/testdata/config/rule-route-via-egressgateway.yaml

    metadata:
      name: route-via-egressgateway
      namespace: testns
    spec:
      hosts:
        - egressgateway.bookinfo.com
      gateways:
      # Pinned to both the sidecars (mesh) and egress gateway
      - istio-egressgateway
      - mesh
      http:
        - match:
          - gateways:
            - mesh # from sidecars, route to egress gateway service
          route:
          - destination:
              host: istio-egressgateway
            weight: 100
        - match:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 735 bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/telemetry-disable-provider.yaml

    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: mesh-default
      namespace: istio-system
    spec:
      accessLogging:
        - providers:
            - name: envoy
    ---
    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: mesh-default
      namespace: foo
    spec:
      accessLogging:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 15 02:29:39 UTC 2023
    - 327 bytes
    - Viewed (0)
Back to top