Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for configmap (0.23 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. CHANGELOG/CHANGELOG-1.6.md

    * Native support for token based bootstrap flow.  This includes signing a well known ConfigMap in the `kube-public` namespace and cleaning out expired tokens. ([#36101](https://github.com/kubernetes/kubernetes/pull/36101), [@jbeda](https://github.com/jbeda))
    
    ### ConfigMap
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.11.md

    * You must now specify `Node.Spec.ConfigSource.ConfigMap.KubeletConfigKey` when using dynamic Kubelet config to tell the Kubelet which key of the `ConfigMap` identifies its config file. ([#59847](https://github.com/kubernetes/kubernetes/pull/59847), [@mtaufen](https://github.com/mtaufen))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.10.md

    ```
    
    If your cluster was installed by kubeadm, you should edit the `featureGates` field in the `kubeadm-config` ConfigMap. You can do this using `kubectl -n kube-system edit cm kubeadm-config` before upgrading. For example:
    
    kubeadm-config Before:
    
    ```
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: kubeadm-config
    data:
      MasterConfiguration: |
        kubeProxy:
          config:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
Back to top