Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 120 for Implementation (0.36 sec)

  1. cmd/kubelet/app/plugins.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package app
    
    // This file exists to force the desired plugin implementations to be linked.
    import (
    	"k8s.io/component-base/featuregate"
    	"k8s.io/utils/exec"
    
    	// Volume plugins
    	"k8s.io/kubernetes/pkg/volume"
    	"k8s.io/kubernetes/pkg/volume/configmap"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 21:09:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. 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)
  3. api/openapi-spec/swagger.json

              "type": "string"...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  4. 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)
  5. CHANGELOG/CHANGELOG-1.31.md

    - Moved remote CRI implementation from kubelet to `k8s.io/cri-client` repository. ([#124634](https://github.com/kubernetes/kubernetes/pull/124634), [@saschagrunert](https://github.com/saschagrunert)) [SIG Node, Release and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.27.md

      - `service.kubernetes.io/topology-aware-hints` annotation has been deprecated.
      - kube-proxy now accepts any value that is not "disabled" for these annotations, enabling custom implementation-specific and/or future built-in heuristics to be used. ([#116522](https://github.com/kubernetes/kubernetes/pull/116522), [@robscott](https://github.com/robscott)) [SIG Apps, Network 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)
  7. pkg/kubeapiserver/options/plugins.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package options
    
    // This file exists to force the desired plugin implementations to be linked.
    // This should probably be part of some configuration fed into the build for a
    // given binary target.
    import (
    	validatingadmissionpolicy "k8s.io/apiserver/pkg/admission/plugin/policy/validating"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 17:20:46 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top