Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 99 for gmsaCredentialSpec (0.57 sec)

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

    		}
    	}
    
    	if windowsOptions.GMSACredentialSpec != nil {
    		if l := len(*windowsOptions.GMSACredentialSpec); l == 0 {
    			allErrs = append(allErrs, field.Invalid(fieldPath.Child("gmsaCredentialSpec"), windowsOptions.GMSACredentialSpec, "gmsaCredentialSpec cannot be an empty string"))
    		} else if l > maxGMSACredentialSpecLength {
    			errMsg := fmt.Sprintf("gmsaCredentialSpec size must be under %d KiB", maxGMSACredentialSpecLengthInKiB)
    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. pkg/apis/core/zz_generated.deepcopy.go

    	*out = *in
    	if in.GMSACredentialSpecName != nil {
    		in, out := &in.GMSACredentialSpecName, &out.GMSACredentialSpecName
    		*out = new(string)
    		**out = **in
    	}
    	if in.GMSACredentialSpec != nil {
    		in, out := &in.GMSACredentialSpec, &out.GMSACredentialSpec
    		*out = new(string)
    		**out = **in
    	}
    	if in.RunAsUserName != nil {
    		in, out := &in.RunAsUserName, &out.RunAsUserName
    		*out = new(string)
    		**out = **in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    	*out = *in
    	if in.GMSACredentialSpecName != nil {
    		in, out := &in.GMSACredentialSpecName, &out.GMSACredentialSpecName
    		*out = new(string)
    		**out = **in
    	}
    	if in.GMSACredentialSpec != nil {
    		in, out := &in.GMSACredentialSpec, &out.GMSACredentialSpec
    		*out = new(string)
    		**out = **in
    	}
    	if in.RunAsUserName != nil {
    		in, out := &in.RunAsUserName, &out.RunAsUserName
    		*out = new(string)
    		**out = **in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  4. pkg/apis/core/v1/zz_generated.conversion.go

    	out.GMSACredentialSpecName = (*string)(unsafe.Pointer(in.GMSACredentialSpecName))
    	out.GMSACredentialSpec = (*string)(unsafe.Pointer(in.GMSACredentialSpec))
    	out.RunAsUserName = (*string)(unsafe.Pointer(in.RunAsUserName))
    	out.HostProcess = (*bool)(unsafe.Pointer(in.HostProcess))
    	return nil
    }
    
    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. staging/src/k8s.io/api/core/v1/types.go

    	// GMSACredentialSpec is where the GMSA admission webhook
    	// (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the
    	// GMSA credential spec named by the GMSACredentialSpecName field.
    	// +optional
    	GMSACredentialSpec *string `json:"gmsaCredentialSpec,omitempty" protobuf:"bytes,2,opt,name=gmsaCredentialSpec"`
    
    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/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

        "io.k8s.api.core.v1.WindowsSecurityContextOptions": {
          "description": "WindowsSecurityContextOptions contain Windows-specific options and credentials.",
          "properties": {
            "gmsaCredentialSpec": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation_test.go

    		windowsOptions: &core.WindowsSecurityContextOptions{
    			GMSACredentialSpec: toPtr(""),
    		},
    		expectedErrorSubstring: "gmsaCredentialSpec cannot be an empty string",
    	}, {
    		testName: "GMSA cred spec contents that are too long",
    		windowsOptions: &core.WindowsSecurityContextOptions{
    			GMSACredentialSpec: toPtr(strings.Repeat("a", maxGMSACredentialSpecLength+1)),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string gmsaCredentialSpecName = 1;
    
      // GMSACredentialSpec is where the GMSA admission webhook
      // (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the
      // GMSA credential spec named by the GMSACredentialSpecName field.
      // +optional
      optional string gmsaCredentialSpec = 2;
    
      // The UserName in Windows to run the entrypoint of the container process.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    	// +optional
    	GMSACredentialSpecName *string
    
    	// GMSACredentialSpec is where the GMSA admission webhook
    	// (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the
    	// GMSA credential spec named by the GMSACredentialSpecName field.
    	// +optional
    	GMSACredentialSpec *string
    
    	// The UserName in Windows to run the entrypoint of the container process.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"":                       "WindowsSecurityContextOptions contain Windows-specific options and credentials.",
    	"gmsaCredentialSpecName": "GMSACredentialSpecName is the name of the GMSA credential spec to use.",
    	"gmsaCredentialSpec":     "GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
Back to top