Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 53 for volumeID (0.15 sec)

  1. pkg/security/security.go

    	// GkeWorkloadCertChainFilePath is the well-known path for the GKE workload certificate chain file.
    	// Quoted from https://cloud.google.com/traffic-director/docs/security-proxyless-setup#create-service:
    	// "On creation, each Pod gets a volume at /var/run/secrets/workload-spiffe-credentials."
    	GkeWorkloadCertChainFilePath = WorkloadIdentityCredentialsPath + "/certificates.pem"
    
    	// GkeWorkloadKeyFilePath is the well-known path for the GKE workload certificate key file
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/go/internal/fsys/fsys.go

    		// filepath.Abs needs to make a syscall on Windows. Elsewhere in cmd/go
    		// use filepath.Join(cwd, path), but cmd/go specifically supports Windows
    		// paths that start with "\" which implies the path is relative to the
    		// volume of the working directory. See golang.org/issue/8130.
    		return filepath.Join(v, path)
    	}
    
    	// Make the path absolute.
    	return filepath.Join(cwd, path)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  4. 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)
  5. samples/addons/grafana.yaml

                  port: 3000
                initialDelaySeconds: 60
                timeoutSeconds: 30
              readinessProbe:
                httpGet:
                  path: /api/health
                  port: 3000
          volumes:
            - name: config
              configMap:
                name: grafana
            - name: dashboards-istio
              configMap:
                name: istio-grafana-dashboards
            - name: dashboards-istio-services
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                      required:
                      - hosts
                      type: object
                    type: array
                  inboundConnectionPool:
                    description: Settings controlling the volume of connections Envoy
                      will accept from the network.
                    properties:
                      http:
                        description: HTTP connection pool settings.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  9. manifests/charts/base/crds/crd-all.gen.yaml

                      required:
                      - hosts
                      type: object
                    type: array
                  inboundConnectionPool:
                    description: Settings controlling the volume of connections Envoy
                      will accept from the network.
                    properties:
                      http:
                        description: HTTP connection pool settings.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  10. cmd/erasure-object.go

    		// healed upon regular heal process.
    		if missingBlocks > 0 && missingBlocks < fi.Erasure.DataBlocks {
    			globalMRFState.addPartialOp(partialOperation{
    				bucket:    fi.Volume,
    				object:    fi.Name,
    				versionID: fi.VersionID,
    				queued:    time.Now(),
    				setIndex:  er.setIndex,
    				poolIndex: er.poolIndex,
    			})
    		}
    
    		return
    	}()
    
    	validResp := 0
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
Back to top