Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Gid (0.03 sec)

  1. pkg/kubelet/kubelet_pods.go

    			return nil
    		}
    
    		user := &v1.ContainerUser{}
    		if cStatus.User.Linux != nil {
    			user.Linux = &v1.LinuxContainerUser{
    				UID:                cStatus.User.Linux.UID,
    				GID:                cStatus.User.Linux.GID,
    				SupplementalGroups: cStatus.User.Linux.SupplementalGroups,
    			}
    		}
    
    		return user
    	}
    
    	// Fetch old containers statuses from old pod status.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods_test.go

    				Linux: &kubecontainer.LinuxContainerUser{
    					UID:                0,
    					GID:                0,
    					SupplementalGroups: []int64{10},
    				},
    			}),
    			true,
    			expectedContainerStatuses(&v1.ContainerUser{
    				Linux: &v1.LinuxContainerUser{
    					UID:                0,
    					GID:                0,
    					SupplementalGroups: []int64{10},
    				},
    			}),
    		},
    	} {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "format": "int64",
              "type": "integer"
            },
            "runAsGroup": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

      systemctl start node-problem-detector.service
    }
    
    # Create the log file and set its properties.
    #
    # $1 is the file to create.
    # $2: the log owner uid to set for the log file.
    # $3: the log owner gid to set for the log file. If $KUBE_POD_LOG_READERS_GROUP
    # is set then this value will not be used.
    function prepare-log-file {
      touch "$1"
      if [[ -n "${KUBE_POD_LOG_READERS_GROUP:-}" ]]; then
        chmod 640 "$1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. pkg/api/pod/util_test.go

    				ContainerStatuses: []api.ContainerStatus{
    					{
    						Name:  "c1",
    						Image: "image",
    						User: &api.ContainerUser{
    							Linux: &api.LinuxContainerUser{
    								UID:                0,
    								GID:                0,
    								SupplementalGroups: []int64{0, 1000},
    							},
    						},
    					},
    				},
    			},
    		}
    	}
    	podWithoutSupplementalGroupsPolicy := func() *api.Pod {
    		return &api.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
Back to top