Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for enableFilter (0.18 sec)

  1. security/pkg/pki/ca/selfsignedcarootcertrotator.go

    	client             corev1.CoreV1Interface
    	CheckInterval      time.Duration
    	caCertTTL          time.Duration
    	retryInterval      time.Duration
    	retryMax           time.Duration
    	dualUse            bool
    	enableJitter       bool
    }
    
    // SelfSignedCARootCertRotator automatically checks self-signed signing root
    // certificate and rotates root certificate if it is going to expire.
    type SelfSignedCARootCertRotator struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. security/pkg/pki/ca/ca.go

    			caStorageNamespace: namespace,
    			dualUse:            dualUse,
    			org:                org,
    			rootCertFile:       rootCertFile,
    			enableJitter:       enableJitter,
    			client:             client,
    		},
    	}
    
    	// always use ``istio-ca-secret` in priority, otherwise fall back to `cacerts`
    	var caCertName string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  3. security/pkg/pki/ca/selfsignedcarootcertrotator_test.go

    const caNamespace = "default"
    
    // TestJitterConfiguration tests the setup of jitter
    func TestJitterConfiguration(t *testing.T) {
    	enableJitterOpts := getDefaultSelfSignedIstioCAOptions(nil)
    	enableJitterOpts.RotatorConfig.enableJitter = true
    	rotator0 := getRootCertRotator(enableJitterOpts)
    	if rotator0.backOffTime < time.Duration(0) {
    		t.Errorf("back off time should be zero or positive but got %v", rotator0.backOffTime)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 23:33:41 UTC 2023
    - 14.1K bytes
    - Viewed (0)
Back to top