Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for configmap (0.34 sec)

  1. common-protos/k8s.io/api/core/v1/generated.proto

    }
    
    // ConfigMapEnvSource selects a ConfigMap to populate the environment
    // variables with.
    //
    // The contents of the target ConfigMap's Data field will represent the
    // key-value pairs as environment variables.
    message ConfigMapEnvSource {
      // The ConfigMap to select from.
      optional LocalObjectReference localObjectReference = 1;
    
      // Specify whether the ConfigMap must be defined
      // +optional
    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

    }
    
    func (ConfigMapEnvSource) SwaggerDoc() map[string]string {
    	return map_ConfigMapEnvSource
    }
    
    var map_ConfigMapKeySelector = map[string]string{
    	"":         "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 {
    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

    }
    
    // ConfigMapEnvSource selects a ConfigMap to populate the environment
    // variables with.
    //
    // The contents of the target ConfigMap's Data field will represent the
    // key-value pairs as environment variables.
    type ConfigMapEnvSource struct {
    	// The ConfigMap to select from.
    	LocalObjectReference
    	// Specify whether the ConfigMap must be defined
    	// +optional
    	Optional *bool
    }
    
    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

    }
    
    // ConfigMapEnvSource selects a ConfigMap to populate the environment
    // variables with.
    //
    // The contents of the target ConfigMap's Data field will represent the
    // key-value pairs as environment variables.
    message ConfigMapEnvSource {
      // The ConfigMap to select from.
      optional LocalObjectReference localObjectReference = 1;
    
      // Specify whether the ConfigMap must be defined
      // +optional
    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

    	// +k8s:deprecated=apiVersion
    	// +k8s:deprecated=configMapRef,protobuf=1
    
    	// ConfigMap is a reference to a Node's ConfigMap
    	ConfigMap *ConfigMapNodeConfigSource `json:"configMap,omitempty" protobuf:"bytes,2,opt,name=configMap"`
    }
    
    // ConfigMapNodeConfigSource contains the information to reference a ConfigMap as a config source for the Node.
    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. pkg/apis/core/v1/zz_generated.conversion.go

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

    		}
    	}
    	if source.ConfigMap != nil {
    		if numVolumes > 0 {
    			allErrs = append(allErrs, field.Forbidden(fldPath.Child("configMap"), "may not specify more than 1 volume type"))
    		} else {
    			numVolumes++
    			allErrs = append(allErrs, validateConfigMapVolumeSource(source.ConfigMap, fldPath.Child("configMap"))...)
    		}
    	}
    
    	if source.AzureFile != 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. api/openapi-spec/v3/apis__batch__v1_openapi.json

              },
              "configMap": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapVolumeSource"
                  }
                ],
                "description": "configMap represents a configMap that should populate this volume"
              },
              "csi": {
                "allOf": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.8.md

    * Release the kubelet client certificate rotation as beta. ([#51045](https://github.com/kubernetes/kubernetes/pull/51045), [@jcbsmpsn](https://github.com/jcbsmpsn))
    * Adds --append-hash flag to kubectl create configmap/secret, which will append a short hash of the configmap/secret contents to the name during creation. ([#49961](https://github.com/kubernetes/kubernetes/pull/49961), [@mtaufen](https://github.com/mtaufen))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.30.md

    - Kubeadm: fix a regression where the KubeletConfiguration is not properly downloaded during "kubeadm upgrade" commands from the kube-system/kubelet-config ConfigMap, resulting in the local '/var/lib/kubelet/config.yaml' file being written as a defaulted config. ([#124497](https://github.com/kubernetes/kubernetes/pull/124497), [@neolit123](https://github.com/neolit123)) [SIG Cluster Lifecycle]
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
Back to top