Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 60 for Implementation (0.29 sec)

  1. pkg/volume/volume.go

    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    )
    
    // Volume represents a directory used by pods or hosts on a node. All method
    // implementations of methods in the volume interface must be idempotent.
    type Volume interface {
    	// GetPath returns the path to which the volume should be mounted for the
    	// pod.
    	GetPath() string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. pkg/volume/fc/fc.go

    		v1.ReadWriteOnce,
    		v1.ReadOnlyMany,
    	}
    }
    
    func (plugin *fcPlugin) NewMounter(spec *volume.Spec, pod *v1.Pod, _ volume.VolumeOptions) (volume.Mounter, error) {
    	// Inject real implementations here, test through the internal function.
    	return plugin.newMounterInternal(spec, pod.UID, &fcUtil{}, plugin.host.GetMounter(plugin.GetPluginName()), plugin.host.GetExec(plugin.GetPluginName()))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/certificates/v1/types.go

    	// validity duration so a client must check the delta between the notBefore and
    	// and notAfter fields in the issued certificate to determine the actual duration.
    	//
    	// The v1.22+ in-tree implementations of the well-known Kubernetes signers will
    	// honor this field as long as the requested duration is not greater than the
    	// maximum duration they will honor per the --cluster-signing-duration CLI
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. pkg/volume/plugins.go

    // for emptiness.  Most attributes of the template will be correct for most
    // plugin implementations.  The following attributes can be overridden per
    // plugin via configuration:
    //
    //  1. pod.Spec.Volumes[0].VolumeSource must be overridden.  Recycler
    //     implementations without a valid VolumeSource will fail.
    //  2. pod.GenerateName helps distinguish recycler pods by name.  Recommended.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  5. pkg/volume/util/util.go

    			return false
    		}
    	}
    
    	// Only if this volume is a persistent volume, we have reliable information on whether it's allowed or not to
    	// multi-attach. We trust in the individual volume implementations to not allow unsupported access modes
    	if volumeSpec.PersistentVolume != nil {
    		// Check for persistent volume types which do not fail when trying to multi-attach
    		if len(volumeSpec.PersistentVolume.Spec.AccessModes) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    	OptionsExternalVersion *schema.GroupVersion
    	// MetaGroupVersion defaults to "meta.k8s.io/v1" and is the scheme group version used to decode
    	// common API implementations like ListOptions. Future changes will allow this to vary by group
    	// version (for when the inevitable meta/v2 group emerges).
    	MetaGroupVersion *schema.GroupVersion
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  7. pkg/volume/emptydir/empty_dir.go

    		MetricsProvider: volume.NewMetricsDu(getPath(pod.UID, spec.Name(), plugin.host)),
    	}, nil
    }
    
    func (plugin *emptyDirPlugin) NewUnmounter(volName string, podUID types.UID) (volume.Unmounter, error) {
    	// Inject real implementations here, test through the internal function.
    	return plugin.newUnmounterInternal(volName, podUID, plugin.host.GetMounter(plugin.GetPluginName()), &realMountDetector{plugin.host.GetMounter(plugin.GetPluginName())})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/networking/v1/types.go

    	//   matches /foo/bar/baz, but does not match /foo/barbaz).
    	// * ImplementationSpecific: Interpretation of the Path matching is up to
    	//   the IngressClass. Implementations can treat this as a separate PathType
    	//   or treat it identically to Prefix or Exact path types.
    	// Implementations are required to support all path types.
    	PathType *PathType `json:"pathType" protobuf:"bytes,3,opt,name=pathType"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  9. cluster/gce/upgrade.sh

      #                 compatible way?
      write-linux-node-env
    
      # TODO(zmerlynn): Get configure-vm script from ${version}. (Must plumb this
      #                 through all create-linux-node-instance-template implementations).
      local template_name
      template_name=$(get-template-name-from-version "${SANITIZED_VERSION}" "${NODE_INSTANCE_PREFIX}")
      create-linux-node-instance-template "${template_name}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/devicemanager/manager.go

    	}
    
    	manager.server = server
    	manager.checkpointdir, _ = filepath.Split(server.SocketPath())
    
    	// The following structures are populated with real implementations in manager.Start()
    	// Before that, initializes them to perform no-op operations.
    	manager.activePods = func() []*v1.Pod { return []*v1.Pod{} }
    	manager.sourcesReady = &sourcesReadyStub{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
Back to top