Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ConfigMapProjection (0.3 sec)

  1. 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)
  2. pkg/api/v1/pod/util_test.go

    			Volumes: []v1.Volume{{
    				VolumeSource: v1.VolumeSource{
    					Projected: &v1.ProjectedVolumeSource{
    						Sources: []v1.VolumeProjection{{
    							ConfigMap: &v1.ConfigMapProjection{
    								LocalObjectReference: v1.LocalObjectReference{
    									Name: "Spec.Volumes[*].VolumeSource.Projected.Sources[*].ConfigMap"}}}}}}}, {
    				VolumeSource: v1.VolumeSource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 32.1K bytes
    - Viewed (0)
  3. 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)
  4. pkg/volume/projected/projected_test.go

    func makeProjection(name string, defaultMode *int32, kind string) *v1.ProjectedVolumeSource {
    	var item v1.VolumeProjection
    
    	switch kind {
    	case "configMap":
    		item = v1.VolumeProjection{
    			ConfigMap: &v1.ConfigMapProjection{
    				LocalObjectReference: v1.LocalObjectReference{Name: name},
    			},
    		}
    	case "secret":
    		item = v1.VolumeProjection{
    			Secret: &v1.SecretProjection{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 40.5K bytes
    - Viewed (0)
Back to top