Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 192 for Sidecars (0.07 sec)

  1. pilot/pkg/security/authn/policy_applier.go

    	filterConfigProto = a.setAuthnFilterForRequestAuthn(filterConfigProto)
    
    	if filterConfigProto == nil {
    		return nil
    	}
    	// disable clear route cache for sidecars because the JWT claim based routing is only supported on gateways.
    	filterConfigProto.DisableClearRouteCache = forSidecar
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. pkg/model/proxy.go

    	ServiceAccount string `json:"SERVICE_ACCOUNT,omitempty"`
    
    	// HTTPProxyPort enables http proxy on the port for the current sidecar.
    	// Same as MeshConfig.HttpProxyPort, but with per/sidecar scope.
    	HTTPProxyPort string `json:"HTTP_PROXY_PORT,omitempty"`
    
    	// MeshID specifies the mesh ID environment variable.
    	MeshID string `json:"MESH_ID,omitempty"`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. pkg/config/schema/collections/collections.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
    - 31.4K bytes
    - Viewed (0)
  4. architecture/networking/pilot.md

    Next, for an individual proxy we will check if it could possibly be impacted by the change. For example, we know a sidecar never is impacted by a `Gateway` update, and we can also look at scoping (from `Sidecar.egress.hosts`) to further restrict update scopes.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/istio-performance-dashboard.json

    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 Mar 27 03:47:04 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  6. pilot/pkg/model/jwks_resolver.go

    			}
    		}()
    
    		return true
    	})
    
    	// Wait for all go routine to complete.
    	wg.Wait()
    
    	if hasChange.Load() {
    		atomic.AddUint64(&r.refreshJobKeyChangedCount, 1)
    		// Push public key changes to sidecars.
    		if r.PushFunc != nil {
    			r.PushFunc()
    		}
    	}
    	return hasErrors.Load()
    }
    
    // Close will shut down the refresher job.
    // TODO: may need to figure out the right place to call this function.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  7. pilot/pkg/model/gateway.go

    	if len(duplicates) == 0 {
    		for _, h := range hosts {
    			knownHosts[h] = bind
    		}
    	}
    	return duplicates
    }
    
    // gatewayRDSRouteName generates the RDS route config name for gateway's servers.
    // Unlike sidecars where the RDS route name is the listener port number, gateways have a different
    // structure for RDS.
    // HTTP servers have route name set to http.<portNumber>.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. pkg/config/validation/agent/validation.go

    	}
    
    	if !isGateway {
    		// namespace can be * or . or ~ or a valid DNS label in sidecars
    		if parts[0] != "*" && parts[0] != "." && parts[0] != "~" {
    			if !labels.IsDNS1123Label(parts[0]) {
    				errs = AppendErrors(errs, fmt.Errorf("invalid namespace value %q in sidecar", parts[0]))
    			}
    		}
    	} else {
    		// namespace can be * or . or a valid DNS label in gateways
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/httproute.go

    // foo.ns2.svc.cluster.local). In this case, if the proxy is in ns2.svc.cluster.local, then while
    // generating alt virtual hosts for service foo.ns1 for the sidecars in ns2 namespace, we should generate
    // foo.ns1, foo.ns1.svc, foo.ns1.svc.cluster.local and should not generate a virtual host called "foo" for
    // foo.ns1 service.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  10. operator/cmd/mesh/manifest-generate_test.go

    	objEnabled := klabels.Set{"sidecar.istio.io/inject": "true"}
    	objDisable := klabels.Set{"sidecar.istio.io/inject": "false"}
    	objEnabledAndRev := klabels.Set{"sidecar.istio.io/inject": "true", "istio.io/rev": "canary"}
    	objDisableAndRev := klabels.Set{"sidecar.istio.io/inject": "false", "istio.io/rev": "canary"}
    
    	defaultWebhook := getWebhooks(t, "", "istio-sidecar-injector")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
Back to top