Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Sidecars (0.33 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    pc-agent.yaml {{- define "resources" }} {{- if or (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPU`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemory`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPULimit`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemoryLimit`) }} {{- if or (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPU`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemory`) }} requests: {{ if (isset .ObjectMeta.Annotations `sidecar...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  2. pkg/config/validation/validation.go

    				errs = AppendValidation(errs, fmt.Errorf("sidecar: ingress may not be null"))
    				continue
    			}
    			if i.Port == nil {
    				errs = AppendValidation(errs, fmt.Errorf("sidecar: port is required for ingress listeners"))
    				continue
    			}
    
    			// nolint: staticcheck
    			if i.Port.TargetPort > 0 {
    				errs = AppendValidation(errs, fmt.Errorf("targetPort has no impact on Sidecars"))
    			}
    
    			bind := i.GetBind()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

                {{ with annotation .ObjectMeta `traffic.sidecar.istio.io/includeInboundPorts` .Values.global.proxy.includeInboundPorts }}traffic.sidecar.istio.io/includeInboundPorts: "{{.}}",{{ end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  4. samples/addons/grafana.yaml

    resources utilization under steady load.\n\n- **vCPU / 1k rps:** shows vCPU utilization by the main Istio components normalized by 1000 requests/second. When idle or low traffic, this chart will be blank. The curve for istio-proxy refers to the services sidecars only.\n- **vCPU:** vCPU utilization by Istio components, not normalized.\n- **Memory:** memory footprint for the components. Telemetry and policy are normalized by 1k rps, and no data is shown  when there is no traffic. For ingress and istio-proxy,...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_test.go

    		Port: &networking.SidecarPort{
    			Number:   7443,
    			Name:     "grpc-core",
    			Protocol: "GRPC",
    		},
    	}
    	svc := findOrCreateService(instances, ingress, "sidecar", "sidecarns")
    	if svc == nil || svc.Hostname.Matches("sidecar.sidecarns") {
    		t.Fatal("Expected to return a valid instance, but got nil/default instance")
    	}
    	if !reflect.DeepEqual(svc, service) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  6. pkg/config/validation/validation_test.go

    		name  string
    		in    *networking.Sidecar
    		valid bool
    		warn  bool
    	}{
    		{"empty ingress and egress", &networking.Sidecar{}, false, false},
    		{"default", &networking.Sidecar{
    			Egress: []*networking.IstioEgressListener{
    				{
    					Hosts: []string{"*/*"},
    				},
    			},
    		}, true, false},
    		{"workload selector without labels", &networking.Sidecar{
    			Egress: []*networking.IstioEgressListener{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  7. tests/integration/pilot/common/routing.go

    		{
    			name:           "instance IP without sidecar",
    			disableSidecar: true,
    			port:           ports.HTTPInstance,
    			code:           http.StatusOK,
    		},
    		{
    			name:     "instance IP with wildcard sidecar",
    			endpoint: "0.0.0.0",
    			port:     ports.HTTPInstance,
    			code:     http.StatusOK,
    		},
    		{
    			name:     "instance IP with localhost sidecar",
    			endpoint: "127.0.0.1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  8. pkg/test/framework/features/allowlist.txt

    security,TestReachability
    security,TestReachability/automtls-partial-sidecar-dr-disable
    security,TestReachability/automtls-partial-sidecar-dr-disable/a->http://multiversion:http/vistio
    security,TestReachability/automtls-partial-sidecar-dr-disable/a->http://multiversion:http/vlegacy
    security,TestReachability/automtls-partial-sidecar-dr-mutual
    security,TestReachability/automtls-partial-sidecar-dr-mutual/a->http://multiversion:http/vistio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 18 18:03:23 UTC 2022
    - 103.9K bytes
    - Viewed (0)
  9. pkg/api/pod/util_test.go

    		hasSidecarContainer bool
    		pod                 func() *api.Pod
    	}{
    		{
    			description:         "has a sidecar container",
    			hasSidecarContainer: true,
    			pod:                 podWithSidecarContainers,
    		},
    		{
    			description:         "does not have a sidecar container",
    			hasSidecarContainer: false,
    			pod:                 podWithoutSidecarContainers,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  10. pkg/printers/internalversion/printers_test.go

    			api.Pod{
    				ObjectMeta: metav1.ObjectMeta{Name: "test4"},
    				Spec: api.PodSpec{
    					InitContainers: []api.Container{
    						{Name: "init1", Image: "initimage"},
    						{Name: "sidecar1", Image: "sidecarimage", RestartPolicy: ptr.To(api.ContainerRestartPolicyAlways)},
    					},
    					Containers: []api.Container{{Name: "container1", Image: "containerimage"}},
    				},
    				Status: api.PodStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
Back to top