Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 531 for Mesh (0.06 sec)

  1. pilot/pkg/model/push_context_test.go

    	when := "createNewContext"
    	newPush := NewPushContext()
    	newPush.Mesh = env.Mesh()
    	newPush.InitContext(env, nil, nil)
    	verifyServices(true, fmt.Sprintf(testDesc, otherNS, when), otherNS, newPush)
    	verifyServices(true, fmt.Sprintf(testDesc, defaultNS, when), defaultNS, newPush)
    
    	oldPush := newPush
    	newPush = NewPushContext()
    	newPush.Mesh = env.Mesh()
    	svcName := "svc6.foo.cluster.local"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  2. tests/integration/security/testdata/authz/egress-gateway.yaml.tmpl

    kind: VirtualService
    metadata:
      name: route-via-egressgateway
      namespace: {{ .From.NamespaceName }}
    spec:
      hosts:
        - "www.company.com"
      gateways:
        - test-egress
        - mesh
      http:
        - match:
            - gateways:
                - mesh
              port: 80
          route:
            - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 31 15:08:52 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. pilot/pkg/xds/pcds.go

    // limitations under the License.
    
    package xds
    
    import (
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    
    	mesh "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	tb "istio.io/istio/pilot/pkg/trustbundle"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 18:25:42 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. pilot/cmd/pilot-discovery/app/cmd.go

    	c.PersistentFlags().StringVar(&serverArgs.MeshConfigFile, "meshConfig", "./etc/istio/config/mesh",
    		"File name for Istio mesh configuration. If not specified, a default mesh will be used.")
    	c.PersistentFlags().StringVar(&serverArgs.NetworksConfigFile, "networksConfig", "./etc/istio/config/meshNetworks",
    		"File name for Istio mesh networks configuration. If not specified, a default mesh networks will be used.")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. pkg/config/validation/agent/validation.go

    	v = AppendValidation(v, validateServiceSettings(mesh))
    	v = AppendValidation(v, validateTrustDomainConfig(mesh))
    
    	if err := validateExtensionProvider(mesh); err != nil {
    		scope.Warnf("found invalid extension provider (can be ignored if the given extension provider is not used): %v", err)
    	}
    
    	v = AppendValidation(v, ValidateMeshTLSConfig(mesh))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  6. architecture/ambient/ztunnel.md

    As ztunnel aims to transparently encrypt and route users traffic, we need a mechanism to capture all traffic entering and leaving "mesh" pods.
    This is a security critical task: if the ztunnel can be bypassed, authorization policies can be bypassed.
    
    Redirection must meet these requirements:
    * All traffic *egressing* a pod in the mesh should be redirected to the node-local ztunnel on port 15001.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/authz/authorizationpolicies.go

    	apNs := r.Metadata.FullName.Namespace.String()
    
    	// If AuthzPolicy is mesh-wide
    	if meshWidePolicy(apNs, c) {
    		// If it has selector, need further analysis
    		if ap.GetSelector() != nil {
    			apSelector := klabels.SelectorFromSet(ap.GetSelector().MatchLabels)
    			// If there is at least one pod matching the selector within the whole mesh
    			if !hasMatchingPodsRunning(apSelector, podLabelsMap) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 20:57:29 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. security/pkg/nodeagent/sds/sdsservice.go

    	"github.com/google/uuid"
    	uberatomic "go.uber.org/atomic"
    	"google.golang.org/grpc"
    	"google.golang.org/grpc/codes"
    	"google.golang.org/grpc/status"
    	"google.golang.org/protobuf/types/known/durationpb"
    
    	mesh "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	"istio.io/istio/pkg/backoff"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/model"
    	"istio.io/istio/pkg/security"
    	"istio.io/istio/pkg/xds"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 25 00:20:04 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. tests/integration/pilot/testdata/tunneling/gateway/tcp/virtual-service.tmpl.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: mesh-route-outbound-traffic-to-external-svc-via-egress-gw
    spec:
      hosts:
      - external.{{ .externalNamespace }}.svc.cluster.local
      gateways:
      - mesh
      tcp:
      - match:
        - port: {{ .externalSvcTcpPort }}
        route:
        - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 17:19:27 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_test.go

    								Sni:  "custom.sni.com",
    							},
    						},
    					},
    				},
    			},
    		},
    	}
    
    	mesh := testMesh()
    	mesh.EnableAutoMtls.Value = true
    
    	clusters := buildTestClusters(clusterTest{t: t, serviceHostname: TestServiceNHostname, nodeType: model.SidecarProxy, mesh: mesh, destRule: destRule})
    
    	tlsContext := getTLSContext(t, clusters[1])
    	g.Expect(tlsContext).ToNot(BeNil())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
Back to top