Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for volumeID (0.25 sec)

  1. pilot/pkg/bootstrap/istio_ca.go

    // the caOptions defines the external provider
    // ca cert can come from three sources, order matters:
    // 1. Define ca cert via kubernetes secret and mount the secret through `external-ca-cert` volume
    // 2. Use kubernetes ca cert `/var/run/secrets/kubernetes.io/serviceaccount/ca.crt` if signer is
    //
    //	kubernetes built-in `kubernetes.io/legacy-unknown" signer
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_builder.go

    	}
    	// When users specify circuit breakers, they need to be set on the receiver end
    	// (server side) as well as client side, so that the server has enough capacity
    	// (not the defaults) to handle the increased traffic volume
    	// TODO: This is not foolproof - if instance is part of multiple services listening on same port,
    	// choice of inbound cluster is arbitrary. So the connection pool settings may not apply cleanly.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/types.go

    			}
    		}
    	}
    }
    
    // updatePVCRefCounts updates the PVCRefCounts of NodeInfo.
    func (n *NodeInfo) updatePVCRefCounts(pod *v1.Pod, add bool) {
    	for _, v := range pod.Spec.Volumes {
    		if v.PersistentVolumeClaim == nil {
    			continue
    		}
    
    		key := GetNamespacedName(pod.Namespace, v.PersistentVolumeClaim.ClaimName)
    		if add {
    			n.PVCRefCounts[key] += 1
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  4. cmd/erasure-healing.go

    				return nil
    			}
    			volsInfo, err := storageDisks[index].ListVols(ctx)
    			if err != nil {
    				return err
    			}
    			for _, volInfo := range volsInfo {
    				// StorageAPI can send volume names which are
    				// incompatible with buckets - these are
    				// skipped, like the meta-bucket.
    				if isReservedOrInvalidBucket(volInfo.Name, false) {
    					continue
    				}
    				mu.Lock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.8K bytes
    - Viewed (0)
Back to top