Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 62 for ecsi (0.14 sec)

  1. pkg/volume/util/operationexecutor/fakegenerator.go

    */
    
    package operationexecutor
    
    import (
    	"time"
    
    	"k8s.io/klog/v2"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/resource"
    	"k8s.io/apimachinery/pkg/types"
    	csitrans "k8s.io/csi-translation-lib"
    	"k8s.io/kubernetes/pkg/volume"
    	"k8s.io/kubernetes/pkg/volume/util/hostutil"
    	volumetypes "k8s.io/kubernetes/pkg/volume/util/types"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1.VolumeAttachment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. src/runtime/defs_linux_386.go

    	gs            uint16
    	__gsh         uint16
    	fs            uint16
    	__fsh         uint16
    	es            uint16
    	__esh         uint16
    	ds            uint16
    	__dsh         uint16
    	edi           uint32
    	esi           uint32
    	ebp           uint32
    	esp           uint32
    	ebx           uint32
    	edx           uint32
    	ecx           uint32
    	eax           uint32
    	trapno        uint32
    	err           uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. manifests/charts/ztunnel/values.yaml

      # Set to `type: RuntimeDefault` to use the default profile if available.
      seLinuxOptions: {}
      # TODO Ambient inpod - for OpenShift, set to the following to get writable sockets in hostmounts to work, eventually consider CSI driver instead
      #seLinuxOptions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:30 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. src/runtime/defs_darwin_amd64.go

    	ss        regs64
    	fs        floatstate64
    	pad_cgo_0 [4]byte
    }
    
    type regs32 struct {
    	eax    uint32
    	ebx    uint32
    	ecx    uint32
    	edx    uint32
    	edi    uint32
    	esi    uint32
    	ebp    uint32
    	esp    uint32
    	ss     uint32
    	eflags uint32
    	eip    uint32
    	cs     uint32
    	ds     uint32
    	es     uint32
    	fs     uint32
    	gs     uint32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. pkg/volume/util/types/types.go

    	}
    	// Handle panic, if any, from operationFunc()
    	defer runtime.RecoverFromPanic(&detailedErr)
    
    	context = o.OperationFunc()
    	return context.EventErr, context.DetailedErr
    }
    
    // FailedPrecondition error indicates CSI operation returned failed precondition
    // error
    type FailedPrecondition struct {
    	msg string
    }
    
    func (err *FailedPrecondition) Error() string {
    	return err.msg
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 17:23:56 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/files/gateway-injection-template.yaml

      volumes:
      - emptyDir: {}
        name: workload-socket
      - emptyDir: {}
        name: credential-socket
      {{- if eq .Values.global.caName "GkeWorkloadCertificate" }}
      - name: gke-workload-certificate
        csi:
          driver: workloadcertificates.security.cloud.google.com
      {{- else}}
      - emptyDir: {}
        name: workload-certs
      {{- end }}
      # SDS channel between istioagent and Envoy
      - emptyDir:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. manifests/charts/istiod-remote/files/gateway-injection-template.yaml

      volumes:
      - emptyDir: {}
        name: workload-socket
      - emptyDir: {}
        name: credential-socket
      {{- if eq .Values.global.caName "GkeWorkloadCertificate" }}
      - name: gke-workload-certificate
        csi:
          driver: workloadcertificates.security.cloud.google.com
      {{- else}}
      - emptyDir: {}
        name: workload-certs
      {{- end }}
      # SDS channel between istioagent and Envoy
      - emptyDir:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. pkg/registry/storage/csinode/strategy_test.go

    			"invalid driver name",
    			&storage.CSINode{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "foo",
    				},
    				Spec: storage.CSINodeSpec{
    					Drivers: []storage.CSINodeDriver{
    						{
    							Name:         "$csi-driver@",
    							NodeID:       "valid-node",
    							TopologyKeys: []string{"company.com/zone1", "company.com/zone2"},
    							Allocatable:  &storage.VolumeNodeResources{Count: ptr.To[int32](10)},
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 09:24:44 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. pkg/api/persistentvolume/util_test.go

    			}
    		})
    	}
    }
    
    func specWithVACName(vacName *string) *api.PersistentVolumeSpec {
    	pvSpec := &api.PersistentVolumeSpec{
    		PersistentVolumeSource: api.PersistentVolumeSource{
    			CSI: &api.CSIPersistentVolumeSource{
    				Driver:       "com.google.gcepd",
    				VolumeHandle: "foobar",
    			},
    		},
    	}
    
    	if vacName != nil {
    		pvSpec.VolumeAttributesClassName = vacName
    	}
    	return pvSpec
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top