Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 479 for sidecars (0.2 sec)

  1. tests/integration/telemetry/policy/helper_test.go

    metadata:
      name: route-via-egressgateway
    spec:
      hosts:
        - "some-external-site.com"
      gateways:
      - istio-egressgateway
      - mesh
      http:
        - match:
          - gateways:
            - mesh # from sidecars, route to egress gateway service
            port: 80
          route:
          - destination:
              host: istio-egressgateway.istio-system.svc.cluster.local
              port:
                number: 80
            weight: 100
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. pkg/config/schema/metadata.yaml

        statusProto: "istio.meta.v1alpha1.IstioStatus"
        statusProtoPackage: "istio.io/api/meta/v1alpha1"
    
      - kind: "Sidecar"
        plural: "sidecars"
        group: "networking.istio.io"
        version: "v1alpha3"
        versionAliases:
          - "v1beta1"
          - "v1"
        proto: "istio.networking.v1alpha3.Sidecar"
        protoPackage: "istio.io/api/networking/v1alpha3"
        statusProto: "istio.meta.v1alpha1.IstioStatus"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/certcontroller.go

    	certChain, keyPEM, err := s.CA.GenKeyCert(s.dnsNames, SelfSignedCACertTTL.Get(), false)
    	if err != nil {
    		return err
    	}
    
    	if features.MultiRootMesh {
    		// Trigger trust anchor update, this will send PCDS to all sidecars.
    		log.Infof("Update trust anchor with new root cert")
    		err = s.workloadTrustBundle.UpdateTrustAnchor(&tb.TrustAnchorUpdate{
    			TrustAnchorConfig: tb.TrustAnchorConfig{Certs: []string{string(caBundle)}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. pkg/test/framework/resource/settings.go

    	// Skip VM related parts for all the tests.
    	SkipVM bool
    
    	// Skip TProxy related parts for all the tests.
    	SkipTProxy bool
    
    	// Ambient mesh is being used
    	Ambient bool
    
    	// Use ambient instead of sidecars
    	AmbientEverywhere bool
    
    	// Compatibility determines whether we should transparently deploy echo workloads attached to each revision
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. pkg/config/constants/constants.go

    	// policy with this name in the cluster-scoped will be considered.
    	DefaultAuthenticationPolicyName = "default"
    
    	// IstioMeshGateway is the built in gateway for all sidecars
    	IstioMeshGateway = "mesh"
    
    	// DefaultNamespaceWaypoint is the default name for a waypoint in a namespace.
    	DefaultNamespaceWaypoint = "waypoint"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. istioctl/pkg/tag/generate.go

    	// applying is not done here, but we are looser with checks when doing generate.
    	Generate bool
    	// Overwrite removes analysis checks around existing webhooks.
    	Overwrite bool
    	// AutoInjectNamespaces controls, if the sidecars should be injected into all namespaces by default.
    	AutoInjectNamespaces bool
    	// CustomLabels are labels to add to the generated webhook.
    	CustomLabels map[string]string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 17:43:49 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  7. pilot/pkg/xds/endpoints/endpoint_builder.go

    		// 1. Workload waypoints: sidecar/ingress do not support sending traffic directly to workloads, only to services,
    		//    so these are not applicable.
    		// 2. Service waypoints: in ztunnel, we would defer handling service traffic if the service has a waypoint, and instead
    		//    send to the waypoint. However, with sidecars this is problematic. We don't know which service is the intended destination
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // Enables core dumps for newly injected sidecars.
      //
      // If set, newly injected sidecars will have core dumps enabled.
      google.protobuf.BoolValue enableCoreDump = 9;
    
      // Specifies the Istio ingress ports not to capture.
      string excludeInboundPorts = 12;
    
      // Lists the excluded IP ranges of Istio egress traffic that the sidecar captures.
      string excludeIPRanges = 13;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  9. pilot/pkg/features/pilot.go

    	"istio.io/istio/pkg/env"
    	"istio.io/istio/pkg/jwt"
    	"istio.io/istio/pkg/util/sets"
    )
    
    var (
    	// HTTP10 will add "accept_http_10" to http outbound listeners. Can also be set only for specific sidecars via meta.
    	HTTP10 = env.Register(
    		"PILOT_HTTP10",
    		false,
    		"Enables the use of HTTP 1.0 in the outbound HTTP listeners, to support legacy applications.",
    	).Get()
    
    	ScopeGatewayToNamespace = env.Register(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. pilot/pkg/xds/lds_test.go

    			ConfigNamespace: "exampleegressgw",
    		}, nil, watchAll)
    	})
    }
    
    // TestLDS using default sidecar in root namespace
    func TestLDSWithDefaultSidecar(t *testing.T) {
    	s := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{
    		ConfigString: mustReadfolder(t, "tests/testdata/networking/sidecar-ns-scope"),
    		MeshConfig: func() *meshconfig.MeshConfig {
    			m := mesh.DefaultMeshConfig()
    			m.RootNamespace = "istio-config"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top