Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for PersistentVolumeClaim (0.25 sec)

  1. pkg/scheduler/internal/queue/events.go

    	PvcAdd = framework.ClusterEvent{Resource: framework.PersistentVolumeClaim, ActionType: framework.Add, Label: "PvcAdd"}
    	// PvcUpdate is the event when a persistent volume claim is updated in the cluster.
    	PvcUpdate = framework.ClusterEvent{Resource: framework.PersistentVolumeClaim, ActionType: framework.Update, Label: "PvcUpdate"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/types.go

    	// See: https://github.com/kubernetes/kubernetes/issues/110175
    	Node                    GVK = "Node"
    	PersistentVolume        GVK = "PersistentVolume"
    	PersistentVolumeClaim   GVK = "PersistentVolumeClaim"
    	CSINode                 GVK = "storage.k8s.io/CSINode"
    	CSIDriver               GVK = "storage.k8s.io/CSIDriver"
    	CSIStorageCapacity      GVK = "storage.k8s.io/CSIStorageCapacity"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  3. samples/addons/loki.yaml

                    path: "config.yaml"
            - name: runtime-config
              configMap:
                name: loki-runtime
      volumeClaimTemplates:
        - apiVersion: v1
          kind: PersistentVolumeClaim
          metadata:
            name: storage
          spec:
            accessModes:
              - ReadWriteOnce
            resources:
              requests:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers_test.go

    	volumeMode := api.PersistentVolumeFilesystem
    	myVacn := "my-vacn"
    	myScn := "my-scn"
    	tests := []struct {
    		pvc      api.PersistentVolumeClaim
    		expected []metav1.TableRow
    	}{
    		{
    			// Test name, num of containers, restarts, container ready status
    			pvc: api.PersistentVolumeClaim{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "test1",
    				},
    				Spec: api.PersistentVolumeClaimSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers.go

    		if err != nil {
    			return nil, err
    		}
    		rows = append(rows, r...)
    	}
    	return rows, nil
    }
    
    func printPersistentVolumeClaim(obj *api.PersistentVolumeClaim, options printers.GenerateOptions) ([]metav1.TableRow, error) {
    	row := metav1.TableRow{
    		Object: runtime.RawExtension{Object: obj},
    	}
    
    	phase := obj.Status.Phase
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.27.md

    - Migrated the volume attach/detach controller (within `kube-controller-manager`) to use [contextual logging](https://k8s.io/docs/concepts/cluster-administration/system-logs/#contextual-logging).
      Migrated the `PersistentVolumeClaim` protection controller (within `kube-controller-manager`) to use [contextual logging](https://k8s.io/docs/concepts/cluster-administration/system-logs/#contextual-logging).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
Back to top