Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 179 for DefaultMode (0.36 sec)

  1. common/scripts/metallb-native.yaml

            key: node-role.kubernetes.io/control-plane
            operator: Exists
          volumes:
          - name: memberlist
            secret:
              defaultMode: 420
              secretName: memberlist
          - configMap:
              defaultMode: 256
              name: metallb-excludel2
            name: metallb-excludel2
    ---
    apiVersion: admissionregistration.k8s.io/v1
    kind: ValidatingWebhookConfiguration
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  2. plugin/pkg/admission/serviceaccount/admission.go

    // TokenVolumeSource returns the projected volume source for service account token.
    func TokenVolumeSource() *api.ProjectedVolumeSource {
    	return &api.ProjectedVolumeSource{
    		// explicitly set default value, see #104464
    		DefaultMode: pointer.Int32(corev1.ProjectedVolumeSourceDefaultMode),
    		Sources: []api.VolumeProjection{
    			{
    				ServiceAccountToken: &api.ServiceAccountTokenProjection{
    					Path:              "token",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 17:49:30 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. pkg/apis/core/validation/validation_test.go

    		}, {
    			name: "secret with invalid positive defaultMode",
    			vol: core.Volume{
    				Name: "secret",
    				VolumeSource: core.VolumeSource{
    					Secret: &core.SecretVolumeSource{
    						SecretName:  "s",
    						DefaultMode: utilpointer.Int32(01000),
    					},
    				},
    			},
    			errs: []verr{{
    				etype: field.ErrorTypeInvalid,
    				field: "secret.defaultMode",
    			}},
    		}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. plugin/pkg/admission/serviceaccount/admission_test.go

    					{DownwardAPI: &api.DownwardAPIProjection{Items: []api.DownwardAPIVolumeFile{{Path: "namespace", FieldRef: &api.ObjectFieldSelector{APIVersion: "v1", FieldPath: "metadata.namespace"}}}}},
    				},
    				DefaultMode: utilpointer.Int32(0644),
    			},
    		},
    	}}
    	expectedVolumeMounts := []api.VolumeMount{{
    		Name:      "cleared",
    		ReadOnly:  true,
    		MountPath: "/var/run/secrets/kubernetes.io/serviceaccount",
    	}}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 17:49:30 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  9. 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)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultNode.java

    import org.eclipse.aether.util.graph.transformer.ConflictResolver;
    
    public class DefaultNode extends AbstractNode {
    
        protected final @Nonnull InternalSession session;
        protected final @Nonnull org.eclipse.aether.graph.DependencyNode node;
        protected final boolean verbose;
    
        public DefaultNode(
                @Nonnull InternalSession session, @Nonnull org.eclipse.aether.graph.DependencyNode node, boolean verbose) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top