Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for projected (0.39 sec)

  1. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"":                    "Projection that may be projected along with other supported volume types",
    	"secret":              "secret information about the secret data to project",
    	"downwardAPI":         "downwardAPI information about the downwardAPI data to project",
    	"configMap":           "configMap information about the configMap data to project",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	ConfigMap *ConfigMapProjection
    	// information about the serviceAccountToken data to project
    	ServiceAccountToken *ServiceAccountTokenProjection
    	// information about the ClusterTrustBundle data to project
    	ClusterTrustBundle *ClusterTrustBundleProjection
    }
    
    // KeyToPath maps a string key to a path within a volume.
    type KeyToPath struct {
    	// The key to project.
    	Key string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/generated.proto

      optional NodeSelector required = 1;
    }
    
    // Projection that may be projected along with other supported volume types
    message VolumeProjection {
      // secret information about the secret data to project
      // +optional
      optional SecretProjection secret = 1;
    
      // downwardAPI information about the downwardAPI data to project
      // +optional
      optional DownwardAPIProjection downwardAPI = 2;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	PhotonPersistentDisk *PhotonPersistentDiskVolumeSource `json:"photonPersistentDisk,omitempty" protobuf:"bytes,23,opt,name=photonPersistentDisk"`
    	// projected items for all in one resources secrets, configmaps, and downward API
    	Projected *ProjectedVolumeSource `json:"projected,omitempty" protobuf:"bytes,26,opt,name=projected"`
    	// portworxVolume represents a portworx volume attached and mounted on kubelets host machine
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__batch__v1_openapi.json

            "x-kubernetes-map-type": "atomic"
          },
          "io.k8s.api.core.v1.ConfigMapProjection": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  6. pkg/apis/core/validation/validation.go

    		}
    	}
    	if source.Projected != nil {
    		if numVolumes > 0 {
    			allErrs = append(allErrs, field.Forbidden(fldPath.Child("projected"), "may not specify more than 1 volume type"))
    		} else {
    			numVolumes++
    			allErrs = append(allErrs, validateProjectedVolumeSource(source.Projected, fldPath.Child("projected"), opts)...)
    		}
    	}
    	if source.ScaleIO != nil {
    		if numVolumes > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  7. pkg/apis/core/v1/zz_generated.conversion.go

    	if in.Projected != nil {
    		in, out := &in.Projected, &out.Projected
    		*out = new(core.ProjectedVolumeSource)
    		if err := Convert_v1_ProjectedVolumeSource_To_core_ProjectedVolumeSource(*in, *out, s); err != nil {
    			return err
    		}
    	} else {
    		out.Projected = nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  8. ChangeLog.md

    - [`KT-57150`](https://youtrack.jetbrains.com/issue/KT-57150) Introduce common protected property AbstractMutableList.modCount
    - [`KT-57151`](https://youtrack.jetbrains.com/issue/KT-57151) Introduce common protected function AbstractMutableList.removeRange
    - [`KT-66102`](https://youtrack.jetbrains.com/issue/KT-66102) Constructor-like function for creating AutoCloseable instances
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.30.md

    - Kube-scheduler implemented scheduling hints for the `NodeResourceFit` plugin. The scheduling hints allowed the scheduler to only retry scheduling a Pod that had been previously rejected by the `NodeResourceFit` plugin if a new Node or a...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.27.md

    - The scheduling queue didn't notice any extenders' failures, it could miss some cluster events,
      and it could end up Pods rejected by Extenders stuck in unschedulable pod pool in 5min in the worst-case scenario.
      Now, the scheduling queue notices extenders' failures and requeue Pods rejected by Extenders appropriately. ([#122044](https://github.com/kubernetes/kubernetes/pull/122044), [@sanposhiho](https://github.com/sanposhiho)) [SIG Scheduling]
    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