Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 188 for It (0.13 sec)

  1. architecture/ambient/ztunnel.md

    Ztunnel will request certificates for all identities on the node.
    It determines this based on the Workload xDS configuration it receives.
    When a new identity is discovered on the node, it will be enqueued for fetching at a low priority, as an optimization.
    However, if a request needs a certain identity that we have not fetched yet, it will be immediately requested.
    
    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. pilot/pkg/serviceregistry/aggregate/controller.go

    	c.handlers.AppendServiceHandler(f)
    }
    
    func (c *Controller) AppendWorkloadHandler(f func(*model.WorkloadInstance, model.Event)) {
    	// Currently, it is not used.
    	// Note: take care when you want to enable it, it will register the handlers to all registries
    	// c.handlers.AppendWorkloadHandler(f)
    }
    
    func (c *Controller) AppendServiceHandlerForCluster(id cluster.ID, f model.ServiceHandler) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    		// Even though we don't know what it is, allow users to put the resource. We won't be able to
    		// protect against overwrites though.
    		return true, ""
    	}
    	obj := store.Get(name, namespace)
    	if obj == nil {
    		// no object, we can manage it
    		return true, ""
    	}
    	_, managed := obj.GetLabels()[constants.ManagedGatewayLabel]
    	// If object already exists, we can only manage it if it has the label
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  4. pkg/wasm/convert.go

    }
    
    // tryUnmarshal returns the typed extension config and wasm config by unmarsharling `resource`,
    // if `resource` is a wasm config loading a wasm module from the remote site.
    // It returns `nil` for both the typed extension config and wasm config if it is not for the remote wasm or has an error.
    func tryUnmarshal(resource *anypb.Any) (*core.TypedExtensionConfig, *httpwasm.Wasm, *networkwasm.Wasm, error) {
    	ec := &core.TypedExtensionConfig{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conditions.go

    	seen := map[k8s.ParentReference][]RouteParentResult{}
    	seenReasons := sets.New[ParentErrorReason]()
    	successCount := map[k8s.ParentReference]int{}
    	for _, incoming := range parentResults {
    		// We will append it if it is our first occurrence, or the existing one has an error. This means
    		// if *any* section has no errors, we will declare Admitted
    		if incoming.DeniedReason == nil {
    			successCount[incoming.OriginalReference]++
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. tests/integration/README.md

    as it stands is a singleton per cluster. If multiple suites attempt to deploy/configure Istio,
    they can corrupt each other and/or simply fail.  To avoid this issue, you have a couple of options:
    
    1. Run one suite per command (e.g. `go test ./tests/integration/mysuite/...`)
    1. Disable parallelism with `-p 1` (e.g. `go test -p 1 ./...`). A major disadvantage to doing this is that it will also disable
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. pkg/config/constants/constants.go

    	// AmbientRedirectionEnabled indicates redirection is configured. This is set by the CNI on pods
    	// when it actually has successfully set up pod redirection, rather than by the user.
    	//
    	// The presence of this annotation with this specific value indicates the pod is captured.
    	// Anything else indicates it is not.
    	AmbientRedirectionEnabled = "enabled"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. licenses/github.com/hashicorp/go-version/LICENSE

         under the terms of Section 3.3).
    
    2.5. Representation
    
         Each Contributor represents that the Contributor believes its Contributions
         are its original creation(s) or it has sufficient rights to grant the
         rights to its Contributions conveyed by this License.
    
    2.6. Fair Use
    
         This License is not intended to limit any rights You have under applicable
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:40 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex.go

    	// First, we want to handle VIP subscriptions. Example:
    	// Client subscribes to VIP1. Pod1, part of VIP1, is sent.
    	// The client wouldn't be explicitly subscribed to Pod1, so it would normally ignore it.
    	// Since it is a part of VIP1 which we are subscribe to, add it to the subscriptions
    	for addr := range allAddresses {
    		for _, wl := range model.ExtractWorkloadsFromAddresses(a.Lookup(addr)) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 19 17:19:41 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. pkg/log/options.go

    	// files are called backups. Once a backup has been created,
    	// output resumes to this path.
    	RotateOutputPath string
    
    	// RotationMaxSize is the maximum size in megabytes of a log file before it gets
    	// rotated. It defaults to 100 megabytes.
    	RotationMaxSize int
    
    	// RotationMaxAge is the maximum number of days to retain old log files based on the
    	// timestamp encoded in their filename. Note that a day is defined as 24
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top