Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 633 for Sidecars (2.15 sec)

  1. pilot/pkg/model/push_context.go

    	for _, sidecarConfig := range rawSidecarConfigs {
    		sidecar := sidecarConfig.Spec.(*networking.Sidecar)
    		// sidecars with selector take preference
    		if sidecar.WorkloadSelector != nil {
    			sidecarConfigs = append(sidecarConfigs, sidecarConfig)
    		}
    	}
    	for _, sidecarConfig := range rawSidecarConfigs {
    		sidecar := sidecarConfig.Spec.(*networking.Sidecar)
    		// sidecars without selector placed behind
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_termination_order_test.go

    		if !ok {
    			t.Errorf("unable to find delay for container %s", name)
    		}
    		return delay.(int64)
    	}
    
    	for _, tc := range []struct {
    		containerName string
    		expectedDelay int64
    	}{
    		// sidecars should exit in reverse order, so
    		// sc1 = 3 (main container + sc3 + sc2)
    		{
    			containerName: "sc1",
    			expectedDelay: 3,
    		},
    		// sc2 = 2 (main container + sc3)
    		{
    			containerName: "sc2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 00:07:21 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  3. samples/open-telemetry/tracing/README.md

    ```bash
    kubectl create namespace observability
    kubectl -n observability apply -f ../otel.yaml
    ```
    
    The otel-collector will create a grpc receiver on port `4317`, and later the sidecars will report trace information to this grpc port. You can find more details from [here](https://github.com/open-telemetry/opentelemetry-collector).
    
    Below is the configuration:
    
    ```yaml
    receivers:
      otlp:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 18 16:38:12 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. pilot/pkg/model/sidecar.go

    type SidecarScope struct {
    	Name string
    	// This is the namespace where the sidecar takes effect,
    	// maybe different from the ns where sidecar resides if sidecar is in root ns.
    	Namespace string
    	// The cr itself. Can be nil if we are constructing the default
    	// sidecar scope
    	Sidecar *networking.Sidecar
    
    	// Version this sidecar was computed for
    	Version string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_tls.go

    	// Hack to avoid egress sds cluster config generation for sidecar when
    	// CredentialName is set in DestinationRule without a workloadSelector.
    	// We do not want to support CredentialName setting in non workloadSelector based DestinationRules, because
    	// that would result in the CredentialName being supplied to all the sidecars which the DestinationRule is scoped to,
    	// resulting in delayed startup of sidecars who do not have access to the credentials.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. istioctl/pkg/version/version.go

    				if err != nil {
    					return nil, fmt.Errorf("could not unmarshal Node: %w", err)
    				}
    				meta, err := model.ParseMetadata(node.Metadata)
    				if err != nil || meta.ProxyConfig == nil {
    					// Skip non-sidecars (e.g. istioctl queries)
    					continue
    				}
    				pi = append(pi, istioVersion.ProxyInfo{
    					ID:           node.Id,
    					IstioVersion: getIstioVersionFromXdsMetadata(node.Metadata),
    				})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. istioctl/pkg/wait/wait_test.go

    			wantException:    true,
    			expectedOutput:   "Error: timeout expired before resource networking.istio.io/v1alpha3/VirtualService/default/bar became effective on all sidecars\n",
    		},
    		{
    			execClientConfig: cannedResponseMap,
    			args:             strings.Split("--timeout 2s virtualservice foo.default", " "),
    			wantException:    false,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 08:28:50 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/config.go

    	return c.StatefulSet
    }
    
    // IsNaked checks if the config has no sidecar.
    // Note: instances that mix subsets with and without sidecars are considered 'naked'.
    func (c Config) IsNaked() bool {
    	for _, s := range c.Subsets {
    		if s.Annotations != nil && s.Annotations[annotation.SidecarInject.Name] == "false" {
    			// Sidecar injection is disabled - it's naked.
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/echotest/filters.go

    	return match.Network(from.Config().Cluster.NetworkName()).GetMatches(to)
    }
    
    // NoSelfCalls disallows self-calls where from and to have the same service name. Self-calls can
    // by-pass the sidecar, so tests relying on sidecar logic will sent to disable self-calls by default.
    var NoSelfCalls CombinationFilter = func(from echo.Instance, to echo.Instances) echo.Instances {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/crdclient/types.gen.go

    	case gvk.Sidecar:
    		oldRes := &apiistioioapinetworkingv1alpha3.Sidecar{
    			ObjectMeta: origMeta,
    			Spec:       *(orig.Spec.(*istioioapinetworkingv1alpha3.Sidecar)),
    		}
    		modRes := &apiistioioapinetworkingv1alpha3.Sidecar{
    			ObjectMeta: modMeta,
    			Spec:       *(mod.Spec.(*istioioapinetworkingv1alpha3.Sidecar)),
    		}
    		patchBytes, err := genPatchBytes(oldRes, modRes, typ)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 62.2K bytes
    - Viewed (0)
Back to top