Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 190 for volumeID (0.19 sec)

  1. samples/bookinfo/platform/kube/bookinfo.yaml

            ports:
            - containerPort: 9080
            volumeMounts:
            - name: tmp
              mountPath: /tmp
            - name: wlp-output
              mountPath: /opt/ibm/wlp/output
          volumes:
          - name: wlp-output
            emptyDir: {}
          - name: tmp
            emptyDir: {}
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: reviews-v2
      labels:
        app: reviews
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. pkg/volume/util/selinux.go

    func SupportsSELinuxContextMount(volumeSpec *volume.Spec, volumePluginMgr *volume.VolumePluginMgr) (bool, error) {
    	plugin, _ := volumePluginMgr.FindPluginBySpec(volumeSpec)
    	if plugin != nil {
    		return plugin.SupportsSELinuxContextMount(volumeSpec)
    	}
    
    	return false, nil
    }
    
    // VolumeSupportsSELinuxMount returns true if given volume access mode can support mount with SELinux mount options.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 14:40:21 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. pkg/volume/util/operationexecutor/fakegenerator.go

    	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"
    )
    
    // fakeOGCounter is a simple OperationGenerator which counts number of times a function
    // has been caled
    type fakeOGCounter struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. pkg/volume/util/operationexecutor/node_expander_test.go

    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/volume"
    	volumetesting "k8s.io/kubernetes/pkg/volume/testing"
    )
    
    func TestNodeExpander(t *testing.T) {
    	nodeResizeFailed := v1.PersistentVolumeClaimNodeResizeFailed
    
    	nodeResizePending := v1.PersistentVolumeClaimNodeResizePending
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. src/internal/filepathlite/path_windows.go

    	if l == 0 {
    		return false
    	}
    	// If the volume name starts with a double slash, this is an absolute path.
    	if IsPathSeparator(path[0]) && IsPathSeparator(path[1]) {
    		return true
    	}
    	path = path[l:]
    	if path == "" {
    		return false
    	}
    	return IsPathSeparator(path[0])
    }
    
    // volumeNameLen returns length of the leading volume name on Windows.
    // It returns 0 elsewhere.
    //
    // See:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. cmd/peer-s3-server.go

    				return nil
    			}, index)
    		}
    
    		g.Wait()
    	}
    
    	// Create the quorum lost volume only if its nor makred for delete
    	if !opts.Remove {
    		// Initialize sync waitgroup.
    		g = errgroup.WithNErrs(len(localDrives))
    
    		// Make a volume entry on all underlying storage disks.
    		for index := range localDrives {
    			index := index
    			g.Go(func() error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. doc/next/6-stdlib/99-minor/os/63703.md

    On Windows, [Readlink] no longer tries to normalize volumes
    to drive letters, which was not always even possible.
    This behavior is controlled by the `winreadlinkvolume` setting.
    For Go 1.23, it defaults to `winreadlinkvolume=1`.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 280 bytes
    - Viewed (0)
  8. cmd/xl-storage-format-utils_test.go

    				t.Errorf("hashDeterministicString() = %v, does not want %v", got, want)
    			}
    		})
    	}
    }
    
    func TestGetFileInfoVersions(t *testing.T) {
    	basefi := FileInfo{
    		Volume:           "volume",
    		Name:             "object-name",
    		VersionID:        "756100c6-b393-4981-928a-d49bbc164741",
    		IsLatest:         true,
    		Deleted:          false,
    		TransitionStatus: "",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. pkg/kubelet/runonce_test.go

    	statustest "k8s.io/kubernetes/pkg/kubelet/status/testing"
    	kubeletutil "k8s.io/kubernetes/pkg/kubelet/util"
    	"k8s.io/kubernetes/pkg/kubelet/volumemanager"
    	"k8s.io/kubernetes/pkg/volume"
    	volumetest "k8s.io/kubernetes/pkg/volume/testing"
    	"k8s.io/kubernetes/pkg/volume/util/hostutil"
    	"k8s.io/utils/clock"
    )
    
    func TestRunOnce(t *testing.T) {
    	ctx := context.Background()
    	mockCtrl := gomock.NewController(t)
    	defer mockCtrl.Finish()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 06:59:54 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/volume_host.go

    	authenticationv1 "k8s.io/api/authentication/v1"
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/types"
    	clientset "k8s.io/client-go/kubernetes"
    	"k8s.io/client-go/tools/record"
    	vol "k8s.io/kubernetes/pkg/volume"
    	"k8s.io/kubernetes/pkg/volume/util/subpath"
    )
    
    // VolumeHost interface implementation for PersistentVolumeController.
    
    var _ vol.VolumeHost = &PersistentVolumeController{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top