Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for binaryPath (0.28 sec)

  1. pkg/apis/core/validation/validation.go

    		}
    		// check if we have a duplicate key in the other bag
    		if _, isValue := cfg.BinaryData[key]; isValue {
    			msg := "duplicate of key present in binaryData"
    			allErrs = append(allErrs, field.Invalid(field.NewPath("data").Key(key), key, msg))
    		}
    		totalSize += len(value)
    	}
    	for key, value := range cfg.BinaryData {
    		for _, msg := range validation.IsConfigMapKey(key) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/core/v1/generated.proto

      // Values with non-UTF-8 byte sequences must use the BinaryData field.
      // The keys stored in Data must not overlap with the keys in
      // the BinaryData field, this is enforced during validation process.
      // +optional
      map<string, string> data = 2;
    
      // BinaryData contains the binary data.
      // Each key must consist of alphanumeric characters, '-', '_' or '.'.
      // BinaryData can contain byte sequences that are not in the UTF-8 range.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	// Values with non-UTF-8 byte sequences must use the BinaryData field.
    	// The keys stored in Data must not overlap with the keys in
    	// the BinaryData field, this is enforced during validation process.
    	// +optional
    	Data map[string]string
    
    	// BinaryData contains the binary data.
    	// Each key must consist of alphanumeric characters, '-', '_' or '.'.
    	// BinaryData can contain byte sequences that are not in the UTF-8 range.
    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/types_swagger_doc_generated.go

    	"binaryData": "BinaryData contains the binary data. Each key must consist of alphanumeric characters, '-', '_' or '.'. BinaryData can contain byte sequences that are not in the UTF-8 range. The keys stored in BinaryData must not overlap with the ones in the Data field, this is enforced...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// BinaryData can contain byte sequences that are not in the UTF-8 range.
    	// The keys stored in BinaryData must not overlap with the ones in
    	// the Data field, this is enforced during validation process.
    	// Using this field will require 1.10+ apiserver and
    	// kubelet.
    	// +optional
    	BinaryData map[string][]byte `json:"binaryData,omitempty" protobuf:"bytes,3,rep,name=binaryData"`
    }
    
    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. staging/src/k8s.io/api/core/v1/generated.proto

      // Values with non-UTF-8 byte sequences must use the BinaryData field.
      // The keys stored in Data must not overlap with the keys in
      // the BinaryData field, this is enforced during validation process.
      // +optional
      map<string, string> data = 2;
    
      // BinaryData contains the binary data.
      // Each key must consist of alphanumeric characters, '-', '_' or '.'.
      // BinaryData can contain byte sequences that are not in the UTF-8 range.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. pkg/apis/core/v1/zz_generated.conversion.go

    	out.ObjectMeta = in.ObjectMeta
    	out.Immutable = (*bool)(unsafe.Pointer(in.Immutable))
    	out.Data = *(*map[string]string)(unsafe.Pointer(&in.Data))
    	out.BinaryData = *(*map[string][]byte)(unsafe.Pointer(&in.BinaryData))
    	return nil
    }
    
    // Convert_v1_ConfigMap_To_core_ConfigMap is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.10.md

    netes/pull/60301), [@tnozicka](https://github.com/tnozicka))
    
    * ConfigMap objects now support binary data via a new `binaryData` field. When using `kubectl create configmap --from-file`, files containing non-UTF8 data will be placed in this new field in order to preserve the non-UTF8 data. Note that kubectl's `--append-hash` feature doesn't take `binaryData` into account. Use of this feature requires 1.10+ apiserver and kubelets. ([#57938](https://github.com/kubernetes/kubernetes/pull/57938),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.22.md

    - Added BinaryData description to `kubectl describe` command. ([#100568](https://github.com/kubernetes/kubernetes/pull/100568), [@lauchokyip](https://github.com/lauchokyip))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.16.md

    * kubectl get did not correctly count the number of binaryData keys when listing config maps. ([#80827](https://github.com/kubernetes/kubernetes/pull/80827), [@smarterclayton](https://github.com/smarterclayton))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
Back to top