Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 704 for Sidecars (0.34 sec)

  1. architecture/ambient/ztunnel.md

    * Be lightweight enough to not limit adoption.
      * This puts a much tighter budget on CPU, memory, latency, and throughput requirements than traditional Istio sidecars.
    
    Ztunnel was not designed to be a feature-rich data plane.
    Quite the opposite - an *aggressively* small feature set is the key feature that makes ztunnel viable.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. pkg/envoy/agent.go

    //     If the pod's terminationGracePeriod is shorter than our drain duration (rare), we may be a SIGKILL.
    //  4. /drain + SIGTERM. This is the shutdown when using Kubernetes native sidecars.
    //     /drain is called when the pod shutdown starts. We start draining, forever.
    //     Once the app containers shutdown, we get a SIGTERM. We have no use to run anymore, so shutdown immediately.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. tests/integration/security/filebased_tls_origination/egress_gateway_origination_test.go

    			}
    		}
    
    		return true, nil
    	}
    
    	workloads, _ := c.Workloads()
    	// Wait for the outbound config to be received by each workload from Pilot.
    	for _, w := range workloads {
    		if w.Sidecar() != nil {
    			if err := w.Sidecar().WaitForConfig(accept, retry.Timeout(time.Second*10)); err != nil {
    				return err
    			}
    		}
    	}
    
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  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. 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)
  9. 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)
  10. 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)
Back to top