Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for Gid (1.33 sec)

  1. pkg/volume/util/util.go

    	MountsInGlobalPDPath = "mounts"
    
    	// VolumeGidAnnotationKey is the of the annotation on the PersistentVolume
    	// object that specifies a supplemental GID.
    	VolumeGidAnnotationKey = "pv.beta.kubernetes.io/gid"
    
    	// VolumeDynamicallyCreatedByKey is the key of the annotation on PersistentVolume
    	// object created dynamically
    	VolumeDynamicallyCreatedByKey = "kubernetes.io/createdby"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  2. pkg/volume/util/operationexecutor/operation_executor.go

    	// PluginIsDeviceMountable indicates that the plugin for this volume implements
    	// the volume.DeviceMounter interface
    	PluginIsDeviceMountable bool
    
    	// VolumeGidValue contains the value of the GID annotation, if present.
    	VolumeGidValue string
    
    	// DevicePath contains the path on the node where the volume is attached.
    	// For non-attachable volumes this is empty.
    	DevicePath string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. pkg/volume/local/local.go

    			}
    			if fsGroupNew != fsGroupOld {
    				m.plugin.recorder.Eventf(m.pod, v1.EventTypeWarning, events.WarnAlreadyMountedVolume, "The requested fsGroup is %d, but the volume %s has GID %d. The volume may not be shareable.", fsGroupNew, m.volName, fsGroupOld)
    			}
    		}
    
    	}
    
    	if runtime.GOOS != "windows" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  4. build/common.sh

      # output only directories and things that are not necessary like the git
      # directory and generated files. The '- /' filter prevents rsync
      # from trying to set the uid/gid/perms on the root of the sync tree.
      # As an exception, we need to sync generated files in staging/, because
      # they will not be re-generated by 'make'. Note that the 'H' filtered files
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/cache/desired_state_of_world.go

    	// pluginIsDeviceMountable indicates that the plugin for this volume implements
    	// the volume.DeviceMounter interface
    	pluginIsDeviceMountable bool
    
    	// volumeGidValue contains the value of the GID annotation, if present.
    	volumeGidValue string
    
    	// reportedInUse indicates that the volume was successfully added to the
    	// VolumesInUse field in the node's status.
    	reportedInUse bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. pkg/kube/inject/webhook.go

    			// Should not happen
    			log.Warn("Could not find the istio-proxy container")
    			return
    		}
    		*sidecar.SecurityContext.RunAsUser = 0
    	}
    
    	// Make sure the validation container runs with the same uid/gid as the proxy (init container is untouched, it must run with 0)
    	if !tproxy && initContainer.Name == ValidationContainerName {
    		if initContainer.SecurityContext == nil {
    			initContainer.SecurityContext = &corev1.SecurityContext{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
Back to top