Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for ConfigMapProjection (0.35 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. plugin/pkg/admission/serviceaccount/admission.go

    				ServiceAccountToken: &api.ServiceAccountTokenProjection{
    					Path:              "token",
    					ExpirationSeconds: serviceaccount.WarnOnlyBoundTokenExpirationSeconds,
    				},
    			},
    			{
    				ConfigMap: &api.ConfigMapProjection{
    					LocalObjectReference: api.LocalObjectReference{
    						Name: "kube-root-ca.crt",
    					},
    					Items: []api.KeyToPath{
    						{
    							Key:  "ca.crt",
    							Path: "ca.crt",
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 17:49:30 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. plugin/pkg/admission/serviceaccount/admission_test.go

    			Projected: &api.ProjectedVolumeSource{
    				Sources: []api.VolumeProjection{
    					{ServiceAccountToken: &api.ServiceAccountTokenProjection{ExpirationSeconds: 3607, Path: "token"}},
    					{ConfigMap: &api.ConfigMapProjection{LocalObjectReference: api.LocalObjectReference{Name: "kube-root-ca.crt"}, Items: []api.KeyToPath{{Key: "ca.crt", Path: "ca.crt"}}}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 17:49:30 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            }
          },
          "required": [
            "namespace",
            "name",
            "kubeletConfigKey"
          ],
          "type": "object"
        },
        "io.k8s.api.core.v1.ConfigMapProjection": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  10. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
Back to top