Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 315 for Mesh (0.05 sec)

  1. pilot/pkg/xds/endpoints/endpoint_builder_test.go

    	"google.golang.org/protobuf/types/known/wrapperspb"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/config"
    )
    
    func TestPopulateFailoverPriorityLabels(t *testing.T) {
    	tests := []struct {
    		name           string
    		dr             *config.Config
    		mesh           *meshconfig.MeshConfig
    		expectedLabels []byte
    	}{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. pilot/pkg/model/telemetry_metric_test.go

    	meshconfig "istio.io/api/mesh/v1alpha1"
    	tpb "istio.io/api/telemetry/v1alpha1"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/test/util/assert"
    )
    
    func TestTelemetryMetricsExhaustiveness(t *testing.T) {
    	AssertProvidersHandled(telemetryFilterHandled)
    }
    
    func TestMergeMetrics(t *testing.T) {
    	withoutMetricsProviders := mesh.DefaultMeshConfig()
    	withMetricsProviders := mesh.DefaultMeshConfig()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 16 03:24:36 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top