Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 317 for It (0.02 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. common-protos/k8s.io/api/storage/v1beta1/generated.proto

      // When a driver is initialized on a node, it provides the same topology keys
      // along with values. Kubelet will expose these topology keys as labels
      // on its own node object.
      // When Kubernetes does topology aware provisioning, it can use this list to
      // determine which labels it should retrieve from the node object and pass
      // back to the driver.
      // It is possible for different nodes to use different topology keys.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  3. 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)
  4. pilot/pkg/status/distribution/reporter.go

    				// if this resource is done reconciling, let's not worry about it anymore
    				finishedResources = append(finishedResources, res)
    				// deleting it here doesn't work because we have a read lock and are inside an iterator.
    				// TODO: this will leak when a resource never reaches 100% before it is replaced.
    				// TODO: do deletes propagate through this thing?
    			}
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. 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)
  6. common-protos/k8s.io/api/apps/v1beta2/generated.proto

      // without any of its container crashing, for it to be considered available.
      // Defaults to 0 (pod will be considered available as soon as it is ready)
      // +optional
      optional int32 minReadySeconds = 4;
    
      // Selector is a label query over pods that should match the replica count.
      // Label keys and values that must match in order to be controlled by this replica set.
      // It must match the pod template's labels.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/authorization/v1/generated.proto

      // +optional
      optional bool denied = 4;
    
      // Reason is optional.  It indicates why a request was allowed or denied.
      // +optional
      optional string reason = 2;
    
      // EvaluationError is an indication that some error occurred during the authorization check.
      // It is entirely possible to get an error and be able to continue determine authorization status in spite of it.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/autoscaling/v2beta1/generated.proto

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    
    // This file was autogenerated by go-to-protobuf. Do not edit it manually!
    
    syntax = "proto2";
    
    package k8s.io.api.autoscaling.v2beta1;
    
    import "k8s.io/api/core/v1/generated.proto";
    import "k8s.io/apimachinery/pkg/api/resource/generated.proto";
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/extensions/v1beta1/generated.proto

      // be ready without any of its container crashing, for it to be considered
      // available. Defaults to 0 (pod will be considered available as soon as it
      // is ready).
      // +optional
      optional int32 minReadySeconds = 4;
    
      // DEPRECATED.
      // A sequence number representing a specific generation of the template.
      // Populated by the system. It can be set only during the creation.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  10. security/pkg/nodeagent/cache/secretcache.go

    	var expireTime time.Time
    	// Cert expire time by default is createTime + sc.configOptions.SecretTTL.
    	// Istiod respects SecretTTL that passed to it and use it decide TTL of cert it issued.
    	// Some customer CA may override TTL param that's passed to it.
    	if expireTime, err = nodeagentutil.ParseCertAndGetExpiryTimestamp(certChain); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
Back to top