Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 103 of 103 for Ucred (0.07 sec)

  1. pkg/config/validation/validation_test.go

    			"cannot have associated private key", "",
    		},
    		{
    			"istio_mutual with credential name",
    			&networking.ServerTLSSettings{
    				Mode:           networking.ServerTLSSettings_ISTIO_MUTUAL,
    				CredentialName: "some-cred",
    			},
    			"cannot have associated credentialName", "",
    		},
    		{
    			"invalid cipher suites",
    			&networking.ServerTLSSettings{
    				Mode:           networking.ServerTLSSettings_SIMPLE,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation_test.go

    		},
    	}, {
    		testName: "a GMSA cred spec name that is not a valid resource name",
    		windowsOptions: &core.WindowsSecurityContextOptions{
    			// invalid because of the underscore
    			GMSACredentialSpecName: toPtr("not_a-valid-gmsa-crep-spec-name"),
    		},
    		expectedErrorSubstring: dnsSubdomainLabelErrMsg,
    	}, {
    		testName: "empty GMSA cred spec contents",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    	return allErrs
    }
    
    // maxGMSACredentialSpecLength is the max length, in bytes, for the actual contents
    // of a GMSA cred spec. In general, those shouldn't be more than a few hundred bytes,
    // so we want to give plenty of room here while still providing an upper bound.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top