Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for DefaultMode (0.8 sec)

  1. staging/src/k8s.io/api/core/v1/types.go

    	// This might be in conflict with other options that affect the file
    	// mode, like fsGroup, and the result can be other mode bits set.
    	// +optional
    	DefaultMode *int32 `json:"defaultMode,omitempty" protobuf:"bytes,3,opt,name=defaultMode"`
    	// optional field specify whether the Secret or its keys must be defined
    	// +optional
    	Optional *bool `json:"optional,omitempty" protobuf:"varint,4,opt,name=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)
  2. pkg/apis/core/v1/zz_generated.conversion.go

    		return err
    	}
    	out.Items = *(*[]core.KeyToPath)(unsafe.Pointer(&in.Items))
    	out.DefaultMode = (*int32)(unsafe.Pointer(in.DefaultMode))
    	out.Optional = (*bool)(unsafe.Pointer(in.Optional))
    	return nil
    }
    
    // Convert_v1_ConfigMapVolumeSource_To_core_ConfigMapVolumeSource 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)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      // the volume setup will error unless it is marked optional. Paths must be
      // relative and may not contain the '..' path or start with '..'.
      // +optional
      repeated KeyToPath items = 2;
    
      // defaultMode is optional: mode bits used to set permissions on created files by default.
      // Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511.
    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/types_swagger_doc_generated.go

    	"defaultMode": "defaultMode is optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode...
    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/generated.proto

      // relative and may not contain the '..' path or start with '..'.
      // +optional
      // +listType=atomic
      repeated KeyToPath items = 2;
    
      // defaultMode is optional: mode bits used to set permissions on created files by default.
      // Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. pkg/apis/core/validation/validation.go

    	if len(secretSource.SecretName) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("secretName"), ""))
    	}
    
    	secretMode := secretSource.DefaultMode
    	if secretMode != nil && (*secretMode > 0777 || *secretMode < 0) {
    		allErrs = append(allErrs, field.Invalid(fldPath.Child("defaultMode"), *secretMode, fileModeErrorMsg))
    	}
    
    	itemsPath := fldPath.Child("items")
    	for i, kp := range secretSource.Items {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    	// Directories within the path are not affected by this setting.
    	// This might be in conflict with other options that affect the file
    	// mode, like fsGroup, and the result can be other mode bits set.
    	// +optional
    	DefaultMode *int32
    	// Specify whether the Secret or its key must be defined
    	// +optional
    	Optional *bool
    }
    
    // SecretProjection adapts a secret into a projected volume.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__batch__v1_openapi.json

            "properties": {
              "defaultMode": {
    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.23.md

    - Fixes an issue where an admission webhook can observe a v1 Pod object that does not have the `defaultMode` field set in the injected service account token volume in kube-api-server. ([#104523](https://github.com/kubernetes/kubernetes/pull/104523), [@liggitt](https://github.com/liggitt))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
Back to top