Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 465 for sidecars (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. pkg/config/schema/collections/collections.agent.gen.go

    		ValidateProto: validation.ValidateServiceEntry,
    	}.MustBuild()
    
    	Sidecar = resource.Builder{
    		Identifier: "Sidecar",
    		Group:      "networking.istio.io",
    		Kind:       "Sidecar",
    		Plural:     "sidecars",
    		Version:    "v1alpha3",
    		VersionAliases: []string{
    			"v1beta1",
    			"v1",
    		},
    		Proto: "istio.networking.v1alpha3.Sidecar", StatusProto: "istio.meta.v1alpha1.IstioStatus",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. tests/integration/security/egress_sidecar_tls_origination_test.go

    				authorizeSidecar bool
    				drSelector       string
    				expectedResponse ingressutil.ExpectedResponse
    			}{
    				// Mutual TLS origination from an authorized sidecar to https endpoint
    				{
    					name:             "authorized sidecar",
    					credentialToUse:  credNameGeneric,
    					from:             apps.Ns1.A,
    					drSelector:       "a",
    					authorizeSidecar: true,
    					expectedResponse: ingressutil.ExpectedResponse{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. pkg/config/analysis/msg/messages.yaml

            type: string
          - name: host
            type: string
    
      - name: "ConflictingSidecarWorkloadSelectors"
        code: IST0110
        level: Error
        description: "A Sidecar resource selects the same workloads as another Sidecar resource"
        template: "The Sidecars %v in namespace %q select the same workload pod %q, which can lead to undefined behavior."
        args:
          - name: conflictingSidecars
            type: "[]string"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top