Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for projected (0.22 sec)

  1. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. CHANGELOG/CHANGELOG-1.13.md

    ## Changelog since v1.13.1
    
    ### Other notable changes
    
    * client-go: shortens refresh period for token files to 1 minute to ensure auto-rotated projected service account tokens are read frequently enough. ([#72437](https://github.com/kubernetes/kubernetes/pull/72437), [@liggitt](https://github.com/liggitt))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  9. 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)
  10. CHANGELOG/CHANGELOG-1.10.md

    * change default azure file mount permission to 0777 ([#69854](https://github.com/kubernetes/kubernetes/pull/69854), [@andyzhangx](https://github.com/andyzhangx))
    * Verify invalid secret/configmap/projected volumes before calling setup ([#68691](https://github.com/kubernetes/kubernetes/pull/68691), [@gnufied](https://github.com/gnufied))
    
    
    
    # v1.10.9
    
    [Documentation](https://docs.k8s.io)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
Back to top