Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 35 for volumeID (0.21 sec)

  1. cmd/erasure-healing-common_test.go

    	// have different parities. They occur in equal number of drives, but only
    	// one has read quorum. commonParity should pick the parity corresponding to
    	// the FileInfo which has read quorum.
    	fi1 := FileInfo{
    		Volume:         "mybucket",
    		Name:           "myobject",
    		VersionID:      "",
    		IsLatest:       true,
    		Deleted:        false,
    		ExpireRestored: false,
    		DataDir:        "4a01d9dd-0c5e-4103-88f8-b307c57d212e",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.27.md

    - Add e2e test to node expand volume with secret ([#115451](https://github.com/kubernetes/kubernetes/pull/115451), [@zhucan](https://github.com/zhucan)) [SIG Storage and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  3. samples/addons/kiali.yaml

            - name: kiali-cabundle
              mountPath: "/kiali-cabundle"
            resources:
              limits:
                memory: 1Gi
              requests:
                cpu: 10m
                memory: 64Mi
          volumes:
          - name: kiali-configuration
            configMap:
              name: kiali
          - name: kiali-cert
            secret:
              secretName: istio.kiali-service-account
              optional: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.29.md

    - Fixed attaching volumes after detach errors. Now volumes that failed to detach are not treated as attached. Kubernetes will make sure they are fully attached before they can be used by pods. ([#120595](https://github.com/kubernetes/kubernetes/pull/120595), [@jsafrane](https://github.com/jsafrane))...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers_test.go

    		},
    		{
    			// Test name, num of containers, restarts, container ready status
    			pvc: api.PersistentVolumeClaim{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "test4",
    				},
    				Spec: api.PersistentVolumeClaimSpec{
    					VolumeName:       "my-volume",
    					StorageClassName: &myScn,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top