Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ConfigMapKeySelector (0.33 sec)

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

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.ConfigMapKeySelector)(nil), (*core.ConfigMapKeySelector)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_ConfigMapKeySelector_To_core_ConfigMapKeySelector(a.(*v1.ConfigMapKeySelector), b.(*core.ConfigMapKeySelector), 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/types.go

    	Resource string
    	// Specifies the output format of the exposed resources, defaults to "1"
    	// +optional
    	Divisor resource.Quantity
    }
    
    // ConfigMapKeySelector selects a key from a ConfigMap.
    type ConfigMapKeySelector struct {
    	// The ConfigMap to select from.
    	LocalObjectReference
    	// The key to select.
    	Key string
    	// Specify whether the ConfigMap or its key must be defined
    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. common-protos/k8s.io/api/core/v1/generated.proto

      // Specify whether the ConfigMap must be defined
      // +optional
      optional bool optional = 2;
    }
    
    // Selects a key from a ConfigMap.
    // +structType=atomic
    message ConfigMapKeySelector {
      // The ConfigMap to select from.
      optional LocalObjectReference localObjectReference = 1;
    
      // The key to select.
      optional string key = 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)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      // Specify whether the ConfigMap must be defined
      // +optional
      optional bool optional = 2;
    }
    
    // Selects a key from a ConfigMap.
    // +structType=atomic
    message ConfigMapKeySelector {
      // The ConfigMap to select from.
      optional LocalObjectReference localObjectReference = 1;
    
      // The key to select.
      optional string key = 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

    	// +optional
    	ResourceFieldRef *ResourceFieldSelector `json:"resourceFieldRef,omitempty" protobuf:"bytes,2,opt,name=resourceFieldRef"`
    	// Selects a key of a ConfigMap.
    	// +optional
    	ConfigMapKeyRef *ConfigMapKeySelector `json:"configMapKeyRef,omitempty" protobuf:"bytes,3,opt,name=configMapKeyRef"`
    	// Selects a key of a secret in the pod's namespace
    	// +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

                "description": "Specify whether the ConfigMap must be defined",
                "type": "boolean"
              }
            },
            "type": "object"
          },
          "io.k8s.api.core.v1.ConfigMapKeySelector": {
            "description": "Selects a key from a ConfigMap.",
            "properties": {
              "key": {
                "default": "",
                "description": "The key to select.",
    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. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"":         "Selects a key from a ConfigMap.",
    	"key":      "The key to select.",
    	"optional": "Specify whether the ConfigMap or its key must be defined",
    }
    
    func (ConfigMapKeySelector) SwaggerDoc() map[string]string {
    	return map_ConfigMapKeySelector
    }
    
    var map_ConfigMapList = map[string]string{
    	"":         "ConfigMapList is a resource containing a list of ConfigMap objects.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation.go

    		}
    	}
    	return allErrs
    }
    
    func validateConfigMapKeySelector(s *core.ConfigMapKeySelector, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    
    	nameFn := ValidateNameFunc(ValidateSecretName)
    	for _, msg := range nameFn(s.Name, false) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top