Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for ConfigMapProjection (0.47 sec)

  1. pkg/apis/core/v1/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.ConfigMapProjection)(nil), (*core.ConfigMapProjection)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_ConfigMapProjection_To_core_ConfigMapProjection(a.(*v1.ConfigMapProjection), b.(*core.ConfigMapProjection), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  2. pkg/apis/core/zz_generated.deepcopy.go

    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConfigMapProjection.
    func (in *ConfigMapProjection) DeepCopy() *ConfigMapProjection {
    	if in == nil {
    		return nil
    	}
    	out := new(ConfigMapProjection)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConfigMapProjection.
    func (in *ConfigMapProjection) DeepCopy() *ConfigMapProjection {
    	if in == nil {
    		return nil
    	}
    	out := new(ConfigMapProjection)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.pb.go

    func (m *ConfigMapProjection) Reset()      { *m = ConfigMapProjection{} }
    func (*ConfigMapProjection) ProtoMessage() {}
    func (*ConfigMapProjection) Descriptor() ([]byte, []int) {
    	return fileDescriptor_6c07b07c062484ab, []int{27}
    }
    func (m *ConfigMapProjection) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  5. pkg/api/pod/util_test.go

    			Volumes: []api.Volume{{
    				VolumeSource: api.VolumeSource{
    					Projected: &api.ProjectedVolumeSource{
    						Sources: []api.VolumeProjection{{
    							ConfigMap: &api.ConfigMapProjection{
    								LocalObjectReference: api.LocalObjectReference{
    									Name: "Spec.Volumes[*].VolumeSource.Projected.Sources[*].ConfigMap"}}}}}}}, {
    				VolumeSource: api.VolumeSource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    	// +optional
    	DefaultMode *int32
    	// Specify whether the ConfigMap or its keys must be defined
    	// +optional
    	Optional *bool
    }
    
    // ConfigMapProjection adapts a ConfigMap into a projected volume.
    //
    // The contents of the target ConfigMap's Data field will be presented in a
    // projected volume as files using the keys in the Data field as the file names,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

    // unless the items element is populated with specific mappings of keys to paths.
    // Note that this is identical to a configmap volume source without the default
    // mode.
    message ConfigMapProjection {
      optional LocalObjectReference localObjectReference = 1;
    
      // items if unspecified, each key-value pair in the Data field of the referenced
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types.go

    // unless the items element is populated with specific mappings of keys to paths.
    // Note that this is identical to a configmap volume source without the default
    // mode.
    type ConfigMapProjection struct {
    	LocalObjectReference `json:",inline" protobuf:"bytes,1,opt,name=localObjectReference"`
    	// items if unspecified, each key-value pair in the Data field of the referenced
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__batch__v1_openapi.json

              }
            },
            "required": [
              "key"
            ],
            "type": "object",
            "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)
  10. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"optional": "optional specify whether the ConfigMap or its keys must be defined",
    }
    
    func (ConfigMapProjection) SwaggerDoc() map[string]string {
    	return map_ConfigMapProjection
    }
    
    var map_ConfigMapVolumeSource = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
Back to top